Home
last modified time | relevance | path

Searched refs:customConfig (Results 1 – 10 of 10) sorted by relevance

/frameworks/av/services/audioflinger/
DSpdifStreamOut.cpp52 struct audio_config customConfig = *config; in open() local
75 customConfig.sample_rate = config->sample_rate * mRateMultiplier; in open()
77 customConfig.format = AUDIO_FORMAT_PCM_16_BIT; in open()
78 customConfig.channel_mask = AUDIO_CHANNEL_OUT_STEREO; in open()
90 customConfig.sample_rate, in open()
91 customConfig.format, in open()
92 customConfig.channel_mask); in open()
97 &customConfig, in open()
DAudioStreamOut.cpp150 struct audio_config customConfig = *config; in open() local
151 customConfig.format = AUDIO_FORMAT_PCM_16_BIT; in open()
157 &customConfig, in open()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiApConfigStore.java304 @Nullable SoftApConfiguration customConfig) { in generateLocalOnlyHotspotConfig() argument
306 if (customConfig != null) { in generateLocalOnlyHotspotConfig()
307 configBuilder = new SoftApConfiguration.Builder(customConfig); in generateLocalOnlyHotspotConfig()
316 if (customConfig == null || customConfig.getSsid() == null) { in generateLocalOnlyHotspotConfig()
319 if (customConfig == null) { in generateLocalOnlyHotspotConfig()
DLocalOnlyHotspotRequestInfo.java54 @Nullable SoftApConfiguration customConfig) { in LocalOnlyHotspotRequestInfo() argument
58 mCustomConfig = customConfig; in LocalOnlyHotspotRequestInfo()
DBaseWifiService.java354 String featureId, SoftApConfiguration customConfig) { in startLocalOnlyHotspot() argument
DWifiServiceImpl.java1732 String featureId, SoftApConfiguration customConfig) { in startLocalOnlyHotspot() argument
1741 if (customConfig == null) { in startLocalOnlyHotspot()
1789 new LocalOnlyRequestorCallback(), customConfig); in startLocalOnlyHotspot()
/frameworks/base/wifi/java/android/net/wifi/
DIWifiManager.aidl154 String featureId, in SoftApConfiguration customConfig); in startLocalOnlyHotspot() argument
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DWifiApConfigStoreTest.java476 SoftApConfiguration customConfig = new SoftApConfiguration.Builder() in generateLohsConfig_forwardsCustomMac() local
480 mContext, SoftApConfiguration.BAND_2GHZ, customConfig); in generateLohsConfig_forwardsCustomMac()
DWifiServiceImplTest.java2280 SoftApConfiguration customConfig = new SoftApConfiguration.Builder() in testCustomLohs_FailsWithoutPermission() local
2287 customConfig); in testCustomLohs_FailsWithoutPermission()
/frameworks/base/wifi/tests/src/android/net/wifi/
DWifiManagerTest.java803 SoftApConfiguration customConfig = new SoftApConfiguration.Builder() in testStartLocalOnlyHotspotForwardsCustomConfig() local
807 mWifiManager.startLocalOnlyHotspot(customConfig, mExecutor, callback); in testStartLocalOnlyHotspotForwardsCustomConfig()
809 anyString(), nullable(String.class), eq(customConfig)); in testStartLocalOnlyHotspotForwardsCustomConfig()