HomeSort by relevance Sort by last modified time
    Searched refs:cmdSize (Results 26 - 40 of 40) sorted by null

12

  /frameworks/av/media/libeffects/visualizer/
EffectVisualizer.cpp 417 int Visualizer_command(effect_handle_t self, uint32_t cmdCode, uint32_t cmdSize,
426 // ALOGV("Visualizer_command command %" PRIu32 " cmdSize %" PRIu32, cmdCode, cmdSize);
436 if (pCmdData == NULL || cmdSize != sizeof(effect_config_t)
477 cmdSize != (int)(sizeof(effect_param_t) + sizeof(uint32_t)) ||
515 cmdSize != (int)(sizeof(effect_param_t) + sizeof(uint32_t) + sizeof(uint32_t)) ||
  /hardware/qcom/audio/visualizer/
offload_visualizer.c 68 int (*command)(effect_context_t *context, uint32_t cmdCode, uint32_t cmdSize,
810 int visualizer_command(effect_context_t * context, uint32_t cmdCode, uint32_t cmdSize __unused,
    [all...]
  /frameworks/av/media/libeffects/dynamicsproc/
EffectDynamicsProcessing.cpp 440 int DP_command(effect_handle_t self, uint32_t cmdCode, uint32_t cmdSize,
450 ALOGV("DP_command command %d cmdSize %d",cmdCode, cmdSize);
460 if (pCmdData == NULL || cmdSize != sizeof(effect_config_t)
462 ALOGE("EFFECT_CMD_SET_CONFIG error with pCmdData, cmdSize, pReplyData or replySize");
515 if (cmdSize != expectedCmdSize || *replySize < expectedCmdSize) {
516 ALOGE("error cmdSize: %d, expetedCmdSize: %d, replySize: %d",
517 cmdSize, expectedCmdSize, *replySize);
539 cmdSize < (sizeof(effect_param_t) + sizeof(int32_t) + sizeof(int32_t)) ||
563 if (pCmdData == NULL || cmdSize < ((int)sizeof(uint32_t) * 2))
    [all...]
  /frameworks/av/services/audioflinger/
Effects.cpp 830 uint32_t cmdSize,
845 (sizeof(effect_param_t) > cmdSize ||
846 ((effect_param_t *)pCmdData)->psize > cmdSize
    [all...]
  /frameworks/av/media/libeffects/testlibs/
EffectReverb.c 282 static int Reverb_Command(effect_handle_t self, uint32_t cmdCode, uint32_t cmdSize,
295 ALOGV("Reverb_Command command %d cmdSize %d",cmdCode, cmdSize);
308 if (pCmdData == NULL || cmdSize != sizeof(effect_config_t)
327 if (pCmdData == NULL || cmdSize < (int)(sizeof(effect_param_t) + sizeof(int32_t)) ||
339 ALOGV("Reverb_Command EFFECT_CMD_SET_PARAM cmdSize %d pCmdData %p, *replySize %d, pReplyData %p",
340 cmdSize, pCmdData, *replySize, pReplyData);
341 if (pCmdData == NULL || (cmdSize < (int)(sizeof(effect_param_t) + sizeof(int32_t)))
372 if (pCmdData == NULL || cmdSize != (int)sizeof(uint32_t)) {
379 if (pCmdData == NULL || cmdSize != (int)sizeof(uint32_t) * 2)
    [all...]
EffectReverb.h 316 uint32_t cmdSize,
  /frameworks/av/media/libeffects/factory/
EffectsFactory.c 87 uint32_t cmdSize,
105 ret = (*fx->subItfe)->command(fx->subItfe, cmdCode, cmdSize, pCmdData, replySize, pReplyData);
  /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)) {
683 if (cmdSize != 0) {
701 (uint32_t)cmdSize,
  /frameworks/av/media/libeffects/lvm/wrapper/Bundle/
EffectBundle.cpp     [all...]
  /frameworks/av/media/libeffects/lvm/wrapper/Reverb/
EffectReverb.cpp     [all...]
  /build/kati/
serialize.go 599 cmdSize := 0
609 cmdSize += len(c)
618 size := outputSize + cmdSize + depsSize + orderOnlysSize + actualInputSize + tsvSize + filenameSize + linenoSize
621 logStats(" command %s", human(cmdSize))
  /external/llvm/test/tools/llvm-readobj/Inputs/
relocs.py 401 cmdSize = f.uint32()
408 f.read(cmdSize - 8)
410 if f.tell() - start != cmdSize:
412 sys.argv[0], cmdSize)
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_cmd.c 99 * data. It must be 'cmdSize' bytes long.
110 uint32 cmdSize, // IN
115 header = swc->reserve(swc, sizeof *header + cmdSize, nr_relocs);
120 header->size = cmdSize;
    [all...]
svga_cmd.h 59 SVGA3D_FIFOReserve(struct svga_winsys_context *swc, uint32 cmd, uint32 cmdSize, uint32 nr_relocs);
  /frameworks/base/media/java/android/media/audiofx/
AudioEffect.java     [all...]

Completed in 957 milliseconds

12