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

1 2 3 4 5 6 7 8

  /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
pipe.go 14 // network connection; both ends implement the Conn interface.
32 func (pipeAddr) Network() string {
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" }
65 // "ipv6-host%zone" and resolves the domain name on the network net,
91 // for IP network connections.
194 // DialIP connects to the remote address raddr on the network protocol
udpsock.go 28 // Network returns the address's network name, "udp".
29 func (a *UDPAddr) Network() string { return "udp" }
58 // port name on the network net, which must be "udp", "udp4" or
81 // for UDP network connections.
187 // DialUDP connects to the remote address raddr on the network net,
231 // Network must be "udp", "udp4" or "udp6".
240 func ListenMulticastUDP(network string, ifi *Interface, gaddr *UDPAddr) (*UDPConn, error) {
241 switch network {
244 return nil, &OpError{Op: "listen", Net: network, Source: nil, Addr: gaddr.opAddr(), Err: UnknownNetworkError(network)
    [all...]
tcpsock.go 25 // Network returns the address's network name, "tcp".
26 func (a *TCPAddr) Network() string { return "tcp" }
55 // port name on the network net, which must be "tcp", "tcp4" or
77 // TCPConn is an implementation of the Conn interface for TCP network
184 // DialTCP connects to the remote address raddr on the network net,
203 // TCPListener is a TCP network listener. Clients should typically
247 // Addr returns the listener's network address, a *TCPAddr.
unixsock.go 21 // Network returns the address's network name, "unix", "unixgram" or
23 func (a *UnixAddr) Network() string {
46 // The string net gives the network name, "unix", "unixgram" or
190 // DialUnix connects to the remote address raddr on the network net,
256 // Addr returns the listener's network address.
292 // Unix listener. The network net must be "unix" or "unixpacket".
310 // to the local address laddr. The network net must be "unixgram".
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/
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
pipe.go 14 // network connection; both ends implement the Conn interface.
32 func (pipeAddr) Network() string {
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" }
65 // "ipv6-host%zone" and resolves the domain name on the network net,
91 // for IP network connections.
194 // DialIP connects to the remote address raddr on the network protocol
udpsock.go 28 // Network returns the address's network name, "udp".
29 func (a *UDPAddr) Network() string { return "udp" }
58 // port name on the network net, which must be "udp", "udp4" or
81 // for UDP network connections.
187 // DialUDP connects to the remote address raddr on the network net,
231 // Network must be "udp", "udp4" or "udp6".
240 func ListenMulticastUDP(network string, ifi *Interface, gaddr *UDPAddr) (*UDPConn, error) {
241 switch network {
244 return nil, &OpError{Op: "listen", Net: network, Source: nil, Addr: gaddr.opAddr(), Err: UnknownNetworkError(network)
    [all...]
tcpsock.go 25 // Network returns the address's network name, "tcp".
26 func (a *TCPAddr) Network() string { return "tcp" }
55 // port name on the network net, which must be "tcp", "tcp4" or
77 // TCPConn is an implementation of the Conn interface for TCP network
184 // DialTCP connects to the remote address raddr on the network net,
203 // TCPListener is a TCP network listener. Clients should typically
247 // Addr returns the listener's network address, a *TCPAddr.
unixsock.go 21 // Network returns the address's network name, "unix", "unixgram" or
23 func (a *UnixAddr) Network() string {
46 // The string net gives the network name, "unix", "unixgram" or
190 // DialUnix connects to the remote address raddr on the network net,
256 // Addr returns the listener's network address.
292 // Unix listener. The network net must be "unix" or "unixpacket".
310 // to the local address laddr. The network net must be "unixgram".
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.
  /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);
  /prebuilts/go/darwin-x86/src/net/rpc/jsonrpc/
all_test.go 261 func (pipeAddr) Network() string {
  /prebuilts/go/linux-x86/src/net/rpc/jsonrpc/
all_test.go 261 func (pipeAddr) Network() string {
  /frameworks/base/core/java/android/net/
Network.java 51 * Identifies a {@code Network}. This is supplied to applications via
55 * It is used to direct traffic to the given {@code Network}, either on a {@link Socket} basis
59 public class Network implements Parcelable {
66 // Objects used to perform per-network operations such as getSocketFactory
89 public Network(int netId) {
96 public Network(Network that) {
102 * resolution is done on this network.
114 * resolution is done on this network.
127 * A {@code SocketFactory} that produces {@code Socket}'s bound to 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];
atalkwsh.h 66 USHORT Network;
  /external/webrtc/webrtc/base/
network.h 35 class Network;
52 // Makes a string key for this network. Used in the network manager's maps.
53 // Network objects are keyed on interface name, network prefix and the
67 // Generic network manager interface. It provides list of local
71 typedef std::vector<Network*> NetworkList;
75 ENUMERATION_ALLOWED, // Adapter enumeration is allowed. Getting 0 network
76 // from GetNetworks means that there is no network
85 // Called when network list is updated
    [all...]
network.cc 15 #include "webrtc/base/network.h"
65 Network* net;
69 bool CompareNetworks(const Network* a, const Network* b) {
78 bool SortNetworks(const Network* a, const Network* b) {
79 // Network types will be preferred above everything else while sorting
200 new rtc::Network("any", "any", ipv4_any_address, 0));
210 new rtc::Network("any", "any", ipv6_any_address, 0));
221 for (Network* network : networks_)
570 scoped_ptr<Network> network; local
    [all...]

Completed in 249 milliseconds

1 2 3 4 5 6 7 8