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

1 2 3 4 5 6 7

  /frameworks/volley/src/com/android/volley/
Network.java 22 public interface Network {
  /external/chromium_org/chrome/browser/metrics/
metrics_network_observer.cc 46 SystemProfileProto::Network::ConnectionType
51 return SystemProfileProto::Network::CONNECTION_UNKNOWN;
53 return SystemProfileProto::Network::CONNECTION_ETHERNET;
55 return SystemProfileProto::Network::CONNECTION_WIFI;
57 return SystemProfileProto::Network::CONNECTION_2G;
59 return SystemProfileProto::Network::CONNECTION_3G;
61 return SystemProfileProto::Network::CONNECTION_4G;
64 return SystemProfileProto::Network::CONNECTION_UNKNOWN;
67 SystemProfileProto::Network::WifiPHYLayerProtocol
71 return SystemProfileProto::Network::WIFI_PHY_LAYER_PROTOCOL_NONE
    [all...]
metrics_network_observer.h 18 // the network environment.
36 SystemProfileProto::Network::ConnectionType connection_type() const;
42 SystemProfileProto::Network::WifiPHYLayerProtocol
  /external/chromium/third_party/libjingle/source/talk/base/
network.h 40 class Network;
43 // Keeps track of the available network interfaces over time so that quality
51 // a given network, so that quality is tracked appropriately.
53 bool GetNetworks(std::vector<Network*>* networks);
62 // Creates a network object for each network available on the machine.
64 std::vector<Network*>* networks);
65 // Determines if a network should be ignored.
66 static bool IsIgnoredNetwork(const Network& network);
    [all...]
network.cc 32 #include "talk/base/network.h"
142 bool NetworkManager::GetNetworks(std::vector<Network*>* result) {
143 std::vector<Network*> list;
151 Network* network; local
153 network = list[i];
155 network = iter->second;
156 network->set_ip(list[i]->ip());
157 network->set_gateway_ip(list[i]->gateway_ip());
161 networks_[network->name()] = network
172 const Network* network = list[i]; local
201 Network* network = new Network(name, "", 0, 0); local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
network.h 47 class Network;
51 // Generic network manager interface. It provides list of local
55 typedef std::vector<Network*> NetworkList;
60 // Called when network list is updated.
63 // Indicates a failure when getting list of network interfaces.
66 // Start/Stop monitoring of network interfaces
76 // given network, so that quality is tracked appropriately. Does not
90 virtual void GetNetworks(std::vector<Network*>* networks) const;
95 typedef std::map<std::string, Network*> NetworkMap;
97 // |network_map_| already has a Network object for a network liste
    [all...]
network_unittest.cc 28 #include "talk/base/network.h"
57 bool IsIgnoredNetwork(const Network& network) {
58 return BasicNetworkManager::IsIgnoredNetwork(network);
82 // Test that the Network ctor works properly.
84 Network ipv4_network1("test_eth0", "Test Network Adapter 1",
87 EXPECT_EQ("Test Network Adapter 1", ipv4_network1.description());
95 Network ipv4_network1("test_eth0", "Test Network Adapter 1"
    [all...]
fakenetwork.h 34 #include "talk/base/network.h"
45 // Fake network manager that allows us to manually specify the IPs to use.
102 std::vector<Network*> networks;
112 scoped_ptr<Network> net(new Network(it->hostname(),
  /external/chromium_org/jingle/glue/
fake_network_manager.h 14 #include "third_party/libjingle/source/talk/base/network.h"
34 scoped_ptr<talk_base::Network> network_;
  /external/chromium_org/chrome/browser/chromeos/cros/
network_parser.h 25 // then customize its methods to parse either Shill data or network setup
48 // network device if appropriate.
66 // dictionary to create Network (WiFiNetwork, EthernetNetwork, etc.)
73 // Called when a new network is encountered. In addition to setting the
74 // members on the Network object, the Network's property_map_ variable
77 virtual Network* CreateNetworkFromInfo(const std::string& service_path,
80 // Called when an existing network is has new information that needs
81 // to be updated. Network's property_map_ variable will be updated.
84 Network* network)
    [all...]
network_library_impl_stub.h 31 virtual void CallConnectToNetwork(Network* network) OVERRIDE;
46 virtual void CallRemoveNetwork(const Network* network) OVERRIDE;
67 virtual void DisconnectFromNetwork(const Network* network) OVERRIDE;
85 // network's service path which is mapped to the Shill dictionary.
92 void AddStubNetwork(Network* network, NetworkProfileType profile_type);
93 void AddStubRememberedNetwork(Network* network)
    [all...]
network_library_impl_base.h 12 #include "chromeos/network/onc/onc_constants.h"
31 // Calls ConnectToWifiNetworkUsingConnectData if network request succeeds.
35 // Calls ConnectToVirtualNetworkUsingConnectData if network request succeeds.
46 virtual void CallConnectToNetwork(Network* network) = 0;
58 virtual void CallRemoveNetwork(const Network* network) = 0;
116 virtual const Network* active_network() const OVERRIDE;
117 virtual const Network* active_nonvirtual_network() const OVERRIDE;
118 virtual const Network* connected_network() const OVERRIDE
    [all...]
native_network_parser.h 21 // This is the network device parser that parses the data from the
22 // network stack on the native platform. Currently it parses
37 // Parsing helper routines specific to native network devices.
55 // This is the network parser that parses the data from the network
69 virtual Network* CreateNewNetwork(ConnectionType type,
73 Network* network) OVERRIDE;
85 // Below are specific types of network parsers.
103 Network* network) OVERRIDE
    [all...]
network_library.cc 20 #include "chromeos/network/certificate_pattern.h"
21 #include "chromeos/network/client_cert_util.h"
22 #include "chromeos/network/cros_network_functions.h"
23 #include "chromeos/network/network_state_handler.h"
24 #include "chromeos/network/onc/onc_utils.h"
36 // NetworkLibraryImpl manages a series of classes that describe network devices
42 // Network: a network service ("network").
43 // network_map_: canonical map<path, Network*> for all visible networks
513 Network* network = local
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/network/
TestNetworkStress.java 33 package jme3test.network;
35 import com.jme3.network.*;
53 Server server = Network.createServer(5110);
58 Client client = Network.connectToServer("localhost", 5110);
  /frameworks/volley/tests/src/com/android/volley/mock/
MockNetwork.java 19 import com.android.volley.Network;
25 public class MockNetwork implements Network {
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
udpport.h 37 class Network;
50 talk_base::Network* network,
52 UDPPort* port = new UDPPort(thread, factory, network,
71 talk_base::Network* network, uint32 ip, int min_port, int max_port);
  /external/chromium_org/chrome/browser/chromeos/net/
network_change_notifier_network_library.h 30 // Initializes the network change notifier. Starts to observe changes
31 // from the power manager and the network manager.
34 // Shutdowns the network change notifier. Stops observing changes from
35 // the power manager and the network manager.
55 const chromeos::Network* network) OVERRIDE;
64 // Initiates an update of data members that keep the track the network stack
67 // Called when a network state update has completed. Updates data members that
68 // keep the track the network stack state.
72 // Updates network connectivity state
    [all...]
  /external/chromium_org/content/renderer/p2p/
ipc_network_manager.cc 45 // Update flag if network list received for the first time.
49 std::vector<talk_base::Network*> networks;
57 talk_base::Network* network = new talk_base::Network( local
59 network->AddIP(talk_base::IPAddress(address));
60 networks.push_back(network);
  /external/chromium_org/third_party/WebKit/Source/core/platform/network/
SocketStreamHandle.cpp 32 #include "core/platform/network/SocketStreamHandle.h"
36 #include "core/platform/network/SocketStreamError.h"
37 #include "core/platform/network/SocketStreamHandleClient.h"
38 #include "core/platform/network/SocketStreamHandleInternal.h"
64 LOG(Network, "SocketStreamHandleInternal %p connect()", this);
74 LOG(Network, "SocketStreamHandleInternal %p send() len=%d", this, len);
79 LOG(Network, "SocketStreamHandleInternal %p send() m_socket is NULL", this);
90 LOG(Network, "SocketStreamHandleInternal %p send() Sent %d bytes", this, len);
93 LOG(Network, "SocketStreamHandleInternal %p send() m_socket->send() failed", this);
99 LOG(Network, "SocketStreamHandleInternal %p close()", this)
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
portinterface.h 37 class Network;
61 virtual talk_base::Network* Network() const = 0;
portproxy.h 35 class Network;
49 virtual talk_base::Network* Network() const;
stunport.h 49 talk_base::Network* network,
53 UDPPort* port = new UDPPort(thread, network, socket, username, password);
63 talk_base::Network* network,
68 UDPPort* port = new UDPPort(thread, factory, network,
113 talk_base::Network* network, const talk_base::IPAddress& ip,
117 UDPPort(talk_base::Thread* thread, talk_base::Network* network,
    [all...]
  /external/chromium/chrome/browser/chromeos/cros/
mock_network_library.h 70 Network*(const std::string&));
77 MOCK_CONST_METHOD1(FindNetworkFromRemembered,Network*(const Network*));
111 MOCK_METHOD1(DisconnectFromNetwork, void(const Network*));
125 MOCK_CONST_METHOD0(active_network, const Network*(void));
126 MOCK_CONST_METHOD0(connected_network, const Network*(void));
  /external/chromium_org/remoting/client/plugin/
pepper_network_manager.cc 56 std::vector<talk_base::Network*> networks;
68 LOG(ERROR) << "Failed to get address for network interface.";
97 talk_base::Network* network = new talk_base::Network( local
99 network->AddIP(address);
100 networks.push_back(network);

Completed in 772 milliseconds

1 2 3 4 5 6 7