Lines Matching full:pvalue
118 int Equalizer_getParameter(AudioEqualizer * pEqualizer, int32_t *pParam, size_t *pValueSize, void *pValue);
119 int Equalizer_setParameter(AudioEqualizer * pEqualizer, int32_t *pParam, void *pValue);
369 // pValue - pointer to variable to hold retrieved value
373 // *pValue updated with parameter value
381 int Equalizer_getParameter(AudioEqualizer * pEqualizer, int32_t *pParam, size_t *pValueSize, void *pValue)
437 *(uint16_t *)pValue = (uint16_t)kNumBands;
438 ALOGV("Equalizer_getParameter() EQ_PARAM_NUM_BANDS %d", *(int16_t *)pValue);
442 *(int16_t *)pValue = -9600;
443 *((int16_t *)pValue + 1) = 4800;
445 *(int32_t *)pValue, *((int32_t *)pValue + 1));
454 *(int16_t *)pValue = (int16_t)pEqualizer->getGain(param2);
456 param2, *(int32_t *)pValue);
465 *(int32_t *)pValue = pEqualizer->getFrequency(param2);
467 param2, *(int32_t *)pValue);
476 pEqualizer->getBandRange(param2, *(uint32_t *)pValue, *((uint32_t *)pValue + 1));
478 param2, *(int32_t *)pValue, *((int32_t *)pValue + 1));
483 *(uint16_t *)pValue = (uint16_t)pEqualizer->getMostRelevantBand(param2);
485 param2, *(int32_t *)pValue);
489 *(uint16_t *)pValue = (uint16_t)pEqualizer->getPreset();
490 ALOGV("Equalizer_getParameter() EQ_PARAM_CUR_PRESET %d", *(int32_t *)pValue);
494 *(uint16_t *)pValue = (uint16_t)pEqualizer->getNumPresets();
495 ALOGV("Equalizer_getParameter() EQ_PARAM_GET_NUM_OF_PRESETS %d", *(int16_t *)pValue);
504 name = (char *)pValue;
513 int16_t *p = (int16_t *)pValue;
541 // pValue - pointer to value
550 int Equalizer_setParameter (AudioEqualizer * pEqualizer, int32_t *pParam, void *pValue)
561 preset = (int32_t)(*(uint16_t *)pValue);
573 level = (int32_t)(*(int16_t *)pValue);
584 int16_t *p = (int16_t *)pValue;