/frameworks/native/opengl/libs/GLES_trace/src/ |
gltrace_eglapi.cpp | 49 uint32_t cmdSize; 63 if (stream->receive(&cmdSize, sizeof(uint32_t)) < 0) { 66 cmdSize = ntohl(cmdSize); 69 if (cmdBufSize < cmdSize) { 71 cmdBufSize = cmdSize; 72 cmdBuf = malloc(cmdSize); 78 if (stream->receive(cmdBuf, cmdSize) < 0) { 82 if (cmdSize != sizeof(uint32_t)) {
|
/frameworks/av/media/libmedia/ |
IEffectClient.cpp | 60 uint32_t cmdSize, 69 int size = cmdSize; 116 uint32_t cmdSize = data.readInt32(); 118 if (cmdSize) { 119 cmd = (char *)malloc(cmdSize); 120 data.read(cmd, cmdSize); 128 commandExecuted(cmdCode, cmdSize, cmd, replySize, resp);
|
IEffect.cpp | 63 uint32_t cmdSize, 72 int size = cmdSize; 151 uint32_t cmdSize = data.readInt32(); 153 if (cmdSize) { 154 cmd = (char *)malloc(cmdSize); 155 data.read(cmd, cmdSize); 163 status_t status = command(cmdCode, cmdSize, cmd, &replySz, resp);
|
AudioEffect.cpp | 220 uint32_t cmdSize, 240 status_t status = mIEffect->command(cmdCode, cmdSize, cmdData, replySize, replyData); 376 uint32_t cmdSize,
|
/frameworks/av/include/media/ |
IEffect.h | 37 uint32_t cmdSize,
|
IEffectClient.h | 35 uint32_t cmdSize,
|
AudioEffect.h | 374 uint32_t cmdSize, 409 uint32_t cmdSize, 431 uint32_t cmdSize, 435 mEffect->commandExecuted(cmdCode, cmdSize, pCmdData, replySize, pReplyData);
|
/external/llvm/test/Scripts/ |
macho-dumpx | 112 cmdSize = f.read32() 113 print " ('size', %r)" % cmdSize 129 f.read(cmdSize - 8) 132 if f.tell() - start != cmdSize: 134 sys.argv[0], cmdSize)
|
/frameworks/av/media/libeffects/testlibs/ |
EffectEqualizer.cpp | 644 extern "C" int Equalizer_command(effect_handle_t self, uint32_t cmdCode, uint32_t cmdSize, 656 ALOGV("Equalizer_command command %d cmdSize %d",cmdCode, cmdSize); 666 if (pCmdData == NULL || cmdSize != sizeof(effect_config_t) 683 if (pCmdData == NULL || cmdSize < (int)(sizeof(effect_param_t) + sizeof(int32_t)) || 701 ALOGV("Equalizer_command EFFECT_CMD_SET_PARAM cmdSize %d pCmdData %p, *replySize %d, pReplyData %p", 702 cmdSize, pCmdData, *replySize, pReplyData); 703 if (pCmdData == NULL || cmdSize < (int)(sizeof(effect_param_t) + sizeof(int32_t)) ||
|
EffectReverb.c | 296 static int Reverb_Command(effect_handle_t self, uint32_t cmdCode, uint32_t cmdSize, 309 ALOGV("Reverb_Command command %d cmdSize %d",cmdCode, cmdSize); 322 if (pCmdData == NULL || cmdSize != sizeof(effect_config_t) 341 if (pCmdData == NULL || cmdSize < (int)(sizeof(effect_param_t) + sizeof(int32_t)) || 353 ALOGV("Reverb_Command EFFECT_CMD_SET_PARAM cmdSize %d pCmdData %p, *replySize %d, pReplyData %p", 354 cmdSize, pCmdData, *replySize, pReplyData); 355 if (pCmdData == NULL || (cmdSize < (int)(sizeof(effect_param_t) + sizeof(int32_t))) 386 if (pCmdData == NULL || cmdSize != (int)sizeof(uint32_t)) { 393 if (pCmdData == NULL || cmdSize != (int)sizeof(uint32_t) * 2) [all...] |
EffectReverb.h | 319 uint32_t cmdSize,
|
/frameworks/av/media/libeffects/downmix/ |
EffectDownmix.c | 389 static int Downmix_Command(effect_handle_t self, uint32_t cmdCode, uint32_t cmdSize, 402 ALOGV("Downmix_Command command %d cmdSize %d",cmdCode, cmdSize); 413 if (pCmdData == NULL || cmdSize != sizeof(effect_config_t) 428 if (pCmdData == NULL || cmdSize < (int)(sizeof(effect_param_t) + sizeof(int32_t)) || 443 ALOGV("Downmix_Command EFFECT_CMD_SET_PARAM cmdSize %d pCmdData %p, *replySize %d, " \ 444 "pReplyData %p", cmdSize, pCmdData, *replySize, pReplyData); 445 if (pCmdData == NULL || (cmdSize < (int)(sizeof(effect_param_t) + sizeof(int32_t))) 489 if (pCmdData == NULL || cmdSize != (int)sizeof(uint32_t)) { 498 if (pCmdData == NULL || cmdSize != (int)sizeof(uint32_t) * 2) [all...] |
EffectDownmix.h | 84 uint32_t cmdSize,
|
/frameworks/av/media/libeffects/visualizer/ |
EffectVisualizer.cpp | 356 int Visualizer_command(effect_handle_t self, uint32_t cmdCode, uint32_t cmdSize, 366 // ALOGV("Visualizer_command command %d cmdSize %d",cmdCode, cmdSize); 376 if (pCmdData == NULL || cmdSize != sizeof(effect_config_t) 417 cmdSize != (int)(sizeof(effect_param_t) + sizeof(uint32_t)) || 449 cmdSize != (int)(sizeof(effect_param_t) + sizeof(uint32_t) + sizeof(uint32_t)) ||
|
/device/samsung/manta/voicefx/ |
eS305VoiceProcessing.cpp | 739 uint32_t cmdSize, 752 ALOGV("AdncVoiceProcessingFx_Command: command %d cmdSize %d",cmdCode, cmdSize); 767 cmdSize != sizeof(effect_config_t)|| 798 cmdSize != sizeof(effect_config_t) || 830 cmdSize < (int)sizeof(effect_param_t) || 855 cmdSize < (int)sizeof(effect_param_t) || 895 cmdSize != sizeof(uint32_t)) { 912 cmdSize != sizeof(uint32_t)) { [all...] |
/frameworks/av/media/libeffects/preprocessing/ |
PreProcessing.cpp | [all...] |
/frameworks/av/media/libeffects/lvm/wrapper/Bundle/ |
EffectBundle.cpp | [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)) { 665 if (cmdSize != 0) { 683 (uint32_t)cmdSize,
|
/hardware/libhardware/include/hardware/ |
audio_effect.h | 324 // cmdSize: size of command in bytes 345 uint32_t cmdSize, [all...] |
/frameworks/av/media/libeffects/lvm/wrapper/Reverb/ |
EffectReverb.cpp | [all...] |