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

1 2 3 4 5 6 7

  /frameworks/base/core/java/android/net/
Network.aidl 20 parcelable Network;
Network.java 48 * Identifies a {@code Network}. This is supplied to applications via
52 * It is used to direct traffic to the given {@code Network}, either on a {@link Socket} basis
56 public class Network implements Parcelable {
63 // Objects used to perform per-network operations such as getSocketFactory
86 public Network(int netId) {
93 public Network(Network that) {
99 * resolution is done on this network.
111 * resolution is done on this network.
124 * A {@code SocketFactory} that produces {@code Socket}'s bound to this network
    [all...]
IConnectivityManager.aidl 21 import android.net.Network;
40 * state of network connectivity.
48 NetworkInfo getNetworkInfoForNetwork(in Network network);
50 Network getNetworkForType(int networkType);
51 Network[] getAllNetworks();
60 LinkProperties getLinkProperties(in Network network);
62 NetworkCapabilities getNetworkCapabilities(in Network network);
    [all...]
BaseNetworkStateTracker.java 28 * Interface to control and observe state of a specific network, hiding
29 * network-specific details from {@link ConnectivityManager}. Surfaces events
48 protected Network mNetwork = new Network(ConnectivityManager.NETID_UNSET);
174 // not supported on this network
198 mNetwork = new Network(netId);
202 public Network getNetwork() {
ConnectivityManager.java 56 * Class that answers queries about the state of network connectivity. It also
57 * notifies applications when network connectivity changes. Get an instance
63 * <li>Monitor network connections (Wi-Fi, GPRS, UMTS, etc.)</li>
64 * <li>Send broadcast intents when network connectivity changes</li>
65 * <li>Attempt to "fail over" to another network when connectivity to a network
77 * A change in network connectivity has occurred. A default connection has either
78 * been established or lost. The NetworkInfo for the affected network is
83 * disconnected network, then the FAILOVER_CONNECTION boolean extra is
87 * to connect (or has already connected) to another network, th
1780 final Network network = getProcessDefaultNetwork(); local
2201 Network network = (Network)getObject(message, Network.class); local
2216 Network network = (Network)getObject(message, Network.class); local
    [all...]
  /system/netd/server/
Network.cpp 17 #include "Network.h"
22 Network::~Network() {
24 ALOGE("deleting network with netId %u without clearing its interfaces", mNetId);
28 unsigned Network::getNetId() const {
32 bool Network::hasInterface(const std::string& interface) const {
36 const std::set<std::string>& Network::getInterfaces() const {
40 int Network::clearInterfaces() {
52 Network::Network(unsigned netId) : mNetId(netId)
    [all...]
Network.h 25 // A Network represents a collection of interfaces participating as a single administrative unit.
26 class Network {
34 // You MUST ensure that no interfaces are still assigned to this network, say by calling
37 virtual ~Network();
51 explicit Network(unsigned netId);
LocalNetwork.cpp 24 LocalNetwork::LocalNetwork(unsigned netId) : Network(netId) {
30 Network::Type LocalNetwork::getType() const {
LocalNetwork.h 20 #include "Network.h"
22 class LocalNetwork : public Network {
VirtualNetwork.h 20 #include "Network.h"
26 // Only a few privileged UIDs may skip the VPN and go directly to the underlying physical network.
29 // permitted to skip it and pick any other network for their connections.
30 class VirtualNetwork : public Network {
PhysicalNetwork.h 20 #include "Network.h"
23 class PhysicalNetwork : public Network {
38 // These refer to permissions that apps must have in order to use this network.
  /frameworks/volley/src/com/android/volley/
Network.java 22 public interface Network {
  /external/chromium_org/components/metrics/net/
network_metrics_provider.cc 45 SystemProfileProto::Network* network = system_profile->mutable_network(); local
46 network->set_connection_type_is_ambiguous(connection_type_is_ambiguous_);
47 network->set_connection_type(GetConnectionType());
48 network->set_wifi_phy_layer_protocol_is_ambiguous(
50 network->set_wifi_phy_layer_protocol(GetWifiPHYLayerProtocol());
71 WriteWifiAccessPointProto(info, network);
87 SystemProfileProto::Network::ConnectionType
92 return SystemProfileProto::Network::CONNECTION_UNKNOWN;
94 return SystemProfileProto::Network::CONNECTION_ETHERNET
    [all...]
network_metrics_provider.h 18 // the network environment.
24 // network info collection tasks.
38 metrics::SystemProfileProto::Network::ConnectionType
40 metrics::SystemProfileProto::Network::WifiPHYLayerProtocol
53 metrics::SystemProfileProto::Network* network_proto);
  /external/chromium_org/remoting/test/
fake_network_manager.h 10 #include "third_party/webrtc/base/network.h"
30 scoped_ptr<rtc::Network> network_;
fake_network_manager.cc 18 network_.reset(new rtc::Network("fake", "Fake Network", address, 32));
  /external/chromium_org/content/renderer/p2p/
ipc_network_manager.cc 70 // Update flag if network list received for the first time.
74 // rtc::Network uses these prefix_length to compare network
76 std::vector<rtc::Network*> networks;
87 rtc::Network* network = local
88 new rtc::Network(it->name,
93 network->AddIP(rtc::IPAddress(address));
94 networks.push_back(network);
103 rtc::Network* network local
    [all...]
  /external/chromium_org/third_party/webrtc/base/
network.h 30 class Network;
42 // Makes a string key for this network. Used in the network manager's maps.
43 // Network objects are keyed on interface name, network prefix and the
48 // Generic network manager interface. It provides list of local
52 typedef std::vector<Network*> NetworkList;
57 // Called when network list is updated.
60 // Indicates a failure when getting list of network interfaces.
63 // Start/Stop monitoring of network interface
    [all...]
network_unittest.cc 11 #include "webrtc/base/network.h"
44 const Network& network) {
45 return network_manager.IsIgnoredNetwork(network);
69 // Test that the Network ctor works properly.
71 Network ipv4_network1("test_eth0", "Test Network Adapter 1",
74 EXPECT_EQ("Test Network Adapter 1", ipv4_network1.description());
82 Network ipv4_network1("test_eth0", "Test Network Adapter 1"
    [all...]
fakenetwork.h 17 #include "webrtc/base/network.h"
28 // Fake network manager that allows us to manually specify the IPs to use.
85 std::vector<Network*> networks;
95 scoped_ptr<Network> net(new Network(it->hostname(),
  /frameworks/volley/tests/src/com/android/volley/mock/
MockNetwork.java 19 import com.android.volley.Network;
25 public class MockNetwork implements Network {
  /external/chromium_org/third_party/WebKit/Source/platform/network/
SocketStreamHandle.cpp 32 #include "platform/network/SocketStreamHandle.h"
35 #include "platform/network/SocketStreamError.h"
36 #include "platform/network/SocketStreamHandleClient.h"
37 #include "platform/network/SocketStreamHandleInternal.h"
65 WTF_LOG(Network, "SocketStreamHandleInternal %p connect()", this);
73 WTF_LOG(Network, "SocketStreamHandleInternal %p send() len=%d", this, len);
78 WTF_LOG(Network, "SocketStreamHandleInternal %p send() m_socket is NULL", this);
89 WTF_LOG(Network, "SocketStreamHandleInternal %p send() Sent %d bytes", this, len);
92 WTF_LOG(Network, "SocketStreamHandleInternal %p send() m_socket->send() failed", this);
98 WTF_LOG(Network, "SocketStreamHandleInternal %p close()", this)
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
portproxy.h 35 class Network;
49 virtual rtc::Network* Network() const;
portinterface.h 37 class Network;
61 virtual rtc::Network* Network() const = 0;
  /external/chromium_org/remoting/client/plugin/
pepper_network_manager.cc 66 // Convert the networks to rtc::Network.
67 std::vector<rtc::Network*> networks;
87 rtc::Network* network = new rtc::Network( local
89 network->AddIP(address.ipaddr());
90 networks.push_back(network);

Completed in 1338 milliseconds

1 2 3 4 5 6 7