Searched defs:pConfigValue (Results 1 - 3 of 3) sorted by relevance

/frameworks/wilhelm/src/itf/
H A DIAndroidConfiguration.c28 const void *pConfigValue,
34 if (NULL == configKey || NULL == pConfigValue || valueSize == 0) {
47 pConfigValue, valueSize);
53 pConfigValue, valueSize);
70 void *pConfigValue)
74 // non-NULL pValueSize is required, but a NULL pConfigValue is allowed, so
86 pValueSize, pConfigValue);
90 pValueSize, pConfigValue);
26 IAndroidConfiguration_SetConfiguration(SLAndroidConfigurationItf self, const SLchar *configKey, const void *pConfigValue, SLuint32 valueSize) argument
67 IAndroidConfiguration_GetConfiguration(SLAndroidConfigurationItf self, const SLchar *configKey, SLuint32 *pValueSize, void *pConfigValue) argument
/frameworks/wilhelm/src/android/
H A DAudioRecorder_to_android.cpp366 const void *pConfigValue, SLuint32 valueSize) {
370 assert(NULL != ar && NULL != configKey && NULL != pConfigValue);
378 result = audioRecorder_setPreset(ar, *(SLuint32*)pConfigValue);
392 SLuint32* pValueSize, void *pConfigValue) {
400 if (NULL == pConfigValue) {
406 result = audioRecorder_getPreset(ar, (SLuint32*)pConfigValue);
365 android_audioRecorder_setConfig(CAudioRecorder* ar, const SLchar *configKey, const void *pConfigValue, SLuint32 valueSize) argument
391 android_audioRecorder_getConfig(CAudioRecorder* ar, const SLchar *configKey, SLuint32* pValueSize, void *pConfigValue) argument
H A DAudioPlayer_to_android.cpp1325 const void *pConfigValue, SLuint32 valueSize) {
1329 assert(NULL != ap && NULL != configKey && NULL != pConfigValue);
1337 result = audioPlayer_setStreamType(ap, *(SLuint32*)pConfigValue);
1351 SLuint32* pValueSize, void *pConfigValue) {
1359 if (NULL == pConfigValue) {
1365 result = audioPlayer_getStreamType(ap, (SLint32*)pConfigValue);
1324 android_audioPlayer_setConfig(CAudioPlayer *ap, const SLchar *configKey, const void *pConfigValue, SLuint32 valueSize) argument
1350 android_audioPlayer_getConfig(CAudioPlayer* ap, const SLchar *configKey, SLuint32* pValueSize, void *pConfigValue) argument

Completed in 223 milliseconds