HomeSort by relevance Sort by last modified time
    Searched refs:networks (Results 76 - 100 of 124) sorted by null

1 2 34 5

  /external/tensorflow/tensorflow/contrib/mpi/
README.md 13 By using this protocol TensorFlow can take advantage of the high performance networking primitives that are offered via the MPI API. This enables TensorFlow to take advantage of high performance low latency networks such as Infiniband. These changes are largely transparent to the user who only has to change the offered protocol and launch the script using the 'mpirun' launcher. For example:
  /external/webrtc/webrtc/p2p/stunprober/
stunprober.cc 232 const rtc::NetworkManager::NetworkList& networks)
236 networks_(networks) {
  /frameworks/base/core/java/android/net/
IConnectivityManager.aidl 173 boolean setUnderlyingNetworksForVpn(in Network[] networks);
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
AvailableNetworkNotifier.java 113 /** Whether the user has set the setting to show the 'available networks' notification. */
265 * If there are available networks, attempt to post a network notification.
267 * @param availableNetworks Available networks to choose from and possibly show notification
305 * Recommends a network to connect to from a list of available networks, while ignoring the
308 public ScanResult recommendNetwork(@NonNull List<ScanDetail> networks,
312 for (ScanDetail scanDetail : networks) {
WifiConfigManager.java 76 * This class provides the APIs to manage configured Wi-Fi networks.
78 * - Maintaining a list of configured networks for quick access.
197 * Link networks only if they have less than this number of scan cache entries.
202 * Link networks only if the bssid in scan results for the networks match in the first
216 * General sorting algorithm of all networks for scanning purposes:
217 * Place the configurations in descending order of their |numAssociation| values. If networks
258 * Map of configured networks with network id as the key.
273 * Flag to indicate if only networks with the same psk should be linked.
310 * This is keeping track of the next network ID to be assigned. Any new networks will b
474 List<WifiConfiguration> networks = new ArrayList<>(); local
2369 List<WifiConfiguration> networks = new ArrayList<>(getInternalConfiguredNetworks()); local
2401 List<WifiConfiguration> networks = new ArrayList<>(getInternalConfiguredNetworks()); local
    [all...]
WifiNetworkHistory.java 121 * Write network history to file, for configured networks
123 * @param networks List of ConfiguredNetworks to write to NetworkHistory
125 public void writeKnownNetworkHistory(final List<WifiConfiguration> networks,
130 //final List<WifiConfiguration> networks = new ArrayList<WifiConfiguration>();
133 // networks.add(new WifiConfiguration(config));
138 for (WifiConfiguration config : networks) {
  /external/webrtc/webrtc/p2p/client/
basicportallocator.h 182 void GetNetworks(std::vector<rtc::Network*>* networks);
  /frameworks/base/services/core/java/com/android/server/
NetworkScoreService.java 447 public boolean updateScores(ScoredNetwork[] networks) {
455 // Separate networks by type.
457 for (ScoredNetwork network : networks) {
    [all...]
  /prebuilts/go/darwin-x86/src/internal/testenv/
testenv.go 150 // external (non-localhost) networks.
156 // external (non-localhost) networks.
  /prebuilts/go/darwin-x86/src/net/
iprawsock.go 204 // DialIP acts like Dial for IP networks.
219 // ListenIP acts like ListenPacket for IP networks.
tcpsock.go 199 // DialTCP acts like Dial for TCP networks.
313 // ListenTCP acts like Listen for TCP networks.
  /prebuilts/go/linux-x86/src/internal/testenv/
testenv.go 150 // external (non-localhost) networks.
156 // external (non-localhost) networks.
  /prebuilts/go/linux-x86/src/net/
iprawsock.go 204 // DialIP acts like Dial for IP networks.
219 // ListenIP acts like ListenPacket for IP networks.
tcpsock.go 199 // DialTCP acts like Dial for TCP networks.
313 // ListenTCP acts like Listen for TCP networks.
  /tools/test/connectivity/acts/tests/google/wifi/
WifiManagerTest.py 44 * Several Wi-Fi networks visible to the device, including an open Wi-Fi
103 """Connection logic for open and psk wifi networks.
142 A list with the connection details for the 2GHz and 5GHz networks.
169 def check_configstore_networks(self, networks):
170 """Verify that all previously configured networks are presistent after
174 networks: List of network dicts.
181 if len(network_info) != len(networks):
183 "Length of configured networks before and after reboot don't"
185 (networks, network_info))
189 for network in networks
    [all...]
WifiPasspointTest.py 44 * Several Wi-Fi networks visible to the device, including an open Wi-Fi
108 # Passpoint network takes longer time to connect than normal networks.
123 "passpoint networks.")
184 """Add multiple passpoint networks, list them and delete one by one.
198 " configured passpoint networks.")
221 """Add a pair of passpoint networks and test failover when one of the"
244 "configured Passpoint networks.")
WifiRttManagerTest.py 168 This is added to better control which networks to range against instead
169 of blindly use all 80211mc networks in air.
193 """Scans for 11mc-capable WiFi networks using regular wifi scan.
195 Networks are selected based on self.network_selector.
198 A list of networks that have RTTResponders.
201 networks = self.dut.droid.wifiGetScanResults()
203 for nw in networks:
209 """Scans for 11mc-capable WiFi networks using wifi gscan.
211 Networks are selected based on self.network_selector.
214 A list of networks that have RTTResponders
    [all...]
  /frameworks/base/services/core/java/com/android/server/connectivity/
Vpn.java 193 * apps can still bypass by choosing explicit networks. Has no effect if {@link mAlwaysOn} is
333 // When we have multiple networks, we have to assume the
345 // No idea what the underlying networks are; assume sane defaults
    [all...]
  /cts/tests/tests/net/src/android/net/wifi/cts/
WifiManagerTest.java 256 private int findConfiguredNetworks(String SSID, List<WifiConfiguration> networks) {
257 for (final WifiConfiguration w : networks) {
259 return networks.indexOf(w);
406 * 6.configured Networks
415 // store the list of enabled networks, so they can be re-enabled after test completes
746 // obtain number of passpoint networks already present in device (preloaded)
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/
NetworkScoreServiceTest.java 261 final NetworkKey[] networks = new NetworkKey[0]; local
262 assertTrue(mNetworkScoreService.requestScores(networks));
263 verify(mRecommendationProvider).requestScores(networks);
    [all...]
  /tools/test/connectivity/acts/framework/acts/test_utils/wifi/
wifi_retail_ap.py 355 self.networks = ["2G", "5G_1"]
601 self.networks = ["2G", "5G_1"]
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
wpa_cli.c 62 static DEFINE_DL_LIST(networks); /* struct cli_txt_entry */
    [all...]
  /hardware/libhardware_legacy/include/hardware_legacy/
wifi_hal.h 353 int num, wifi_passpoint_network *networks, wifi_passpoint_event_handler handler);
  /development/apps/Development/src/com/android/development/
Connectivity.java 610 Network[] networks = mCm.getAllNetworks(); local
611 for (Network network : networks) {
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/wifi/
WifiTracker.java 73 * Tracks saved or available wifi networks and their state.
77 * Default maximum age in millis of cached scored networks in
242 public void networkCacheUpdated(List<ScoredNetwork> networks) {
246 Log.v(TAG, "Score cache was updated with networks: " + networks);
259 * Temporarily stop scanning for wifi networks.
272 * Resume scanning for wifi networks after it has been paused.
287 * Start tracking wifi networks and scores.
289 * <p>Registers listeners and starts scanning for wifi networks. If this is not called
356 * Stop tracking wifi networks and scores
    [all...]

Completed in 9603 milliseconds

1 2 34 5