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

1 2

  /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);
  /frameworks/volley/src/com/android/volley/
Network.java 22 public interface Network {
  /external/chromium_org/chrome/common/mac/
launchd.h 25 Network = 4, // /Network/Library/Launch*
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
portproxy.cc 45 talk_base::Network* PortProxy::Network() const {
47 return impl_->Network();
port.h 36 #include "talk/base/network.h"
119 talk_base::Network* network, const talk_base::IPAddress& ip,
123 talk_base::Network* network, const talk_base::IPAddress& ip,
129 virtual talk_base::Network* Network() const { return network_; }
355 talk_base::Network* network_;
  /external/chromium_org/third_party/libjingle/source/talk/base/
network.h 47 class Network;
59 // Makes a string key for this network. Used in the network manager's maps.
60 // Network objects are keyed on interface name, network prefix and the
65 // Generic network manager interface. It provides list of local
69 typedef std::vector<Network*> NetworkList;
74 // Called when network list is updated.
77 // Indicates a failure when getting list of network interfaces.
80 // Start/Stop monitoring of network interface
    [all...]
network.cc 32 #include "talk/base/network.h"
85 bool CompareNetworks(const Network* a, const Network* b) {
94 bool SortNetworks(const Network* a, const Network* b) {
95 // Network types will be preferred above everything else while sorting
165 typedef std::pair<Network*, std::vector<IPAddress> > address_list;
176 // First, build a set of network-keys to the ipaddresses.
198 // Next, look for existing network objects to re-use.
203 Network* net = it->second.first
427 scoped_ptr<Network> network; local
612 const Network* network = list[i]; 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.cc 15 #include "webrtc/base/network.h"
68 bool CompareNetworks(const Network* a, const Network* b) {
77 bool SortNetworks(const Network* a, const Network* b) {
78 // Network types will be preferred above everything else while sorting
148 typedef std::pair<Network*, std::vector<IPAddress> > address_list;
159 // First, build a set of network-keys to the ipaddresses.
181 // Next, look for existing network objects to re-use.
186 Network* net = it->second.first
410 scoped_ptr<Network> network; local
595 const Network* network = list[i]; local
    [all...]
  /frameworks/base/core/java/android/net/
Network.java 45 * Identifies a {@code Network}. This is supplied to applications via
49 * It is used to direct traffic to the given {@code Network}, either on a {@link Socket} basis
53 public class Network implements Parcelable {
60 // Objects used to perform per-network operations such as getSocketFactory
83 public Network(int netId) {
90 public Network(Network that) {
96 * resolution is done on this network.
108 * resolution is done on this network.
121 * 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;
ipxrtdef.h 68 UCHAR Network[4];
109 UCHAR Network[4];
114 UCHAR Network[4];
187 UCHAR Network[4];
devicetopology.h 312 Network = 5
    [all...]
routprot.h 150 UCHAR Network[4];
tdi.h 397 USHORT Network;
wlanapi.h 172 WLAN_AVAILABLE_NETWORK Network[1];
446 DOT11_NETWORK Network[1];
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/extensions/
ExtensionAPI.js 64 NetworkRequestFinished: "network-request-finished",
190 this.network = new Network();
191 defineDeprecatedProperty(this, "webInspector", "resources", "network");
224 function Network()
236 defineDeprecatedProperty(this, "network", "onFinished", "onRequestFinished");
240 Network.prototype = {
1015 chrome.devtools.network = coreAPI.network;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
ConsoleModel.js 365 Network: "network",
Workspace.js 528 Network: "network",
584 var projects = this.projectsForType(WebInspector.projectTypes.Network);
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsBackupAgent.java 136 // Class for capturing a network definition from the wifi supplicant config file
137 static class Network {
143 public static Network readFromStream(BufferedReader in) {
144 final Network n = new Network();
189 Log.v(TAG, "network={");
200 if (!(o instanceof Network)) return false;
201 final Network other;
203 other = (Network) o;
219 // Ingest multiple wifi config file fragments, looking for network={} block
    [all...]
  /frameworks/base/services/core/java/com/android/server/
ConnectivityService.java 69 import android.net.Network;
193 // network sampling debugging
198 // TODO: create better separation between radio types and network types
200 // how long to wait before switching back to a radio's default network
219 // Set network sampling interval at 12 minutes, this way, even if the timers get
224 // start network sampling a minute after booting ...
245 /** Currently active network rules by UID. */
251 * Sometimes we want to refer to the individual network state
285 * network - EVENT_EXPIRE_NET_TRANSITION_WAKELOCK happens
286 * after a timeout if no network is found (typically 1 min)
    [all...]
  /developers/build/prebuilts/gradle/ActivitySceneTransitionBasic/Application/libs/
volley.jar 

Completed in 453 milliseconds

1 2