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

<<11121314151617181920>>

  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/lif/
link.go 13 // It also represents base information for logical network interface.
14 // On Solaris, each logical network interface represents network layer
15 // adjacency information and the interface has a only single network
17 // logical network interfaces share the same logical data link.
  /external/autotest/client/cros/cellular/pseudomodem/
modem_cdma.py 27 Stores carrier specific information needed for a CDMA network.
251 current home network that is assigned to this modem.
257 def SetRegistered(self, network):
259 Sets the modem to be registered on the given network. Configures the
262 @param network: An instance of CdmaNetwork.
266 if network:
268 sid = network.sid
269 nid = network.nid
270 if network.activated:
  /external/boringssl/src/ssl/test/runner/
tls.go 44 // A listener implements a network listener (net.Listener) for TLS connections.
73 // given network address using net.Listen.
76 func Listen(network, laddr string, config *Config) (net.Listener, error) {
80 l, err := net.Listen(network, laddr)
93 // DialWithDialer connects to the given network address using dialer.Dial and
100 func DialWithDialer(dialer *net.Dialer, network, addr string, config *Config) (*Conn, error) {
122 rawConn, err := dialer.Dial(network, addr)
165 // Dial connects to the given network address using net.Dial
171 func Dial(network, addr string, config *Config) (*Conn, error) {
172 return DialWithDialer(new(net.Dialer), network, addr, config
    [all...]
  /external/syslinux/com32/cmenu/
complex.c 31 // Different network options
47 t_menuitem *baseurl, *mountcd, *network, *runprep, *winrep, *linrep; variable
177 v = (void *)network->data;
178 if (v != NULL) // Some network option specified
180 strcat(infoline, "network=");
201 // mi=network since this is handler only for that.
282 NETMENU = add_menu(" Init Network ", -1);
283 none = add_item("<N>one", "Dont start network", OPT_RADIOITEM, "no ", 0);
309 network =
310 add_item(dhcpnet, "How to initialise network device?", OPT_RADIOMENU
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/tls/
tls.go 43 // A listener implements a network listener (net.Listener) for TLS connections.
71 // given network address using net.Listen.
74 func Listen(network, laddr string, config *Config) (net.Listener, error) {
78 l, err := net.Listen(network, laddr)
91 // DialWithDialer connects to the given network address using dialer.Dial and
98 func DialWithDialer(dialer *net.Dialer, network, addr string, config *Config) (*Conn, error) {
120 rawConn, err := dialer.Dial(network, addr)
163 // Dial connects to the given network address using net.Dial
169 func Dial(network, addr string, config *Config) (*Conn, error) {
170 return DialWithDialer(new(net.Dialer), network, addr, config
    [all...]
  /prebuilts/go/darwin-x86/src/net/rpc/
client.go 234 // DialHTTP connects to an HTTP RPC server at the specified network address
236 func DialHTTP(network, address string) (*Client, error) {
237 return DialHTTPPath(network, address, DefaultRPCPath)
241 // at the specified network address and path.
242 func DialHTTPPath(network, address, path string) (*Client, error) {
244 conn, err := net.Dial(network, address)
262 Net: network + " " + address,
268 // Dial connects to an RPC server at the specified network address.
269 func Dial(network, address string) (*Client, error) {
270 conn, err := net.Dial(network, address
    [all...]
  /prebuilts/go/linux-x86/src/crypto/tls/
tls.go 43 // A listener implements a network listener (net.Listener) for TLS connections.
71 // given network address using net.Listen.
74 func Listen(network, laddr string, config *Config) (net.Listener, error) {
78 l, err := net.Listen(network, laddr)
91 // DialWithDialer connects to the given network address using dialer.Dial and
98 func DialWithDialer(dialer *net.Dialer, network, addr string, config *Config) (*Conn, error) {
120 rawConn, err := dialer.Dial(network, addr)
163 // Dial connects to the given network address using net.Dial
169 func Dial(network, addr string, config *Config) (*Conn, error) {
170 return DialWithDialer(new(net.Dialer), network, addr, config
    [all...]
  /prebuilts/go/linux-x86/src/net/rpc/
client.go 234 // DialHTTP connects to an HTTP RPC server at the specified network address
236 func DialHTTP(network, address string) (*Client, error) {
237 return DialHTTPPath(network, address, DefaultRPCPath)
241 // at the specified network address and path.
242 func DialHTTPPath(network, address, path string) (*Client, error) {
244 conn, err := net.Dial(network, address)
262 Net: network + " " + address,
268 // Dial connects to an RPC server at the specified network address.
269 func Dial(network, address string) (*Client, error) {
270 conn, err := net.Dial(network, address
    [all...]
  /prebuilts/go/darwin-x86/src/net/
lookup.go 81 func lookupPortMap(network, service string) (port int, error error) {
82 switch network {
84 network = "tcp"
86 network = "udp"
89 if m, ok := services[network]; ok {
97 return 0, &AddrError{Err: "unknown port", Addr: network + "/" + service}
134 Dial func(ctx context.Context, network, address string) (Conn, error)
260 // LookupPort looks up the port for the given network and service.
261 func LookupPort(network, service string) (port int, err error) {
262 return DefaultResolver.LookupPort(context.Background(), network, service
    [all...]
lookup_plan9.go 122 // host names in local network (e.g. from /lib/ndb/local)
169 func (*Resolver) lookupPort(ctx context.Context, network, service string) (port int, err error) {
170 switch network {
172 network = "tcp"
174 network = "udp"
176 lines, err := queryCS(ctx, network, "127.0.0.1", toLower(service))
180 unknownPortError := &AddrError{Err: "unknown port", Addr: network + "/" + service}
lookup_unix.go 54 func (r *Resolver) dial(ctx context.Context, network, server string) (dnsConn, error) {
63 c, err = r.Dial(ctx, network, server)
66 c, err = d.DialContext(ctx, network, server)
105 func (r *Resolver) lookupPort(ctx context.Context, network, service string) (int, error) {
107 if port, err, ok := cgoLookupPort(ctx, network, service); ok {
111 if port, err := goLookupPort(network, service); err == nil {
118 return goLookupPort(network, service)
packetconn_test.go 22 func packetConnTestData(t *testing.T, network string) ([]byte, func()) {
23 if !testableNetwork(network) {
24 return nil, func() { t.Logf("skipping %s test", network) }
  /prebuilts/go/linux-x86/src/net/
lookup.go 81 func lookupPortMap(network, service string) (port int, error error) {
82 switch network {
84 network = "tcp"
86 network = "udp"
89 if m, ok := services[network]; ok {
97 return 0, &AddrError{Err: "unknown port", Addr: network + "/" + service}
134 Dial func(ctx context.Context, network, address string) (Conn, error)
260 // LookupPort looks up the port for the given network and service.
261 func LookupPort(network, service string) (port int, err error) {
262 return DefaultResolver.LookupPort(context.Background(), network, service
    [all...]
lookup_plan9.go 122 // host names in local network (e.g. from /lib/ndb/local)
169 func (*Resolver) lookupPort(ctx context.Context, network, service string) (port int, err error) {
170 switch network {
172 network = "tcp"
174 network = "udp"
176 lines, err := queryCS(ctx, network, "127.0.0.1", toLower(service))
180 unknownPortError := &AddrError{Err: "unknown port", Addr: network + "/" + service}
lookup_unix.go 54 func (r *Resolver) dial(ctx context.Context, network, server string) (dnsConn, error) {
63 c, err = r.Dial(ctx, network, server)
66 c, err = d.DialContext(ctx, network, server)
105 func (r *Resolver) lookupPort(ctx context.Context, network, service string) (int, error) {
107 if port, err, ok := cgoLookupPort(ctx, network, service); ok {
111 if port, err := goLookupPort(network, service); err == nil {
118 return goLookupPort(network, service)
packetconn_test.go 22 func packetConnTestData(t *testing.T, network string) ([]byte, func()) {
23 if !testableNetwork(network) {
24 return nil, func() { t.Logf("skipping %s test", network) }
  /external/tensorflow/tensorflow/contrib/lite/models/testdata/g3doc/
README.md 9 signal and produces features for the encoder neural network and uses some
24 The hotword model is the neural network model we use for keyphrase/hotword
35 The speaker-id model is the neural network model we use for speaker
45 The text-to-speech model is the neural network model used to generate speech
55 The acoustic model for automatic speech recognition is the neural network model
66 The language model for automatic speech recognition is the neural network model
80 The endpointer model is the neural network model for predicting end of speech
  /tools/test/connectivity/acts/framework/acts/test_utils/wifi/
wifi_retail_ap.py 210 def set_radio_on_off(self, network, status):
214 network: string containing network identifier (2G, 5G_1, 5G_2)
217 setting_to_update = {"status_{}".format(network): int(status)}
220 def set_ssid(self, network, ssid):
221 """Function that sets network SSID.
224 network: string containing network identifier (2G, 5G_1, 5G_2)
227 setting_to_update = {"ssid_{}".format(network): str(ssid)}
230 def set_channel(self, network, channel)
    [all...]
  /compatibility/cdd/7_hardware-compatibility/
7_4_data-connectivity.md 7 or CDMA network. While these voice calls may or may not be packet-switched,
9 connectivity that may be implemented using the same network. In other words,
13 whether they use a cellular network for data connectivity.
170 to Network Discovery and Selection, such as Generic Advertisement
171 Service (GAS) and Access Network Query Protocol (ANQP).
358 ### 7.4.5\. Minimum Network Capability
379 connectivity on any IPv6-compliant network that uses RA lifetimes of
382 When connected to an IPv6-capable network:
385 the network, without any form
393 network
    [all...]
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/
ANQPMatcherTest.java 79 * matches a 3GPP network domain in the Domain Name ANQP element.
87 // 3GPP network domain with MCC=123 and MNC=456.
296 * Verify that 3GPP Network match will fail when a null element is provided.
308 * Verify that 3GPP network will succeed when the given 3GPP Network ANQP element contained
318 CellularNetwork network = new CellularNetwork(Arrays.asList(new String[] {"123456"})); local
320 new ThreeGPPNetworkElement(Arrays.asList(new CellularNetwork[] {network}));
321 // The MCC-MNC provided in 3GPP Network ANQP element matches both IMSI parameter
327 * Verify that 3GPP network will failed when the given 3GPP Network ANQP element containe
337 CellularNetwork network = new CellularNetwork(Arrays.asList(new String[] {"123456"})); local
356 CellularNetwork network = new CellularNetwork(Arrays.asList(new String[] {"123356"})); local
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/ims/
MmTelFeatureCompatAdapter.java 96 public void onGetFeatureResponse(int feature, int network, int value, int status)
98 if (feature == mCapability && network == mTech) {
103 + feature + " and network=" + network);
108 public void onSetFeatureResponse(int feature, int network, int value, int status)
110 if (feature == mCapability && network == mTech) {
115 + feature + " and network=" + network);
  /prebuilts/go/darwin-x86/src/net/rpc/jsonrpc/
client.go 117 // Dial connects to a JSON-RPC server at the specified network address.
118 func Dial(network, address string) (*rpc.Client, error) {
119 conn, err := net.Dial(network, address)
  /prebuilts/go/linux-x86/src/net/rpc/jsonrpc/
client.go 117 // Dial connects to a JSON-RPC server at the specified network address.
118 func Dial(network, address string) (*rpc.Client, error) {
119 conn, err := net.Dial(network, address)
  /tools/test/connectivity/acts/tests/google/net/
DataUsageTest.py 67 req_params = ("wifi_network", "download_file", "file_size", "network")
246 # connect to wifi network
285 self.network[wutils.WifiEnums.SSID_KEY],
286 self.network[wutils.WifiEnums.PWD_KEY],
288 wutils.wifi_connect(ad, self.network)
363 self.network[wutils.WifiEnums.SSID_KEY],
364 self.network[wutils.WifiEnums.PWD_KEY],
366 wutils.wifi_connect(ad, self.network)
  /tools/test/connectivity/acts/tests/google/wifi/
WifiManagerTest.py 45 network.
66 "Need at least one reference network with psk.")
106 params: A tuple of network info and AndroidDevice object.
108 network, ad = params
111 SSID = network[WifiEnums.SSID_KEY]
114 wutils.wifi_connect(ad, network, num_of_tries=3)
116 def get_connection_data(self, dut, network):
117 """Get network id and ssid info from connection data.
121 network: dict representing the network to connect to
    [all...]

Completed in 227 milliseconds

<<11121314151617181920>>