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

/frameworks/wilhelm/src/itf/
H A DIAndroidConfiguration.c24 const void *pConfigValue,
30 if (NULL == configKey || NULL == pConfigValue || valueSize == 0) {
43 pConfigValue, valueSize);
49 pConfigValue, valueSize);
66 void *pConfigValue)
70 // non-NULL pValueSize is required, but a NULL pConfigValue is allowed, so
82 pValueSize, pConfigValue);
86 pValueSize, pConfigValue);
22 IAndroidConfiguration_SetConfiguration(SLAndroidConfigurationItf self, const SLchar *configKey, const void *pConfigValue, SLuint32 valueSize) argument
63 IAndroidConfiguration_GetConfiguration(SLAndroidConfigurationItf self, const SLchar *configKey, SLuint32 *pValueSize, void *pConfigValue) argument
/frameworks/wilhelm/src/android/
H A DAudioRecorder_to_android.cpp335 const void *pConfigValue, SLuint32 valueSize) {
339 assert(NULL != ar && NULL != configKey && NULL != pConfigValue);
347 result = audioRecorder_setPreset(ar, *(SLuint32*)pConfigValue);
361 SLuint32* pValueSize, void *pConfigValue) {
369 if (NULL == pConfigValue) {
375 result = audioRecorder_getPreset(ar, (SLuint32*)pConfigValue);
334 android_audioRecorder_setConfig(CAudioRecorder* ar, const SLchar *configKey, const void *pConfigValue, SLuint32 valueSize) argument
360 android_audioRecorder_getConfig(CAudioRecorder* ar, const SLchar *configKey, SLuint32* pValueSize, void *pConfigValue) argument
H A DAudioPlayer_to_android.cpp1364 const void *pConfigValue, SLuint32 valueSize) {
1368 assert(NULL != ap && NULL != configKey && NULL != pConfigValue);
1376 result = audioPlayer_setStreamType(ap, *(SLuint32*)pConfigValue);
1390 SLuint32* pValueSize, void *pConfigValue) {
1398 if (NULL == pConfigValue) {
1404 result = audioPlayer_getStreamType(ap, (SLint32*)pConfigValue);
1363 android_audioPlayer_setConfig(CAudioPlayer *ap, const SLchar *configKey, const void *pConfigValue, SLuint32 valueSize) argument
1389 android_audioPlayer_getConfig(CAudioPlayer* ap, const SLchar *configKey, SLuint32* pValueSize, void *pConfigValue) argument

Completed in 44 milliseconds