HomeSort by relevance Sort by last modified time
    Searched refs:pReplyData (Results 1 - 20 of 20) sorted by null

  /frameworks/base/media/libeffects/visualizer/
EffectVisualizer.cpp 297 void *pCmdData, uint32_t *replySize, void *pReplyData) {
310 if (pReplyData == NULL || *replySize != sizeof(int)) {
313 *(int *) pReplyData = Visualizer_init(pContext);
317 || pReplyData == NULL || *replySize != sizeof(int)) {
320 *(int *) pReplyData = Visualizer_configure(pContext,
327 if (pReplyData == NULL || *replySize != sizeof(int)) {
335 *(int *)pReplyData = 0;
338 if (pReplyData == NULL || *replySize != sizeof(int)) {
346 *(int *)pReplyData = 0;
351 pReplyData == NULL |
    [all...]
  /frameworks/base/include/media/
IEffect.h 40 void *pReplyData) = 0;
IEffectClient.h 38 void *pReplyData) = 0;
AudioEffect.h 436 void *pReplyData) {
437 mEffect->commandExecuted(cmdCode, cmdSize, pCmdData, replySize, pReplyData);
457 void *pReplyData);
EffectApi.h 269 // pReplyData: pointer to reply data
283 // *pReplyData updated with command response
291 void *pReplyData);
477 // It is legal to receive a null pointer as pReplyData in which case the effect framework has
    [all...]
  /frameworks/base/media/libmedia/
IEffectClient.cpp 63 void *pReplyData)
78 if (pReplyData == NULL) {
83 data.write(pReplyData, size);
IEffect.cpp 66 void *pReplyData)
89 if (size != 0 && pReplyData != NULL && pReplySize != NULL) {
90 reply.read(pReplyData, size);
  /frameworks/base/media/libeffects/testlibs/
EffectEqualizer.cpp 600 void *pCmdData, uint32_t *replySize, void *pReplyData) {
615 if (pReplyData == NULL || *replySize != sizeof(int)) {
618 *(int *) pReplyData = Equalizer_init(pContext);
622 || pReplyData == NULL || *replySize != sizeof(int)) {
625 *(int *) pReplyData = Equalizer_configure(pContext,
633 pReplyData == NULL || *replySize < (int) (sizeof(effect_param_t) + sizeof(int32_t))) {
637 memcpy(pReplyData, pCmdData, sizeof(effect_param_t) + p->psize);
638 p = (effect_param_t *)pReplyData;
643 LOGV("Equalizer_command EFFECT_CMD_GET_PARAM *pCmdData %d, *replySize %d, *pReplyData %08x %08x",
645 *(int32_t *)((char *)pReplyData + sizeof(effect_param_t) + voffset)
    [all...]
EffectReverb.c 274 void *pCmdData, uint32_t *replySize, void *pReplyData) {
290 if (pReplyData == NULL || *replySize != sizeof(int)) {
293 *(int *) pReplyData = Reverb_Init(pRvbModule, pReverb->m_Aux, pReverb->m_Preset);
294 if (*(int *) pReplyData == 0) {
300 || pReplyData == NULL || *replySize != sizeof(int)) {
303 *(int *) pReplyData = Reverb_Configure(pRvbModule,
310 LOGV("Reverb_Command EFFECT_CMD_GET_PARAM pCmdData %p, *replySize %d, pReplyData: %p",pCmdData, *replySize, pReplyData);
313 pReplyData == NULL || *replySize < (int) sizeof(effect_param_t)) {
316 effect_param_t *rep = (effect_param_t *) pReplyData;
    [all...]
EffectReverb.h 320 void *pReplyData);
  /frameworks/base/media/libeffects/lvm/wrapper/Reverb/
EffectReverb.cpp     [all...]
  /frameworks/base/media/libeffects/lvm/wrapper/Bundle/
EffectBundle.cpp     [all...]
  /frameworks/base/media/jni/audioeffect/
android_media_AudioEffect.cpp 654 jbyte* pReplyData = NULL;
692 pReplyData = (jbyte *) env->GetPrimitiveArrayCritical(jReplyData, NULL);
693 if (pReplyData == NULL) {
703 pReplyData));
710 if (pReplyData != NULL) {
711 env->ReleasePrimitiveArrayCritical(jReplyData, pReplyData, 0);
  /development/ndk/platforms/android-9/include/SLES/
OpenSLES_Android.h 64 void *pReplyData);
  /system/media/opensles/include/SLES/
OpenSLES_Android.h 64 void *pReplyData);
  /system/media/opensles/libopensles/
android_Effect.h 92 SLuint32 *replySize, void *pReplyData);
android_Effect.cpp 806 SLuint32 *replySize, void *pReplyData) {
819 pReplyData);
  /frameworks/base/media/libeffects/factory/
EffectsFactory.c 81 void *pReplyData)
96 ret = (*fx->subItfe)->command(fx->subItfe, cmdCode, cmdSize, pCmdData, replySize, pReplyData);
  /frameworks/base/services/audioflinger/
AudioFlinger.h     [all...]
AudioFlinger.cpp     [all...]

Completed in 1401 milliseconds