HomeSort by relevance Sort by last modified time
    Searched full:replysize (Results 1 - 25 of 44) sorted by null

1 2

  /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 157 uint32_t replySize = data.readInt32();
158 uint32_t replySz = replySize;
160 if (replySize) {
161 resp = (char *)malloc(replySize);
165 if (replySz < replySize) {
166 replySize = replySz;
168 reply->writeInt32(replySize);
169 if (replySize) {
170 reply->write(resp, replySize);
Visualizer.cpp 199 uint32_t replySize = mCaptureSize;
200 status = command(VISUALIZER_CMD_CAPTURE, 0, NULL, &replySize, waveform);
202 if ((status == NO_ERROR) && (replySize == 0)) {
AudioEffect.cpp 223 uint32_t *replySize,
235 if (replySize == NULL || *replySize != sizeof(status_t) || replyData == NULL) {
241 status_t status = mIEffect->command(cmdCode, cmdSize, cmdData, replySize, replyData);
385 uint32_t replySize,
  /frameworks/wilhelm/src/itf/
IAndroidEffect.cpp 87 void* pCommand, SLuint32 *replySize, void *pReply) {
93 pCommand, replySize, pReply);
  /frameworks/av/media/libeffects/preprocessing/
PreProcessing.cpp     [all...]
  /frameworks/av/media/libeffects/visualizer/
EffectVisualizer.cpp 340 void *pCmdData, uint32_t *replySize, void *pReplyData) {
353 if (pReplyData == NULL || *replySize != sizeof(int)) {
360 || pReplyData == NULL || *replySize != sizeof(int)) {
368 *replySize != sizeof(effect_config_t)) {
377 if (pReplyData == NULL || *replySize != sizeof(int)) {
388 if (pReplyData == NULL || *replySize != sizeof(int)) {
402 *replySize < (int)(sizeof(effect_param_t) + sizeof(uint32_t) + sizeof(uint32_t))) {
408 *replySize = sizeof(effect_param_t) + sizeof(uint32_t);
418 *replySize += sizeof(uint32_t);
424 *replySize += sizeof(uint32_t)
    [all...]
  /frameworks/av/media/libeffects/testlibs/
EffectEqualizer.cpp 628 void *pCmdData, uint32_t *replySize, void *pReplyData) {
643 if (pReplyData == NULL || *replySize != sizeof(int)) {
650 || pReplyData == NULL || *replySize != sizeof(int)) {
657 if (pReplyData == NULL || *replySize != sizeof(effect_config_t)) {
667 pReplyData == NULL || *replySize < (int) (sizeof(effect_param_t) + sizeof(int32_t))) {
676 *replySize = sizeof(effect_param_t) + voffset + p->vsize;
677 ALOGV("Equalizer_command EFFECT_CMD_GET_PARAM *pCmdData %d, *replySize %d, *pReplyData %08x %08x",
678 *(int32_t *)((char *)pCmdData + sizeof(effect_param_t)), *replySize,
684 ALOGV("Equalizer_command EFFECT_CMD_SET_PARAM cmdSize %d pCmdData %p, *replySize %d, pReplyData %p",
685 cmdSize, pCmdData, *replySize, pReplyData)
    [all...]
EffectReverb.c 280 void *pCmdData, uint32_t *replySize, void *pReplyData) {
296 if (pReplyData == NULL || *replySize != sizeof(int)) {
306 || pReplyData == NULL || *replySize != sizeof(int)) {
313 if (pReplyData == NULL || *replySize != sizeof(effect_config_t)) {
322 ALOGV("Reverb_Command EFFECT_CMD_GET_PARAM pCmdData %p, *replySize %d, pReplyData: %p",pCmdData, *replySize, pReplyData);
325 pReplyData == NULL || *replySize < (int) sizeof(effect_param_t)) {
330 ALOGV("Reverb_Command EFFECT_CMD_GET_PARAM param %d, replySize %d",*(int32_t *)rep->data, rep->vsize);
333 *replySize = sizeof(effect_param_t) + sizeof(int32_t) + rep->vsize;
336 ALOGV("Reverb_Command EFFECT_CMD_SET_PARAM cmdSize %d pCmdData %p, *replySize %d, pReplyData %p"
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
winping.cc 131 inline uint32 ReplySize(uint32 data_size) {
166 rlen_ = ReplySize(dlen_);
198 uint32 reply_size = ReplySize(data_size);
305 // ReplySize - The size in bytes of the reply buffer.
winping.h 62 DWORD ReplySize,
  /frameworks/av/include/media/
IEffectClient.h 37 uint32_t replySize,
AudioEffect.h 376 uint32_t *replySize,
411 uint32_t replySize,
433 uint32_t replySize,
435 mEffect->commandExecuted(cmdCode, cmdSize, pCmdData, replySize, pReplyData);
  /hardware/qcom/audio/voice_processing/
voice_processing.c 510 uint32_t *replySize,
522 if (pReplyData == NULL || *replySize != sizeof(int))
532 *replySize != sizeof(int)) {
547 *replySize != sizeof(effect_config_t)) {
562 *replySize < (int)sizeof(effect_param_t)) {
578 *replySize != sizeof(int32_t)) {
592 if (pReplyData == NULL || *replySize != sizeof(int)) {
600 if (pReplyData == NULL || *replySize != sizeof(int)) {
  /frameworks/av/services/audioflinger/
Effects.h 63 uint32_t *replySize,
169 uint32_t *replySize,
188 uint32_t replySize,
AudioMixer.cpp 308 uint32_t replySize = sizeof(int);
314 &replySize /*replySize*/, &cmdStatus /*pReplyData*/);
319 replySize = sizeof(int);
322 &replySize /*replySize*/, &cmdStatus /*pReplyData*/);
343 param /*pCmndData*/, &replySize /*replySize*/, &cmdStatus /*pReplyData*/);
    [all...]
Effects.cpp 518 uint32_t *replySize,
534 replySize,
537 uint32_t size = (replySize == NULL) ? 0 : *replySize;
    [all...]
  /frameworks/av/media/libeffects/lvm/wrapper/Bundle/
EffectBundle.cpp     [all...]
  /frameworks/av/media/libeffects/downmix/
EffectDownmix.h 83 uint32_t *replySize,
EffectDownmix.c 371 void *pCmdData, uint32_t *replySize, void *pReplyData) {
387 if (pReplyData == NULL || *replySize != sizeof(int)) {
395 || pReplyData == NULL || *replySize != sizeof(int)) {
407 ALOGV("Downmix_Command EFFECT_CMD_GET_PARAM pCmdData %p, *replySize %d, pReplyData: %p",
408 pCmdData, *replySize, pReplyData);
411 *replySize < (int) sizeof(effect_param_t) + 2 * sizeof(int32_t)) {
416 ALOGV("Downmix_Command EFFECT_CMD_GET_PARAM param %d, replySize %d",
420 *replySize = sizeof(effect_param_t) + sizeof(int32_t) + rep->vsize;
424 ALOGV("Downmix_Command EFFECT_CMD_SET_PARAM cmdSize %d pCmdData %p, *replySize %d, " \
425 "pReplyData %p", cmdSize, pCmdData, *replySize, pReplyData)
    [all...]
  /frameworks/wilhelm/src/android/
android_Effect.h 92 SLuint32 *replySize, void *pReplyData);
  /device/samsung/manta/voicefx/
eS305VoiceProcessing.cpp 741 uint32_t *replySize,
756 if (pReplyData == NULL || *replySize != sizeof(int)){
769 *replySize != sizeof(int)){
787 *replySize != sizeof(effect_config_t)) {
800 *replySize != sizeof(int)) {
814 *replySize != sizeof(effect_config_t)){
832 *replySize < (int)sizeof(effect_param_t)){
849 *replySize = sizeof(effect_param_t) + voffset + p->vsize;
857 *replySize != sizeof(int32_t)){
877 if (pReplyData == NULL || *replySize != sizeof(int))
    [all...]
  /frameworks/base/media/jni/audioeffect/
android_media_AudioEffect.cpp 644 jint cmdCode, jint cmdSize, jbyteArray jCmdData, jint replySize,
660 if ((cmdSize != 0 && jCmdData == NULL) || (replySize != 0 && jReplyData == NULL)) {
674 if (replySize != 0 && jReplyData != NULL) {
685 (uint32_t *)&replySize,
698 return replySize;
  /frameworks/av/media/libeffects/lvm/wrapper/Reverb/
EffectReverb.cpp     [all...]
  /frameworks/av/media/libeffects/factory/
EffectsFactory.c 92 uint32_t *replySize,
108 ret = (*fx->subItfe)->command(fx->subItfe, cmdCode, cmdSize, pCmdData, replySize, pReplyData);

Completed in 878 milliseconds

1 2