Use String8/16 c_str
Bug: 295394788 Test: make checkbuild Change-Id: If5cf93ade13d6e650ae305db9933a9f536e3b525
This commit is contained in:
parent
59ea5641dc
commit
2c3e53e5dd
2 changed files with 4 additions and 4 deletions
|
@ -143,7 +143,7 @@ status_t AudioHardwareBase::dumpState(int fd, const Vector<String16>& args)
|
||||||
result.append(buffer);
|
result.append(buffer);
|
||||||
snprintf(buffer, SIZE, "\tmMode: %d\n", mMode);
|
snprintf(buffer, SIZE, "\tmMode: %d\n", mMode);
|
||||||
result.append(buffer);
|
result.append(buffer);
|
||||||
::write(fd, result.string(), result.size());
|
::write(fd, result.c_str(), result.size());
|
||||||
dump(fd, args); // Dump the state of the concrete child.
|
dump(fd, args); // Dump the state of the concrete child.
|
||||||
return NO_ERROR;
|
return NO_ERROR;
|
||||||
}
|
}
|
||||||
|
|
|
@ -216,7 +216,7 @@ static char * out_get_parameters(const struct audio_stream *stream, const char *
|
||||||
s8 = parms.toString();
|
s8 = parms.toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
return strdup(s8.string());
|
return strdup(s8.c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
static uint32_t out_get_latency(const struct audio_stream_out *stream)
|
static uint32_t out_get_latency(const struct audio_stream_out *stream)
|
||||||
|
@ -367,7 +367,7 @@ static char * in_get_parameters(const struct audio_stream *stream,
|
||||||
s8 = parms.toString();
|
s8 = parms.toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
return strdup(s8.string());
|
return strdup(s8.c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
static int in_set_gain(struct audio_stream_in *stream, float gain)
|
static int in_set_gain(struct audio_stream_in *stream, float gain)
|
||||||
|
@ -474,7 +474,7 @@ static char * adev_get_parameters(const struct audio_hw_device *dev,
|
||||||
String8 s8;
|
String8 s8;
|
||||||
|
|
||||||
s8 = ladev->hwif->getParameters(String8(keys));
|
s8 = ladev->hwif->getParameters(String8(keys));
|
||||||
return strdup(s8.string());
|
return strdup(s8.c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
static size_t adev_get_input_buffer_size(const struct audio_hw_device *dev,
|
static size_t adev_get_input_buffer_size(const struct audio_hw_device *dev,
|
||||||
|
|
Loading…
Reference in a new issue