HomeSort by relevance Sort by last modified time
    Searched refs:replySize (Results 1 - 25 of 56) sorted by null

1 2 3

  /cts/tests/tests/security/testeffect/
CTSTestEffect.cpp 103 void *pCmdData, uint32_t *replySize, void *pReplyData) {
113 if (pReplyData == NULL || *replySize != sizeof(int)) {
120 || pReplyData == NULL || *replySize != sizeof(int)) {
128 *replySize != sizeof(effect_config_t)) {
131 memcpy(pReplyData, &pContext->mConfig, *replySize);
137 if (pReplyData == NULL || *replySize != sizeof(int)) {
146 *replySize < (int)(sizeof(effect_param_t))) {
155 pReplyData == NULL || *replySize != sizeof(int32_t)) {
  /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 241 uint32_t replySize = number * sizeof(int32_t);
245 &replySize, measurements);
247 if ((status == NO_ERROR) && (replySize == 0)) {
268 uint32_t replySize = mCaptureSize;
269 status = command(VISUALIZER_CMD_CAPTURE, 0, NULL, &replySize, waveform);
271 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/av/media/libeffects/proxy/
EffectProxy.h 48 uint32_t *replySize,
74 uint32_t replySize; // current size of temporary reply buffer
EffectProxy.cpp 116 pContext->replySize = PROXY_REPLY_SIZE_DEFAULT;
179 uint32_t *replySize,
239 pCmdData, replySize, pReplyData);
257 if (replySize != NULL) {
258 tmpSize = pContext->replySize;
259 while (tmpSize < *replySize && tmpSize < PROXY_REPLY_SIZE_MAX) {
262 if (tmpSize > pContext->replySize) {
265 pContext->replySize = tmpSize;
267 if (tmpSize > *replySize) {
268 tmpSize = *replySize;
    [all...]
  /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);
  /frameworks/av/media/libeffects/loudness/
EffectLoudnessEnhancer.cpp 311 void *pCmdData, uint32_t *replySize, void *pReplyData) {
323 if (pReplyData == NULL || *replySize != sizeof(int)) {
330 || pReplyData == NULL || *replySize != sizeof(int)) {
338 *replySize != sizeof(effect_config_t)) {
347 if (pReplyData == NULL || *replySize != sizeof(int)) {
358 if (pReplyData == NULL || *replySize != sizeof(int)) {
372 *replySize < (int)(sizeof(effect_param_t) + sizeof(uint32_t) + sizeof(uint32_t))) {
378 *replySize = sizeof(effect_param_t) + sizeof(uint32_t);
388 *replySize += sizeof(int32_t);
397 pReplyData == NULL || *replySize != sizeof(int32_t))
    [all...]
  /frameworks/av/media/libeffects/visualizer/
EffectVisualizer.cpp 412 void *pCmdData, uint32_t *replySize, void *pReplyData) {
425 if (pReplyData == NULL || *replySize != sizeof(int)) {
432 || pReplyData == NULL || *replySize != sizeof(int)) {
440 *replySize != sizeof(effect_config_t)) {
449 if (pReplyData == NULL || *replySize != sizeof(int)) {
460 if (pReplyData == NULL || *replySize != sizeof(int)) {
474 *replySize < (int)(sizeof(effect_param_t) + sizeof(uint32_t) + sizeof(uint32_t))) {
480 *replySize = sizeof(effect_param_t) + sizeof(uint32_t);
490 *replySize += sizeof(uint32_t);
496 *replySize += sizeof(uint32_t)
    [all...]
  /frameworks/av/media/libeffects/preprocessing/
PreProcessing.cpp     [all...]
  /frameworks/wilhelm/src/itf/
IAndroidEffect.cpp 87 void* pCommand, SLuint32 *replySize, void *pReply) {
93 pCommand, replySize, pReply);
  /frameworks/av/media/libeffects/testlibs/
EffectEqualizer.cpp 627 void *pCmdData, uint32_t *replySize, void *pReplyData) {
642 if (pReplyData == NULL || *replySize != sizeof(int)) {
649 || pReplyData == NULL || *replySize != sizeof(int)) {
656 if (pReplyData == NULL || *replySize != sizeof(effect_config_t)) {
666 pReplyData == NULL || *replySize < (int) (sizeof(effect_param_t) + sizeof(int32_t))) {
675 *replySize = sizeof(effect_param_t) + voffset + p->vsize;
676 ALOGV("Equalizer_command EFFECT_CMD_GET_PARAM *pCmdData %d, *replySize %d, *pReplyData %08x %08x",
677 *(int32_t *)((char *)pCmdData + sizeof(effect_param_t)), *replySize,
683 ALOGV("Equalizer_command EFFECT_CMD_SET_PARAM cmdSize %d pCmdData %p, *replySize %d, pReplyData %p",
684 cmdSize, pCmdData, *replySize, pReplyData)
    [all...]
  /hardware/qcom/audio/visualizer/
offload_visualizer.c 54 void *pCmdData, uint32_t *replySize, void *pReplyData);
767 void *pCmdData, uint32_t *replySize, void *pReplyData)
773 if (pReplyData == NULL || *replySize != visu_ctxt->capture_size) {
774 ALOGV("%s VISUALIZER_CMD_CAPTURE error *replySize %d context->capture_size %d",
775 __func__, *replySize, visu_ctxt->capture_size);
    [all...]
  /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/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...]
  /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/av/services/audioflinger/
Effects.h 67 uint32_t *replySize,
179 uint32_t *replySize,
198 uint32_t replySize,
  /development/ndk/platforms/android-9/include/SLES/
OpenSLES_Android.h 63 SLuint32 *replySize,
  /prebuilts/ndk/5/platforms/android-9/arch-arm/usr/include/SLES/
OpenSLES_Android.h 63 SLuint32 *replySize,
  /prebuilts/ndk/6/platforms/android-9/arch-arm/usr/include/SLES/
OpenSLES_Android.h 63 SLuint32 *replySize,
  /prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/SLES/
OpenSLES_Android.h 63 SLuint32 *replySize,
  /prebuilts/ndk/7/platforms/android-9/arch-arm/usr/include/SLES/
OpenSLES_Android.h 63 SLuint32 *replySize,

Completed in 359 milliseconds

1 2 3