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

/frameworks/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...]
/frameworks/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.cpp1300 SLresult android_audioPlayer_setConfig(CAudioPlayer *ap, const SLchar *configKey, argument
1305 assert(NULL != ap && NULL != configKey && NULL != pConfigValue);
1306 if (strcmp((const char*)configKey, (const char*)SL_ANDROID_KEY_STREAM_TYPE) == 0) {
1326 SLresult android_audioPlayer_getConfig(CAudioPlayer* ap, const SLchar *configKey, argument
1331 assert(NULL != ap && NULL != configKey && NULL != pValueSize);
1332 if (strcmp((const char*)configKey, (const char*)SL_ANDROID_KEY_STREAM_TYPE) == 0) {
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiConfigStore.java302 mNetworkIds.remove(configKey(config));
350 mNetworkIds.remove(configKey(config));
654 mNetworkIds.put(configKey(config), config.networkId);
802 out.writeInt(configKey(config));
972 Integer savedNetId = mNetworkIds.get(configKey(config));
1178 mNetworkIds.put(configKey(currentConfig), netId);
1564 private static int configKey(WifiConfiguration config) { method in class:WifiConfigStore

Completed in 312 milliseconds