Lines Matching refs:pValue

118 int Equalizer_getParameter(AudioEqualizer * pEqualizer, int32_t *pParam, uint32_t *pValueSize, void *pValue);
119 int Equalizer_setParameter(AudioEqualizer * pEqualizer, int32_t *pParam, void *pValue);
351 // pValue - pointer to variable to hold retrieved value
355 // *pValue updated with parameter value
363 int Equalizer_getParameter(AudioEqualizer * pEqualizer, int32_t *pParam, uint32_t *pValueSize, void *pValue)
419 *(uint16_t *)pValue = (uint16_t)kNumBands;
420 ALOGV("Equalizer_getParameter() EQ_PARAM_NUM_BANDS %d", *(int16_t *)pValue);
424 *(int16_t *)pValue = -9600;
425 *((int16_t *)pValue + 1) = 4800;
427 *(int32_t *)pValue, *((int32_t *)pValue + 1));
436 *(int16_t *)pValue = (int16_t)pEqualizer->getGain(param2);
438 param2, *(int32_t *)pValue);
447 *(int32_t *)pValue = pEqualizer->getFrequency(param2);
449 param2, *(int32_t *)pValue);
458 pEqualizer->getBandRange(param2, *(uint32_t *)pValue, *((uint32_t *)pValue + 1));
460 param2, *(int32_t *)pValue, *((int32_t *)pValue + 1));
465 *(uint16_t *)pValue = (uint16_t)pEqualizer->getMostRelevantBand(param2);
467 param2, *(int32_t *)pValue);
471 *(uint16_t *)pValue = (uint16_t)pEqualizer->getPreset();
472 ALOGV("Equalizer_getParameter() EQ_PARAM_CUR_PRESET %d", *(int32_t *)pValue);
476 *(uint16_t *)pValue = (uint16_t)pEqualizer->getNumPresets();
477 ALOGV("Equalizer_getParameter() EQ_PARAM_GET_NUM_OF_PRESETS %d", *(int16_t *)pValue);
486 name = (char *)pValue;
495 int16_t *p = (int16_t *)pValue;
523 // pValue - pointer to value
532 int Equalizer_setParameter (AudioEqualizer * pEqualizer, int32_t *pParam, void *pValue)
543 preset = (int32_t)(*(uint16_t *)pValue);
555 level = (int32_t)(*(int16_t *)pValue);
566 int16_t *p = (int16_t *)pValue;