HomeSort by relevance Sort by last modified time
    Searched refs:network (Results 651 - 675 of 1047) sorted by null

<<21222324252627282930>>

  /prebuilts/go/linux-x86/src/compress/flate/
example_test.go 157 // DEFLATE is suitable for transmitting compressed data across the network.
162 // Use io.Pipe to simulate a network connection.
163 // A real network application should take care to properly close the
  /prebuilts/go/linux-x86/src/syscall/
route_bsd.go 177 // which consists of network facility information, states and
260 // network interface entries.
282 // network interface address entries.
exec_linux_test.go 171 // and create a network namespace.
222 // Check there is only the local network interface
225 t.Fatalf("Expected lo network interface to exist, got %s", sout)
318 // and create a network namespace.
368 // and create a network namespace.
504 // and create a network namespace.
  /system/core/adb/
Android.mk 90 sysdeps/posix/network.cpp \
97 sysdeps/posix/network.cpp \
134 sysdeps/posix/network.cpp \
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
SupplicantStaIfaceHal.java 593 * Helper method to look up the network object for the specified iface.
600 * Helper method to look up the network object for the specified iface.
607 * Helper method to look up the network config or the specified iface.
614 * Add a network configuration to wpa_supplicant.
616 * @param config Config corresponding to the network.
618 * for the current network.
625 loge("Cannot add NULL network!");
628 SupplicantStaNetworkHal network = addNetwork(ifaceName); local
629 if (network == null) {
630 loge("Failed to add a network!");
763 SupplicantStaNetworkHal network = getNetwork(ifaceName, networkId); local
1057 SupplicantStaNetworkHal network = local
    [all...]
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
SupplicantStaIfaceHalTest.java 374 // Reset the |mSupplicantStaNetwork| mock for each network.
398 for (Map.Entry<Integer, String> network : NETWORK_ID_TO_SSID.entrySet()) {
399 WifiConfiguration config = configs.get(network.getValue());
401 assertEquals(network.getKey(), Integer.valueOf(config.networkId));
402 assertEquals(network.getValue(), config.SSID);
415 // Network ID which will have the same config key as the previous one.
432 // Reset the |mSupplicantStaNetwork| mock for each network.
438 // Duplicate network gets the same config key as the to removed one.
464 for (Map.Entry<Integer, String> network : NETWORK_ID_TO_SSID.entrySet()) {
465 if (network.getKey() == toRemoveNetworkId)
    [all...]
  /prebuilts/go/darwin-x86/src/internal/poll/
fd_windows.go 263 // succeeded (the bytes are actually sent/recv from network).
283 // a larger type representing a network connection or OS file.
334 // The net argument is a network name from the net package (e.g., "tcp"),
354 return "", errors.New("internal error: unknown network type " + net)
359 // Only call init for a network socket.
366 // method for non-network sockets. If some method does
452 // Shutdown wraps the shutdown network call.
606 // ReadFrom wraps the recvfrom network call.
759 // WriteTo wraps the sendto network call.
948 // ReadMsg wraps the WSARecvMsg network call
    [all...]
  /prebuilts/go/darwin-x86/src/net/
dial_test.go 21 network string
51 c, err := Dial(tt.network, JoinHostPort(tt.address, port))
300 network: "tcp",
478 network: "tcp",
542 network, raddr string
615 for i, network := range []string{"tcp4", "tcp6"} {
616 lss[i], err = newLocalServer(network)
636 c, err := d.Dial(tt.network, addr)
643 t.Errorf("%s %v->%s: got %v; want %v", tt.network, tt.laddr, tt.raddr, err, tt.error)
751 t.Skip("skipping on linux-arm64-buildlet; incompatible network config? issue 15191"
    [all...]
ip.go 37 // An IPNet represents an IP network.
39 IP IP // network number
40 Mask IPMask // network mask
467 // Contains reports whether the network includes ip.
485 // Network returns the address's network name, "ip+net".
486 func (n *IPNet) Network() string { return "ip+net" }
663 // It returns the IP address and the network implied by the IP and
666 // 192.0.2.1 and the network 192.0.2.0/24.
lookup_test.go 673 network string
710 port, err := LookupPort(tt.network, tt.name)
712 t.Errorf("LookupPort(%q, %q) = %d, %v; want %d, error=%t", tt.network, tt.name, port, err, tt.port, !tt.ok)
726 network string
741 port, err := LookupPort(tt.network, tt.name)
743 t.Errorf("LookupPort(%q, %q) = %d, %v; want %d, error=nil", tt.network, tt.name, port, err, tt.port)
  /prebuilts/go/linux-x86/src/internal/poll/
fd_windows.go 263 // succeeded (the bytes are actually sent/recv from network).
283 // a larger type representing a network connection or OS file.
334 // The net argument is a network name from the net package (e.g., "tcp"),
354 return "", errors.New("internal error: unknown network type " + net)
359 // Only call init for a network socket.
366 // method for non-network sockets. If some method does
452 // Shutdown wraps the shutdown network call.
606 // ReadFrom wraps the recvfrom network call.
759 // WriteTo wraps the sendto network call.
948 // ReadMsg wraps the WSARecvMsg network call
    [all...]
  /prebuilts/go/linux-x86/src/net/
dial_test.go 21 network string
51 c, err := Dial(tt.network, JoinHostPort(tt.address, port))
300 network: "tcp",
478 network: "tcp",
542 network, raddr string
615 for i, network := range []string{"tcp4", "tcp6"} {
616 lss[i], err = newLocalServer(network)
636 c, err := d.Dial(tt.network, addr)
643 t.Errorf("%s %v->%s: got %v; want %v", tt.network, tt.laddr, tt.raddr, err, tt.error)
751 t.Skip("skipping on linux-arm64-buildlet; incompatible network config? issue 15191"
    [all...]
ip.go 37 // An IPNet represents an IP network.
39 IP IP // network number
40 Mask IPMask // network mask
467 // Contains reports whether the network includes ip.
485 // Network returns the address's network name, "ip+net".
486 func (n *IPNet) Network() string { return "ip+net" }
663 // It returns the IP address and the network implied by the IP and
666 // 192.0.2.1 and the network 192.0.2.0/24.
lookup_test.go 673 network string
710 port, err := LookupPort(tt.network, tt.name)
712 t.Errorf("LookupPort(%q, %q) = %d, %v; want %d, error=%t", tt.network, tt.name, port, err, tt.port, !tt.ok)
726 network string
741 port, err := LookupPort(tt.network, tt.name)
743 t.Errorf("LookupPort(%q, %q) = %d, %v; want %d, error=nil", tt.network, tt.name, port, err, tt.port)
  /external/webrtc/webrtc/base/
network_unittest.cc 11 #include "webrtc/base/network.h"
64 const Network& network) {
65 return network_manager.IsIgnoredNetwork(network);
151 // Test that the Network ctor works properly.
153 Network ipv4_network1("test_eth0", "Test Network Adapter 1",
156 EXPECT_EQ("Test Network Adapter 1", ipv4_network1.description());
163 Network ipv4_network1("test_eth0", "Test Network Adapter 1"
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_old_handlers.c 72 * wpas_dbus_global_add_interface - Request registration of a network interface
79 * by dbus clients to register a network interface that wpa_supplicant
203 * by dbus clients to deregister a network interface that wpa_supplicant
247 * by dbus clients for the object path of an specific network interface.
289 * by dbus clients for the object path of an specific network interface.
322 * @wpa_s: wpa_supplicant structure for a network interface
326 * Handler function for "scan" method call of a network device. Requests
342 * @wpa_s: wpa_supplicant structure for a network interface
346 * Handler function for "scanResults" method call of a network device. Returns
375 /* Construct the object path for this network. Note that ':
994 char *network = NULL; local
    [all...]
  /external/autotest/client/common_lib/cros/
arc.py 666 @param block_outbound: block outbound network traffic during a test.
789 """ Blocks the connection from the container to outer network.
801 """ Unblocks the connection from the container to outer network.
  /external/autotest/server/cros/ap_configurators/
dynamic_ap_configurator.py 22 from autotest_lib.client.common_lib.cros.network import ap_constants
23 from autotest_lib.client.common_lib.cros.network import xmlrpc_datatypes
24 from autotest_lib.client.common_lib.cros.network import xmlrpc_security_types
623 Sets the SSID of the wireless network.
627 @param ssid: name of the wireless network
635 Sets the channel of the wireless network.
647 Sets the band of the wireless network.
660 Sets the channel width of the wireless network.
671 Disables the security of the wireless network.
681 Enabled WEP security for the wireless network
    [all...]
  /external/python/cpython2/Lib/test/
test_uuid.py 432 def check_node(self, node, requires=None, network=False):
438 if network:
440 # from network cards.
474 self.check_node(node, network=True)
  /external/python/cpython3/Lib/test/
test_uuid.py 441 def check_node(self, node, requires=None, network=False):
447 if network:
449 # from network cards.
488 self.check_node(node, network=True)
  /packages/apps/Settings/src/com/android/settings/core/gateway/
SettingsGateway.java 95 import com.android.settings.network.ApnEditor;
96 import com.android.settings.network.ApnSettings;
97 import com.android.settings.network.NetworkDashboardFragment;
280 // Home page > Network & Internet
  /prebuilts/go/darwin-x86/src/syscall/
exec_linux_test.go 171 // and create a network namespace.
222 // Check there is only the local network interface
225 t.Fatalf("Expected lo network interface to exist, got %s", sout)
318 // and create a network namespace.
368 // and create a network namespace.
504 // and create a network namespace.
  /tools/test/connectivity/acts/framework/acts/test_utils/power/
PowerBaseTest.py 443 def setup_ap_connection(self, network, bandwidth=80, connect=True):
447 network: the network config for the AP to be setup
448 bandwidth: bandwidth of the WiFi network to be setup
449 connect: indicator of if connect dut to the network after setup
455 self.access_point, network, bandwidth=bandwidth)
457 wutils.wifi_connect(self.dut, network)
  /cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/
DeviceInfoInstrument.java 121 // network
122 String network = tm.getNetworkOperatorName(); local
123 addResult(NETWORK, network.trim());
  /device/generic/armv7-a-neon/
mini_common.mk 54 network \

Completed in 415 milliseconds

<<21222324252627282930>>