HomeSort by relevance Sort by last modified time
    Searched defs:Network (Results 1 - 25 of 217) sorted by null

1 2 3 4 5 6 7 8 9

  /external/volley/src/main/java/com/android/volley/
Network.java 22 public interface Network {
  /prebuilts/go/darwin-x86/src/net/
file.go 14 func (fileAddr) Network() string { return "file+net" }
17 // FileConn returns a copy of the network connection corresponding to
29 // FileListener returns a copy of the network listener corresponding
41 // FilePacketConn returns a copy of the packet network connection
iprawsock.go 12 // BUG(mikio): On every POSIX platform, reads from the "ip4" network
36 // Network returns the address's network name, "ip".
37 func (a *IPAddr) Network() string { return "ip" }
66 // The network must be an IP network name.
75 // See func Dial for a description of the network and address
77 func ResolveIPAddr(network, address string) (*IPAddr, error) {
78 if network == "" { // a hint wildcard for Go 1.0 undocumented behavior
79 network = "ip
    [all...]
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...]
pipe.go 89 func (pipeAddr) Network() string { return "pipe" }
114 // network connection; both ends implement the Conn interface.
tcpsock.go 25 // Network returns the address's network name, "tcp".
26 func (a *TCPAddr) Network() string { return "tcp" }
55 // The network must be a TCP network name.
66 // See func Dial for a description of the network and address
68 func ResolveTCPAddr(network, address string) (*TCPAddr, error) {
69 switch network {
72 network = "tcp"
74 return nil, UnknownNetworkError(network)
    [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...]
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.
  /prebuilts/go/linux-x86/src/net/
file.go 14 func (fileAddr) Network() string { return "file+net" }
17 // FileConn returns a copy of the network connection corresponding to
29 // FileListener returns a copy of the network listener corresponding
41 // FilePacketConn returns a copy of the packet network connection
iprawsock.go 12 // BUG(mikio): On every POSIX platform, reads from the "ip4" network
36 // Network returns the address's network name, "ip".
37 func (a *IPAddr) Network() string { return "ip" }
66 // The network must be an IP network name.
75 // See func Dial for a description of the network and address
77 func ResolveIPAddr(network, address string) (*IPAddr, error) {
78 if network == "" { // a hint wildcard for Go 1.0 undocumented behavior
79 network = "ip
    [all...]
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...]
pipe.go 89 func (pipeAddr) Network() string { return "pipe" }
114 // network connection; both ends implement the Conn interface.
tcpsock.go 25 // Network returns the address's network name, "tcp".
26 func (a *TCPAddr) Network() string { return "tcp" }
55 // The network must be a TCP network name.
66 // See func Dial for a description of the network and address
68 func ResolveTCPAddr(network, address string) (*TCPAddr, error) {
69 switch network {
72 network = "tcp"
74 return nil, UnknownNetworkError(network)
    [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...]
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.
  /system/netd/server/
Network.cpp 17 #include "Network.h"
28 Network::~Network() {
30 ALOGE("deleting network with netId %u without clearing its interfaces", mNetId);
34 unsigned Network::getNetId() const {
38 bool Network::hasInterface(const std::string& interface) const {
42 const std::set<std::string>& Network::getInterfaces() const {
46 int Network::clearInterfaces() {
58 std::string Network::toString() const {
90 Network::Network(unsigned netId) : mNetId(netId)
    [all...]
Network.h 28 // A Network represents a collection of interfaces participating as a single administrative unit.
29 class Network {
38 // You MUST ensure that no interfaces are still assigned to this network, say by calling
41 virtual ~Network();
57 explicit Network(unsigned netId);
  /external/tensorflow/tensorflow/contrib/eager/python/
network.py 15 """A Network is a composition of Layers."""
35 # Explanation for protected-access disable: Network has lots of same-class and
43 Used in Networks and also applied to non-Network Layers which are added to
54 class Network(base.Layer):
57 `Network` implements the `Layer` interface and adds convenience methods for
60 `Layer`s (including other `Network`s) should be added via `track_layer`. They
61 can then be used when overriding the `Network.call` method:
64 class TwoLayerNetwork(tfe.Network):
75 After constructing an object and calling the `Network`, a list of variables
76 created by tracked `Layer`s is available via `Network.variables`
    [all...]
  /prebuilts/go/darwin-x86/src/net/rpc/jsonrpc/
all_test.go 319 func (pipeAddr) Network() string {
  /prebuilts/go/linux-x86/src/net/rpc/jsonrpc/
all_test.go 319 func (pipeAddr) Network() string {
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
WiFi2.h 47 // The connection was refused by the Network.
51 // The connection establishment operation failed (i.e, Network is not
168 // Pointer to the AKM suites supported in the wireless network.
172 // Pointer to the cipher suites supported in the wireless network.
182 // Specifies the found wireless network.
184 EFI_80211_NETWORK Network;
186 // Indicates the network quality as a value between 0 to 100, where 100
187 // indicates the highest network quality.
223 // EFI_DEVICE_ERROR: An unexpected network or system error occurred.
245 // Specifies the wireless network to connect to.
    [all...]
  /external/tensorflow/tensorflow/python/keras/_impl/keras/engine/
topology.py 16 """Base layer code and base model (Network) code.
39 from tensorflow.python.layers import network as tf_network
265 # Un-built subclassed network: build it
266 if isinstance(self, Network) and not self.inputs:
465 by `Network` (one layer of abstraction above).
484 (handled by Network), nor weights (handled by `set_weights`).
653 class Network(tf_network.GraphNetwork, Layer):
654 """A Network is a directed acyclic graph of layers.
657 is simply a Network with added training routines.
694 # Graph network
    [all...]
  /frameworks/base/core/java/android/net/
Network.java 49 * Identifies a {@code Network}. This is supplied to applications via
53 * It is used to direct traffic to the given {@code Network}, either on a {@link Socket} basis
57 public class Network implements Parcelable {
64 // Objects used to perform per-network operations such as getSocketFactory
82 // Value used to obfuscate network handle longs.
95 // requests). This only affects DNS queries made using this network object.
106 public Network(int netId) {
113 public Network(Network that) {
119 * resolution is done on this network
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ipxrip.h 26 UCHAR Network[4];
stm.h 15 UCHAR Network[4];

Completed in 384 milliseconds

1 2 3 4 5 6 7 8 9