/packages/modules/Virtualization/android/TerminalApp/java/com/android/virtualization/terminal/ |
D | Runner.kt | 71 val customConfig = config.customImageConfig in create() constant 72 requireNotNull(customConfig) { "CustomImageConfig is missing" } in create() 74 val name = customConfig.name in create()
|
/packages/modules/Wifi/service/java/com/android/server/wifi/ |
D | WifiApConfigStore.java | 498 @Nullable SoftApConfiguration customConfig, @NonNull SoftApCapability capability, in generateLocalOnlyHotspotConfig() argument 502 if (customConfig != null && isExclusive) { in generateLocalOnlyHotspotConfig() 503 if (!TextUtils.isEmpty(customConfig.getSsid())) { in generateLocalOnlyHotspotConfig() 506 configBuilder = new SoftApConfiguration.Builder(customConfig); in generateLocalOnlyHotspotConfig() 509 && !isBandsSupported(customConfig.getBands(), context)) { in generateLocalOnlyHotspotConfig() 514 if (customConfig != null && SdkLevel.isAtLeastS()) { in generateLocalOnlyHotspotConfig() 515 configBuilder.setChannels(customConfig.getChannels()); in generateLocalOnlyHotspotConfig() 524 if (customConfig != null in generateLocalOnlyHotspotConfig() 525 && customConfig.getBand() == SoftApConfiguration.BAND_6GHZ) { in generateLocalOnlyHotspotConfig()
|
D | LocalOnlyHotspotRequestInfo.java | 60 @Nullable SoftApConfiguration customConfig) { in LocalOnlyHotspotRequestInfo() argument 66 mCustomConfig = customConfig; in LocalOnlyHotspotRequestInfo()
|
D | WifiServiceImpl.java | 3195 String featureId, SoftApConfiguration customConfig, Bundle extras, in startLocalOnlyHotspot() argument 3207 if (customConfig == null in startLocalOnlyHotspot() 3274 new LocalOnlyRequestorCallback(), customConfig); in startLocalOnlyHotspot()
|
/packages/modules/Virtualization/libs/framework-virtualization/src/android/system/virtualmachine/ |
D | VirtualMachineConfig.java | 891 VirtualMachineAppConfig.CustomConfig customConfig = in toVsConfig() local 893 customConfig.devices = EMPTY_STRING_ARRAY; in toVsConfig() 894 customConfig.extraKernelCmdlineParams = EMPTY_STRING_ARRAY; in toVsConfig() 895 customConfig.teeServices = EMPTY_STRING_ARRAY; in toVsConfig() 897 customConfig.vendorImage = in toVsConfig() 904 vsConfig.customConfig = customConfig; in toVsConfig()
|
/packages/modules/Virtualization/android/virtualizationservice/aidl/android/system/virtualizationservice/ |
D | VirtualMachineAppConfig.aidl | 143 @nullable CustomConfig customConfig;
|
/packages/modules/Virtualization/android/virtmgr/src/ |
D | aidl.rs | 1052 if config.customConfig.is_some() { in is_custom_config() 1091 let Some(custom_config) = &config.customConfig else { in extract_vendor_hashtree_digest() 1440 if let Some(custom_config) = &config.customConfig { in load_app_config() 2097 let Some(custom) = &config.customConfig else { return true }; in extract_want_updatable() 2107 NonZeroU16::new(config.customConfig.as_ref().map(|c| c.gdbPort).unwrap_or(0) as u16) in extract_gdb_port() 2114 if let Some(custom_config) = &config.customConfig { in check_no_vendor_modules() 2125 if let Some(custom_config) = &config.customConfig { in check_no_devices() 2146 if let Some(custom_config) = &config.customConfig { in check_no_extra_kernel_cmdline_params() 2164 if let Some(custom_config) = &config.customConfig { in check_no_tee_services()
|
/packages/modules/Virtualization/libs/libcompos_common/ |
D | compos_client.rs | 147 customConfig: custom_config,
|
/packages/modules/Wifi/framework/tests/src/android/net/wifi/ |
D | WifiManagerTest.java | 1149 SoftApConfiguration customConfig = new SoftApConfiguration.Builder() in testStartLocalOnlyHotspotForwardsCustomConfig() local 1153 mWifiManager.startLocalOnlyHotspot(customConfig, mExecutor, callback); in testStartLocalOnlyHotspotForwardsCustomConfig() 1155 anyString(), nullable(String.class), eq(customConfig), any(), eq(true)); in testStartLocalOnlyHotspotForwardsCustomConfig() 4496 SoftApConfiguration customConfig = new SoftApConfiguration.Builder() in testStartLocalOnlyHotspotWithConfiguration() local 4500 mWifiManager.startLocalOnlyHotspotWithConfiguration(customConfig, mExecutor, callback); in testStartLocalOnlyHotspotWithConfiguration() 4502 new SoftApConfiguration.Builder(customConfig) in testStartLocalOnlyHotspotWithConfiguration() 4511 customConfig, null, callback)); in testStartLocalOnlyHotspotWithConfiguration() 4514 customConfig, mExecutor, null)); in testStartLocalOnlyHotspotWithConfiguration()
|
/packages/modules/Virtualization/android/vm/src/ |
D | run.rs | 194 customConfig: Some(custom_config), in command_run_app()
|
/packages/modules/Wifi/framework/java/android/net/wifi/ |
D | IWifiManager.aidl | 259 String featureId, in SoftApConfiguration customConfig, in Bundle extras, in startLocalOnlyHotspot() argument
|
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/ |
D | WifiApConfigStoreTest.java | 693 SoftApConfiguration customConfig = customConfigBuilder.build(); in generateLohsConfig_forwardsCustomMac() local 695 mContext, customConfig, mSoftApCapability, true); in generateLohsConfig_forwardsCustomMac()
|
D | WifiServiceImplTest.java | 8434 WifiNetworkSelectionConfig customConfig = new WifiNetworkSelectionConfig.Builder() in testGetNetworkSelectionConfig_GoodCase() local 8442 mWifiServiceImpl.setNetworkSelectionConfig(customConfig); in testGetNetworkSelectionConfig_GoodCase() 8444 verify(mWifiConnectivityManager).setNetworkSelectionConfig(customConfig); in testGetNetworkSelectionConfig_GoodCase() 8448 inOrder.verify(listener).onResult(customConfig); in testGetNetworkSelectionConfig_GoodCase() 13220 SoftApConfiguration customConfig = new SoftApConfiguration.Builder() in testCustomUserLohs() local 13226 customConfig, mExtras, false)); in testCustomUserLohs() 13229 customConfig, mExtras, false); in testCustomUserLohs()
|