HomeSort by relevance Sort by last modified time
    Searched defs:replySize (Results 1 - 5 of 5) sorted by null

  /frameworks/av/media/libeffects/proxy/
EffectProxy.h 50 uint32_t *replySize,
78 uint32_t replySize; // current size of temporary reply buffer
  /frameworks/av/media/libmedia/
IEffectClient.cpp 62 uint32_t replySize,
77 size = replySize;
122 uint32_t replySize = data.readInt32();
124 if (replySize) {
125 resp = (char *)malloc(replySize);
126 data.read(resp, replySize);
128 commandExecuted(cmdCode, cmdSize, cmd, replySize, resp);
IEffect.cpp 160 uint32_t replySize = data.readInt32();
161 uint32_t replySz = replySize;
163 if (replySize) {
164 resp = (char *)malloc(replySize);
168 if (replySz < replySize) {
169 replySize = replySz;
171 reply->writeInt32(replySize);
172 if (replySize) {
173 reply->write(resp, replySize);
Visualizer.cpp 246 uint32_t replySize = number * sizeof(int32_t);
250 &replySize, measurements);
252 if ((status == NO_ERROR) && (replySize == 0)) {
273 uint32_t replySize = mCaptureSize;
274 status = command(VISUALIZER_CMD_CAPTURE, 0, NULL, &replySize, waveform);
276 if ((status == NO_ERROR) && (replySize == 0)) {
  /frameworks/av/services/audioflinger/
AudioMixer.cpp 223 uint32_t replySize = sizeof(int);
229 &replySize, &cmdStatus /*pReplyData*/);
239 replySize = sizeof(int);
242 &replySize, &cmdStatus /*pReplyData*/);
263 replySize = sizeof(int);
266 param /*pCmdData*/, &replySize, &cmdStatus /*pReplyData*/);
    [all...]

Completed in 767 milliseconds