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

1 2 34 5 6 7 8 91011>>

  /external/autotest/server/site_tests/network_WiFi_Prefer5Ghz/
network_WiFi_Prefer5Ghz.py 5 from autotest_lib.client.common_lib.cros.network import iw_runner
6 from autotest_lib.client.common_lib.cros.network import xmlrpc_datatypes
7 from autotest_lib.server.cros.network import hostap_config
8 from autotest_lib.server.cros.network import wifi_cell_test_base
12 """Test that if we see two APs in the same network, we take the 5Ghz one."""
  /external/autotest/server/site_tests/network_WiFi_WMM/
network_WiFi_WMM.py 5 from autotest_lib.client.common_lib.cros.network import ping_runner
6 from autotest_lib.client.common_lib.cros.network import xmlrpc_datatypes
7 from autotest_lib.server.cros.network import hostap_config
8 from autotest_lib.server.cros.network import wifi_cell_test_base
  /frameworks/base/telephony/java/com/android/ims/internal/
IImsConfig.aidl 72 * Gets the value of the specified IMS feature item for specified network type.
77 * @param network. as defined in android.telephony.TelephonyManager#NETWORK_TYPE_XXX.
81 oneway void getFeatureValue(int feature, int network, ImsConfigListener listener);
84 * Sets the value for IMS feature item for specified network type.
89 * @param network. as defined in android.telephony.TelephonyManager#NETWORK_TYPE_XXX.
94 oneway void setFeatureValue(int feature, int network, int value, ImsConfigListener listener);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/network/
HttpException.java 17 package com.android.inputmethod.latin.network;
  /system/update_engine/
network_selector_android.cc 26 namespace network { namespace in namespace:chromeos_update_engine
33 } // namespace network
40 PLOG(ERROR) << "Binding the network to " << network_id;
network_selector_stub.cc 25 namespace network { namespace in namespace:chromeos_update_engine
32 } // namespace network
  /packages/services/Mms/src/com/android/mms/service/
MmsNetworkManager.java 21 import android.net.Network;
32 * Manages the MMS network connectivity
42 // Waiting time used before releasing a network prematurely. This allows the MMS download
43 // acknowledgement messages to be sent using the same network that was used to download the data
48 // The requested MMS {@link android.net.Network} we are holding
50 // MMS network is available.
51 private Network mNetwork;
52 // The current count of MMS requests that require the MMS network
53 // If mMmsRequestCount is 0, we should release the MMS network.
57 // The callback to register when we request MMS network
282 Network network = null; local
    [all...]
  /external/autotest/server/site_tests/network_WiFi_HiddenScan/
network_WiFi_HiddenScan.py 6 from autotest_lib.client.common_lib.cros.network import tcpdump_analyzer
7 from autotest_lib.client.common_lib.cros.network import xmlrpc_datatypes
8 from autotest_lib.server.cros.network import hostap_config
9 from autotest_lib.server.cros.network import packet_capturer
10 from autotest_lib.server.cros.network import wifi_cell_test_base
  /external/autotest/server/site_tests/network_WiFi_VisibleScan/
network_WiFi_VisibleScan.py 6 from autotest_lib.client.common_lib.cros.network import tcpdump_analyzer
7 from autotest_lib.client.common_lib.cros.network import xmlrpc_datatypes
8 from autotest_lib.server.cros.network import hostap_config
9 from autotest_lib.server.cros.network import packet_capturer
10 from autotest_lib.server.cros.network import wifi_cell_test_base
  /system/connectivity/wificond/scanning/
single_scan_settings.cpp 52 for (const auto& network : hidden_networks_) {
56 RETURN_IF_FAILED(network.writeToParcel(parcel));
95 HiddenNetwork network; local
106 RETURN_IF_FAILED(network.readFromParcel(parcel));
107 hidden_networks_.push_back(network);
  /prebuilts/go/darwin-x86/src/net/
udpsock.go 28 // Network returns the address's network name, "udp".
29 func (a *UDPAddr) Network() string { return "udp" }
58 // The network must be a UDP network name.
69 // See func Dial for a description of the network and address
71 func ResolveUDPAddr(network, address string) (*UDPAddr, error) {
72 switch network {
75 network = "udp"
77 return nil, UnknownNetworkError(network)
    [all...]
external_test.go 22 for _, network := range []string{"tcp", "tcp4", "tcp6"} {
23 addr, err := ResolveTCPAddr(network, "www.google.com:http")
29 case network == "tcp" && addr.IP.To4() == nil:
31 case network == "tcp4" && addr.IP.To4() == nil:
32 t.Errorf("got %v; want an IPv4 address on %s", addr, network)
33 case network == "tcp6" && (addr.IP.To16() == nil || addr.IP.To4() != nil):
34 t.Errorf("got %v; want an IPv6 address on %s", addr, network)
75 for _, network := range tt.networks {
78 if err := fetchGoogle(tt.dial, network, addr); err != nil {
147 func fetchGoogle(dial func(string, string) (Conn, error), network, address string) error
    [all...]
unixsock.go 21 // Network returns the address's network name, "unix", "unixgram" or
23 func (a *UnixAddr) Network() string {
47 // The network must be a Unix network name.
49 // See func Dial for a description of the network and address
51 func ResolveUnixAddr(network, address string) (*UnixAddr, error) {
52 switch network {
54 return &UnixAddr{Name: address, Net: network}, nil
56 return nil, UnknownNetworkError(network)
    [all...]
dial.go 42 // network being dialed.
47 // dialing when the network is "tcp" and the host in the
59 // network connection.
60 // If zero, keep-alives are not enabled. Network protocols
139 func parseNetwork(ctx context.Context, network string, needsProto bool) (afnet string, proto int, err error) {
140 i := last(network, ':')
142 switch network {
147 return "", 0, UnknownNetworkError(network)
151 return "", 0, UnknownNetworkError(network)
153 return network, 0, ni
    [all...]
  /prebuilts/go/linux-x86/src/net/
udpsock.go 28 // Network returns the address's network name, "udp".
29 func (a *UDPAddr) Network() string { return "udp" }
58 // The network must be a UDP network name.
69 // See func Dial for a description of the network and address
71 func ResolveUDPAddr(network, address string) (*UDPAddr, error) {
72 switch network {
75 network = "udp"
77 return nil, UnknownNetworkError(network)
    [all...]
external_test.go 22 for _, network := range []string{"tcp", "tcp4", "tcp6"} {
23 addr, err := ResolveTCPAddr(network, "www.google.com:http")
29 case network == "tcp" && addr.IP.To4() == nil:
31 case network == "tcp4" && addr.IP.To4() == nil:
32 t.Errorf("got %v; want an IPv4 address on %s", addr, network)
33 case network == "tcp6" && (addr.IP.To16() == nil || addr.IP.To4() != nil):
34 t.Errorf("got %v; want an IPv6 address on %s", addr, network)
75 for _, network := range tt.networks {
78 if err := fetchGoogle(tt.dial, network, addr); err != nil {
147 func fetchGoogle(dial func(string, string) (Conn, error), network, address string) error
    [all...]
unixsock.go 21 // Network returns the address's network name, "unix", "unixgram" or
23 func (a *UnixAddr) Network() string {
47 // The network must be a Unix network name.
49 // See func Dial for a description of the network and address
51 func ResolveUnixAddr(network, address string) (*UnixAddr, error) {
52 switch network {
54 return &UnixAddr{Name: address, Net: network}, nil
56 return nil, UnknownNetworkError(network)
    [all...]
dial.go 42 // network being dialed.
47 // dialing when the network is "tcp" and the host in the
59 // network connection.
60 // If zero, keep-alives are not enabled. Network protocols
139 func parseNetwork(ctx context.Context, network string, needsProto bool) (afnet string, proto int, err error) {
140 i := last(network, ':')
142 switch network {
147 return "", 0, UnknownNetworkError(network)
151 return "", 0, UnknownNetworkError(network)
153 return network, 0, ni
    [all...]
  /tools/test/connectivity/acts/tests/google/wifi/
WifiCrashTest.py 44 * One Wi-Fi network visible to the device.
63 "Need at least one reference network with psk.")
64 self.network = self.reference_networks[0]["2g"]
89 """Connect to a network, crash framework, then ensure
90 we connect back to the previously connected network.
93 1. Connect to a network.
95 3. Reconnect to the previous network.
98 wutils.wifi_connect(self.dut, self.network, num_of_tries=3)
106 if wifi_info[WifiEnums.SSID_KEY] != self.network[WifiEnums.SSID_KEY]:
108 " network after crashing framework."
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/gob/
example_test.go 28 // bound to network connections and the encoder and decoder would
30 var network bytes.Buffer // Stand-in for a network connection
31 enc := gob.NewEncoder(&network) // Will write to network.
32 dec := gob.NewDecoder(&network) // Will read from network.
  /prebuilts/go/linux-x86/src/encoding/gob/
example_test.go 28 // bound to network connections and the encoder and decoder would
30 var network bytes.Buffer // Stand-in for a network connection
31 enc := gob.NewEncoder(&network) // Will write to network.
32 dec := gob.NewDecoder(&network) // Will read from network.
  /external/ipsec-tools/src/racoon/
isakmp_unity.c 210 struct unity_network *network = (struct unity_network *)(attr + 1); local
223 &network[index],
237 &network[index],
269 struct unity_network * network; local
286 network = (struct unity_network *)(new + 1);
289 memcpy(&network[index],
290 &netentry->network,
293 inet_ntop(AF_INET, &netentry->network.addr4, tmp1, 40);
294 inet_ntop(AF_INET, &netentry->network.mask4, tmp2, 40);
303 int splitnet_list_add(list, network, count
    [all...]
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/internal/nettest/
stack.go 5 // Package nettest provides utilities for network testing.
59 // TestableNetwork reports whether network is testable on the current
61 func TestableNetwork(network string) bool {
64 switch network {
89 // Network must be "tcp", "tcp4", "tcp6", "unix" or "unixpacket".
90 func NewLocalListener(network string) (net.Listener, error) {
91 switch network {
110 return net.Listen(network, localPath())
112 return nil, fmt.Errorf("%s is not supported", network)
117 // Network must be "udp", "udp4", "udp6" or "unixgram"
    [all...]
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/internal/nettest/
stack.go 5 // Package nettest provides utilities for network testing.
59 // TestableNetwork reports whether network is testable on the current
61 func TestableNetwork(network string) bool {
64 switch network {
89 // Network must be "tcp", "tcp4", "tcp6", "unix" or "unixpacket".
90 func NewLocalListener(network string) (net.Listener, error) {
91 switch network {
110 return net.Listen(network, localPath())
112 return nil, fmt.Errorf("%s is not supported", network)
117 // Network must be "udp", "udp4", "udp6" or "unixgram"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/
nodeconquery.py 40 network The IPv4/IPv6 address or IPv4/IPv6 network address
44 the nodecon's network instead of equality.
88 def network(self): member in class:NodeconQuery
91 @network.setter
92 def network(self, value): member in class:NodeconQuery
97 raise RuntimeError("Nodecon IP address/network functions require Python 3.3+.")
108 self.log.debug("Network: {0.network!r}, overlap: {0.network_overlap}".format(self))
114 if self.network
    [all...]

Completed in 490 milliseconds

1 2 34 5 6 7 8 91011>>