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

/frameworks/base/wifi/java/android/net/wifi/
H A DWifiConfigStore.java352 mNetworkIds.remove(configKey(config));
640 mNetworkIds.put(configKey(config), config.networkId);
788 out.writeInt(configKey(config));
961 Integer savedNetId = mNetworkIds.get(configKey(config));
1193 mNetworkIds.put(configKey(currentConfig), netId);
1536 private static int configKey(WifiConfiguration config) { method in class:WifiConfigStore
/frameworks/wilhelm/src/android/
H A DAudioPlayer_to_android.cpp1276 SLresult android_audioPlayer_setConfig(CAudioPlayer *ap, const SLchar *configKey, argument
1281 assert(NULL != ap && NULL != configKey && NULL != pConfigValue);
1282 if (strcmp((const char*)configKey, (const char*)SL_ANDROID_KEY_STREAM_TYPE) == 0) {
1302 SLresult android_audioPlayer_getConfig(CAudioPlayer* ap, const SLchar *configKey, argument
1307 assert(NULL != ap && NULL != configKey && NULL != pValueSize);
1308 if (strcmp((const char*)configKey, (const char*)SL_ANDROID_KEY_STREAM_TYPE) == 0) {
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) {
/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...]

Completed in 113 milliseconds