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.cpp326 const void *pConfigValue, SLuint32 valueSize) {
330 assert(NULL != ar && NULL != configKey && NULL != pConfigValue);
338 result = audioRecorder_setPreset(ar, *(SLuint32*)pConfigValue);
352 SLuint32* pValueSize, void *pConfigValue) {
360 if (NULL == pConfigValue) {
366 result = audioRecorder_getPreset(ar, (SLuint32*)pConfigValue);
325 android_audioRecorder_setConfig(CAudioRecorder* ar, const SLchar *configKey, const void *pConfigValue, SLuint32 valueSize) argument
351 android_audioRecorder_getConfig(CAudioRecorder* ar, const SLchar *configKey, SLuint32* pValueSize, void *pConfigValue) argument
H A DAudioPlayer_to_android.cpp1301 const void *pConfigValue, SLuint32 valueSize) {
1305 assert(NULL != ap && NULL != configKey && NULL != pConfigValue);
1313 result = audioPlayer_setStreamType(ap, *(SLuint32*)pConfigValue);
1327 SLuint32* pValueSize, void *pConfigValue) {
1335 if (NULL == pConfigValue) {
1341 result = audioPlayer_getStreamType(ap, (SLint32*)pConfigValue);
1300 android_audioPlayer_setConfig(CAudioPlayer *ap, const SLchar *configKey, const void *pConfigValue, SLuint32 valueSize) argument
1326 android_audioPlayer_getConfig(CAudioPlayer* ap, const SLchar *configKey, SLuint32* pValueSize, void *pConfigValue) argument

Completed in 491 milliseconds