HomeSort by relevance Sort by last modified time
    Searched refs:network (Results 551 - 575 of 879) sorted by null

<<21222324252627282930>>

  /prebuilts/go/darwin-x86/src/net/
server_test.go 126 network, address string
141 if !testableListenArgs(tt.network, tt.address, "") {
142 t.Logf("skipping %s test", tt.network+" "+tt.address)
146 ln, err := Listen(tt.network, tt.address)
180 c, err := d.Dial(lss[i].Listener.Addr().Network(), lss[i].Listener.Addr().String())
dial_test.go 20 network string
50 c, err := Dial(tt.network, JoinHostPort(tt.address, port))
366 network: "tcp",
544 network: "tcp",
608 network, raddr string
681 for i, network := range []string{"tcp4", "tcp6"} {
682 lss[i], err = newLocalServer(network)
702 c, err := d.Dial(tt.network, addr)
704 t.Errorf("%s %v->%s: got %v; want %v", tt.network, tt.laddr, tt.raddr, err, tt.error)
814 t.Skip("skipping on linux-arm64-buildlet; incompatible network config? issue 15191"
    [all...]
ip.go 35 // An IPNet represents an IP network.
37 IP IP // network number
38 Mask IPMask // network mask
471 // Contains reports whether the network includes ip.
489 // Network returns the address's network name, "ip+net".
490 func (n *IPNet) Network() string { return "ip+net" }
667 // It returns the IP address and the network implied by the IP and
670 // 198.0.2.1 and the network 198.0.2.0/24.
  /prebuilts/go/darwin-x86/src/net/textproto/
writer.go 14 // requests or responses to a text protocol network connection.
  /prebuilts/go/darwin-x86/src/runtime/
netpoll_solaris.go 9 // Solaris runtime-integrated network poller.
11 // Solaris uses event ports for scalable network I/O. Event
34 // in doing network I/O. Because now we know what kind of I/O we
177 // polls for ready network connections
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/route/
route.go 57 // flags. When RIBType is related to network interfaces, arg might be
  /prebuilts/go/linux-x86/src/cmd/pprof/internal/fetch/
fetch.go 24 // FetchProfile reads from a data source (network, file) and generates a
  /prebuilts/go/linux-x86/src/hash/adler32/
adler32.go 12 // significant-byte first (network) order.
  /prebuilts/go/linux-x86/src/net/
server_test.go 126 network, address string
141 if !testableListenArgs(tt.network, tt.address, "") {
142 t.Logf("skipping %s test", tt.network+" "+tt.address)
146 ln, err := Listen(tt.network, tt.address)
180 c, err := d.Dial(lss[i].Listener.Addr().Network(), lss[i].Listener.Addr().String())
dial_test.go 20 network string
50 c, err := Dial(tt.network, JoinHostPort(tt.address, port))
366 network: "tcp",
544 network: "tcp",
608 network, raddr string
681 for i, network := range []string{"tcp4", "tcp6"} {
682 lss[i], err = newLocalServer(network)
702 c, err := d.Dial(tt.network, addr)
704 t.Errorf("%s %v->%s: got %v; want %v", tt.network, tt.laddr, tt.raddr, err, tt.error)
814 t.Skip("skipping on linux-arm64-buildlet; incompatible network config? issue 15191"
    [all...]
ip.go 35 // An IPNet represents an IP network.
37 IP IP // network number
38 Mask IPMask // network mask
471 // Contains reports whether the network includes ip.
489 // Network returns the address's network name, "ip+net".
490 func (n *IPNet) Network() string { return "ip+net" }
667 // It returns the IP address and the network implied by the IP and
670 // 198.0.2.1 and the network 198.0.2.0/24.
  /prebuilts/go/linux-x86/src/net/textproto/
writer.go 14 // requests or responses to a text protocol network connection.
  /prebuilts/go/linux-x86/src/runtime/
netpoll_solaris.go 9 // Solaris runtime-integrated network poller.
11 // Solaris uses event ports for scalable network I/O. Event
34 // in doing network I/O. Because now we know what kind of I/O we
177 // polls for ready network connections
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/route/
route.go 57 // flags. When RIBType is related to network interfaces, arg might be
  /prebuilts/go/darwin-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/darwin-x86/src/syscall/
exec_linux_test.go 135 // and create a network namespace.
180 // Check there is only the local network interface
183 t.Fatalf("Expected lo network interface to exist, got %s", sout)
route_bsd.go 177 // which consists of network facility information, states and
260 // network interface entries.
282 // network interface address entries.
  /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/
exec_linux_test.go 135 // and create a network namespace.
180 // Check there is only the local network interface
183 t.Fatalf("Expected lo network interface to exist, got %s", sout)
route_bsd.go 177 // which consists of network facility information, states and
260 // network interface entries.
282 // network interface address entries.
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
SupplicantStaIfaceHalTest.java 233 // Reset the |mSupplicantStaNetwork| mock for each network.
257 for (Map.Entry<Integer, String> network : NETWORK_ID_TO_SSID.entrySet()) {
258 WifiConfiguration config = configs.get(network.getValue());
260 assertEquals(network.getKey(), Integer.valueOf(config.networkId));
261 assertEquals(network.getValue(), config.SSID);
274 // Network ID which will have the same config key as the previous one.
291 // Reset the |mSupplicantStaNetwork| mock for each network.
297 // Duplicate network gets the same config key as the to removed one.
323 for (Map.Entry<Integer, String> network : NETWORK_ID_TO_SSID.entrySet()) {
324 if (network.getKey() == toRemoveNetworkId)
    [all...]
  /frameworks/base/services/core/java/com/android/server/connectivity/
Tethering.java 50 import android.net.Network;
1273 Network network = null; local
    [all...]
  /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/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...]

Completed in 1371 milliseconds

<<21222324252627282930>>