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

/system/media/wilhelm/src/itf/
H A DIAndroidConfiguration.c23 const SLchar *configKey,
30 if (NULL == configKey || NULL == pConfigValue || valueSize == 0) {
41 configKey, valueSize);
42 result = android_audioRecorder_setConfig((CAudioRecorder *) thiz->mThis, configKey,
47 configKey, valueSize);
48 result = android_audioPlayer_setConfig((CAudioPlayer *) thiz->mThis, configKey,
64 const SLchar *configKey,
72 if (NULL == configKey || NULL == pValueSize) {
81 result = android_audioRecorder_getConfig((CAudioRecorder *) thiz->mThis, configKey,
85 result = android_audioPlayer_getConfig((CAudioPlayer *) thiz->mThis, configKey,
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
[all...]
/system/media/wilhelm/src/android/
H A DAudioRecorder_to_android.cpp325 SLresult android_audioRecorder_setConfig(CAudioRecorder* ar, const SLchar *configKey, argument
330 assert(NULL != ar && NULL != configKey && NULL != pConfigValue);
331 if(strcmp((const char*)configKey, (const char*)SL_ANDROID_KEY_RECORDING_PRESET) == 0) {
351 SLresult android_audioRecorder_getConfig(CAudioRecorder* ar, const SLchar *configKey, argument
356 assert(NULL != ar && NULL != configKey && NULL != pValueSize);
357 if(strcmp((const char*)configKey, (const char*)SL_ANDROID_KEY_RECORDING_PRESET) == 0) {
H A DAudioPlayer_to_android.cpp1298 SLresult android_audioPlayer_setConfig(CAudioPlayer *ap, const SLchar *configKey, argument
1303 assert(NULL != ap && NULL != configKey && NULL != pConfigValue);
1304 if(strcmp((const char*)configKey, (const char*)SL_ANDROID_KEY_STREAM_TYPE) == 0) {
1324 SLresult android_audioPlayer_getConfig(CAudioPlayer* ap, const SLchar *configKey, argument
1329 assert(NULL != ap && NULL != configKey && NULL != pValueSize);
1330 if(strcmp((const char*)configKey, (const char*)SL_ANDROID_KEY_STREAM_TYPE) == 0) {

Completed in 73 milliseconds