/frameworks/av/media/libeffects/dynamicsproc/ |
EffectDynamicsProcessing.cpp | 441 void *pCmdData, uint32_t *replySize, void *pReplyData) { 453 if (pReplyData == NULL || *replySize != sizeof(int)) { 461 || pReplyData == NULL || replySize == NULL || *replySize != sizeof(int)) { 462 ALOGE("EFFECT_CMD_SET_CONFIG error with pCmdData, cmdSize, pReplyData or replySize"); 470 *replySize != sizeof(effect_config_t)) { 480 if (pReplyData == NULL || replySize == NULL || *replySize != sizeof(int)) { 494 if (pReplyData == NULL || replySize == NULL || *replySize != sizeof(int)) [all...] |
/hardware/interfaces/audio/effect/all-versions/default/include/effect/all-versions/default/ |
Effect.impl.h | 415 uint32_t* replySize, void* replyData) { 416 return sendCommandReturningData(commandCode, commandName, 0, NULL, replySize, replyData); 420 void* data, uint32_t* replySize, void* replyData) { 421 uint32_t expectedReplySize = *replySize; 422 status_t status = (*mHandle)->command(mHandle, commandCode, size, data, replySize, replyData); 423 if (status == OK && *replySize != expectedReplySize) { 436 uint32_t replySize = sizeof(uint32_t); 437 return sendCommandReturningStatusAndData(commandCode, commandName, size, data, &replySize, 438 &replyCmdStatus, replySize, [] {}); 442 uint32_t size, void* data, uint32_t* replySize, [all...] |
Effect.h | 220 Result sendCommandReturningData(int commandCode, const char* commandName, uint32_t* replySize, 223 void* data, uint32_t* replySize, void* replyData); 228 uint32_t size, void* data, uint32_t* replySize,
|
/frameworks/av/media/libaudioclient/ |
AudioEffect.cpp | 240 uint32_t *replySize, 252 if (replySize == NULL || *replySize != sizeof(status_t) || replyData == NULL) { 258 status_t status = mIEffect->command(cmdCode, cmdSize, cmdData, replySize, replyData); 402 uint32_t replySize __unused,
|
/frameworks/av/media/libeffects/lvm/wrapper/Bundle/ |
EffectBundle.cpp | [all...] |
/frameworks/av/media/libaudioprocessing/ |
BufferProviders.cpp | 207 uint32_t replySize = sizeof(int); 213 &replySize, &cmdStatus /*pReplyData*/); 225 replySize = sizeof(int); 228 &replySize, &cmdStatus /*pReplyData*/); 251 replySize = sizeof(int); 254 param /*pCmdData*/, &replySize, &cmdStatus /*pReplyData*/);
|
/frameworks/av/services/audioflinger/ |
Effects.h | 69 uint32_t *replySize, 203 uint32_t *replySize, 222 uint32_t replySize,
|
Effects.cpp | 832 uint32_t *replySize, 853 (*replySize < sizeof(effect_param_t) || 854 ((effect_param_t *)pCmdData)->psize > *replySize - sizeof(effect_param_t))) { 859 (sizeof(effect_param_t) > *replySize 860 || ((effect_param_t *)pCmdData)->psize > *replySize 862 || ((effect_param_t *)pCmdData)->vsize > *replySize 866 *replySize [all...] |
/frameworks/av/media/libeffects/downmix/ |
EffectDownmix.h | 85 uint32_t *replySize,
|
/frameworks/av/media/libeffects/lvm/wrapper/Reverb/ |
EffectReverb.cpp | [all...] |
/frameworks/av/media/libeffects/testlibs/ |
EffectReverb.c | 283 void *pCmdData, uint32_t *replySize, void *pReplyData) { 299 if (pReplyData == NULL || *replySize != sizeof(int)) { 309 || pReplyData == NULL || *replySize != sizeof(int)) { 316 if (pReplyData == NULL || *replySize != sizeof(effect_config_t)) { 325 ALOGV("Reverb_Command EFFECT_CMD_GET_PARAM pCmdData %p, *replySize %d, pReplyData: %p",pCmdData, *replySize, pReplyData); 328 pReplyData == NULL || *replySize < (int) sizeof(effect_param_t)) { 333 ALOGV("Reverb_Command EFFECT_CMD_GET_PARAM param %d, replySize %d",*(int32_t *)rep->data, rep->vsize); 336 *replySize = sizeof(effect_param_t) + sizeof(int32_t) + rep->vsize; 339 ALOGV("Reverb_Command EFFECT_CMD_SET_PARAM cmdSize %d pCmdData %p, *replySize %d, pReplyData %p" [all...] |
EffectReverb.h | 318 uint32_t *replySize,
|
/frameworks/wilhelm/src/android/ |
android_Effect.h | 107 SLuint32 *replySize, void *pReplyData);
|
android_Effect.cpp | 879 SLuint32 *replySize, void *pReplyData) { 891 (uint32_t*)replySize, [all...] |
/frameworks/base/media/jni/audioeffect/ |
android_media_AudioEffect.cpp | 665 jint cmdCode, jint cmdSize, jbyteArray jCmdData, jint replySize, 678 if ((cmdSize != 0 && jCmdData == NULL) || (replySize != 0 && jReplyData == NULL)) { 692 if (replySize != 0 && jReplyData != NULL) { 703 (uint32_t *)&replySize, 716 return replySize;
|
/frameworks/av/media/libeffects/factory/ |
EffectsFactory.c | 89 uint32_t *replySize, 105 ret = (*fx->subItfe)->command(fx->subItfe, cmdCode, cmdSize, pCmdData, replySize, pReplyData);
|
/frameworks/wilhelm/include/SLES/ |
OpenSLES_Android.h | 113 SLuint32 *replySize,
|