HomeSort by relevance Sort by last modified time
    Searched refs:Network (Results 26 - 50 of 92) sorted by null

12 3 4

  /external/chromium/third_party/libjingle/source/talk/p2p/base/
relayport.h 58 talk_base::Network* network, uint32 ip, int min_port, int max_port,
61 return new RelayPort(thread, factory, network, ip, min_port, max_port,
88 talk_base::Network*, uint32 ip, int min_port, int max_port,
stunport.h 51 talk_base::Network* network,
54 StunPort* port = new StunPort(thread, factory, network,
87 talk_base::Network* network, uint32 ip, int min_port, int max_port,
tcpport.h 52 talk_base::Network* network,
55 TCPPort* port = new TCPPort(thread, factory, network,
75 talk_base::Network* network, uint32 ip, int min_port, int max_port,
udpport.cc 40 talk_base::Network* network,
42 : Port(thread, LOCAL_PORT_TYPE, factory, network, ip, min_port, max_port),
port.h 35 #include "talk/base/network.h"
79 talk_base::PacketSocketFactory* factory, talk_base::Network* network,
119 // Identifies network that this port was allocated on.
120 talk_base::Network* network() { return network_; } function in class:cricket::Port
243 talk_base::Network* network_;
  /external/jmonkeyengine/engine/src/test/jme3test/network/
TestLatency.java 33 package jme3test.network;
35 import com.jme3.network.*;
36 import com.jme3.network.serializing.Serializable;
37 import com.jme3.network.serializing.Serializer;
75 Server server = Network.createServer(5110);
78 client = Network.connectToServer("localhost", 5110);
TestSerialization.java 33 package jme3test.network;
35 import com.jme3.network.*;
36 import com.jme3.network.serializing.Serializable;
37 import com.jme3.network.serializing.Serializer;
146 Server server = Network.createServer( 5110 );
149 Client client = Network.connectToServer( "localhost", 5110 );
TestChatServer.java 32 package jme3test.network;
34 import com.jme3.network.*;
35 import com.jme3.network.serializing.Serializable;
36 import com.jme3.network.serializing.Serializer;
64 Server server = Network.createServer(NAME, VERSION, PORT, UDP_PORT);
TestChatClient.java 32 package jme3test.network;
34 import com.jme3.network.Client;
35 import com.jme3.network.Message;
36 import com.jme3.network.MessageListener;
37 import com.jme3.network.Network;
43 import jme3test.network.TestChatServer.ChatMessage;
90 client = Network.connectToServer(TestChatServer.NAME, TestChatServer.VERSION,
  /frameworks/support/volley/src/com/android/volley/
NetworkDispatcher.java 24 * Provides a thread for performing network dispatch from a queue of requests.
26 * Requests added to the specified queue are processed from the network via a
27 * specified {@link Network} interface. Responses are committed to cache, if
35 /** The network interface for processing requests. */
36 private final Network mNetwork;
45 * Creates a new network dispatcher thread. You must call {@link #start()}
49 * @param network Network interface to use for performing requests
54 Network network, Cache cache
    [all...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/devices/
Hardware.java 31 private Set<Network> mNetworking = new HashSet<Network>();
47 public Set<Network> getNetworking() {
51 public void addNetwork(Network n) {
55 public void addAllNetworks(Collection<Network> ns) {
225 hw.mNetworking = new HashSet<Network>(mNetworking);
289 for (Network n : mNetworking) {
  /external/chromium/chrome/browser/chromeos/status/
network_menu.h 41 // IP address (if network is active, empty otherwise)
45 // true if the network requires a passphrase.
47 // true if the network is currently remembered.
49 // true if the network is auto connect (meaningful for Wifi only).
56 // Connect or reconnect to the network at |index|.
57 // If remember >= 0, set the favorite state of the network.
165 // Menu for network menu button in the status area/welcome screen.
167 // It will also handle connecting to another wifi/cellular network.
169 // The network menu looks like this:
172 // <icon> Wifi Network
    [all...]
  /external/chromium/chrome/browser/chromeos/cros/
cros_library.cc 66 DEFINE_GET_LIBRARY_METHOD(Network, network);
123 DEFINE_SET_LIBRARY_METHOD(Network, network);
network_library.h 71 // Network enums (see flimflam/include/network.h)
176 // Cellular network is considered low data when less than 60 minues.
179 // Cellular network is considered low data when less than 30 minues.
182 // Cellular network is considered low data when less than 100MB.
185 // Cellular network is considered very low data when less than 50MB.
273 // Contains data common to all network service types.
274 class Network {
276 virtual ~Network() {}
295 // Is this network connectable. Currently, this is mainly used by 802.1
    [all...]
network_library.cc 32 // NetworkLibraryImpl manages a series of classes that describe network devices
38 // Network: a network service ("network").
39 // network_map_: canonical map<path,Network*> for all visible networks.
41 // ethernet_: EthernetNetwork* to the active ethernet network in network_map_.
42 // WirelessNetwork: a Wifi or Cellular Network.
44 // active_wifi_: WifiNetwork* to the active wifi network in network_map_.
50 // network_unique_id_map_: map<unique_id,Network*> for visible networks.
51 // remembered_network_map_: a canonical map<path,Network*> for all network
2404 Network* network = FindNetworkByPath(path); local
2412 Network* network = FindNetworkByPath(path); local
2420 Network* network = FindNetworkByPath(path); local
2428 Network* network = FindNetworkByPath(path); local
2641 Network* network = networklib->FindNetworkByPath(path); local
2754 Network* network = local
2829 Network* network = local
3407 Network* network = found->second; local
3481 Network* network = FindNetworkFromRemembered(remembered_network); local
3580 Network* network = found->second; local
3629 Network* network = FindNetworkByPath(service_path); local
3671 Network* network; local
    [all...]
  /external/chromium/chrome/browser/ui/webui/options/chromeos/
internet_options_handler.h 41 const chromeos::Network* network);
55 // Passes data needed to show details overlay for network.
60 // network item and a cellular network item respectively.
92 void PopulateDictionaryDetails(const chromeos::Network* net,
106 // Creates the map of a network.
124 // Fills network information into JS dictionary for displaying network lists.
127 // Refreshes the display of network information
    [all...]
  /external/webkit/Source/WebCore/inspector/
InspectorResourceAgent.h 134 InspectorFrontend::Network* m_frontend;
135 OwnPtr<InspectorFrontend::Network> m_mockFrontend;
  /external/webkit/Source/WebCore/platform/network/cf/
ResourceHandleCFNet.cpp 141 LOG(Network, "CFNet - willSendRequest(conn=%p, handle=%p) (%s)", conn, handle, handle->firstRequest().url().string().utf8().data());
188 LOG(Network, "CFNet - didReceiveResponse(conn=%p, handle=%p) (%s)", conn, handle, handle->firstRequest().url().string().utf8().data());
208 LOG(Network, "CFNet - didReceiveData(conn=%p, handle=%p, bytes=%d) (%s)", conn, handle, length, handle->firstRequest().url().string().utf8().data());
226 LOG(Network, "CFNet - shouldUseCredentialStorage(conn=%p, handle=%p) (%s)", conn, handle, handle->firstRequest().url().string().utf8().data());
238 LOG(Network, "CFNet - didFinishLoading(conn=%p, handle=%p) (%s)", conn, handle, handle->firstRequest().url().string().utf8().data());
248 LOG(Network, "CFNet - didFail(conn=%p, handle=%p, error = %p) (%s)", conn, handle, error, handle->firstRequest().url().string().utf8().data());
281 LOG(Network, "CFNet - didReceiveChallenge(conn=%p, handle=%p (%s)", conn, handle, handle->firstRequest().url().string().utf8().data());
304 LOG(Network, "CFNet - Cancelling connection %p (%s)", m_connection, m_firstRequest.url().string().utf8().data());
311 LOG(Network, "CFNet - Destroying job %p (%s)", this, d->m_firstRequest.url().string().utf8().data());
455 LOG(Network, "CFNet - Starting URL %s (handle=%p, conn=%p)", firstRequest().url().string().utf8().data(), this (…)
    [all...]
  /external/chromium/chrome/common/
launchd_mac.h 25 Network = 4, // /Network/Library/Launch*
  /tools/motodev/src/plugins/emulator/
plugin.properties 119 StartUp_Options_NetDelay_Label=Network Latency
120 StartUp_Options_NetDelay_Description=Set network latency emulation
121 StartUp_Options_NetSpeed_Label=Network Speed
122 StartUp_Options_NetSpeed_Description=Set network speed emulation
125 StartUp_Options_NetFast_Label=Max Network Speed / Min Network Latency
137 StartUp_Network_Tab_Label=Network
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsBackupAgent.java 135 // Class for capturing a network definition from the wifi supplicant config file
136 static class Network {
141 public static Network readFromStream(BufferedReader in) {
142 final Network n = new Network();
181 Log.v(TAG, "network={");
192 if (!(o instanceof Network)) return false;
193 final Network other;
195 other = (Network) o;
211 // Ingest multiple wifi config file fragments, looking for network={} block
    [all...]
  /external/webkit/Source/WebCore/platform/network/mac/
ResourceHandleMac.mm 181 LOG(Network, "Handle %p destroyed", this);
356 LOG(Network, "Handle %p starting connection %p for %@", this, connection(), firstRequest().nsURLRequest());
372 LOG(Network, "Handle %p cancel connection %p", this, d->m_connection.get());
495 LOG(Network, "ResourceHandle::loadResourceSynchronously:%@ allowStoredCredentials:%u", request.nsURLRequest(), storedCredentials);
780 LOG(Network, "Handle %p delegate connection:%p willSendRequest:%@ redirectResponse:%d, Location:<%@>", m_handle, connection, [newRequest description], static_cast<int>([(id)redirectResponse statusCode]), [[(id)redirectResponse allHeaderFields] objectForKey:@"Location"]);
782 LOG(Network, "Handle %p delegate connection:%p willSendRequest:%@ redirectResponse:non-HTTP", m_handle, connection, [newRequest description]);
830 LOG(Network, "Handle %p delegate connectionShouldUseCredentialStorage:%p", m_handle, connection);
843 LOG(Network, "Handle %p delegate connection:%p didReceiveAuthenticationChallenge:%p", m_handle, connection, challenge);
855 LOG(Network, "Handle %p delegate connection:%p didCancelAuthenticationChallenge:%p", m_handle, connection, challenge);
    [all...]
  /external/chromium/chrome/browser/chromeos/
network_message_observer.cc 163 bool NetworkMessageObserver::CheckNetworkFailed(const Network* network) {
164 if (network->failed()) {
166 network_states_.find(network->service_path());
167 // If the network did not previously exist, then don't do anything.
172 // If network connection failed, display a notification.
174 // So if a previously connected network got disconnected for any reason,
177 if (Network::IsConnectingState(prev_state))
184 const Network* new_failed_network = NULL;
191 break; // There should only be one failed network
    [all...]
  /sdk/sdkmanager/libs/sdklib/tests/src/com/android/sdklib/devices/
DeviceParserTest.java 73 Set<Network> networks = hw.getNetworking();
74 assertTrue(networks.contains(Network.BLUETOOTH));
75 assertTrue(networks.contains(Network.WIFI));
76 assertTrue(networks.contains(Network.NFC));
  /external/chromium/chrome/browser/chromeos/options/
network_config_view.cc 30 NetworkConfigView::NetworkConfigView(Network* network)
33 if (network->type() == TYPE_WIFI) {
35 new WifiConfigView(this, static_cast<WifiNetwork*>(network));
36 } else if (network->type() == TYPE_VPN) {
38 new VPNConfigView(this, static_cast<VirtualNetwork*>(network));

Completed in 753 milliseconds

12 3 4