/external/chromium/third_party/libjingle/source/talk/p2p/base/ |
p2ptransportchannel.cc | 544 std::set<talk_base::Network*> networks; 546 networks.insert(connections_[i]->port()->network()); 564 // the same network with better or equal prefences. We leave those with 569 std::set<talk_base::Network*>::iterator network; local 570 for (network = networks.begin(); network != networks.end(); ++network) { 571 Connection* primier = GetBestConnectionOnNetwork(*network); 577 (connections_[i]->port()->network() == *network) & [all...] |
/external/wpa_supplicant_8/wpa_supplicant/dbus/ |
dbus_old.c | 26 * @network: (out) the configured network this object path refers to, if any 28 * Returns: The object path of the network interface this path refers to 30 * For a given object path, decomposes the object path into object id, network, 33 char * wpas_dbus_decompose_object_path(const char *path, char **network, 61 if (network && net_part) { 62 /* Deal with a request for a configured network */ 65 *network = NULL; 67 *network = os_strdup(net_name); 102 * wpas_dbus_new_invalid_network_error - Return a new invalid network error messag 211 char *network = NULL; local [all...] |
dbus_old.h | 26 #define WPAS_DBUS_IFACE_NETWORK WPAS_DBUS_INTERFACE ".Network" 84 char * wpas_dbus_decompose_object_path(const char *path, char **network,
|
/external/chromium/chrome/browser/resources/ |
network_menu.js | 6 // Network status constants. 45 networkMenuItem.innerHTML = '<div class="network-menu-item">' + 46 '<div class="network-label-icon">' + 47 '<div class="network-label"></div>' + 48 '<div class="network-icon hidden"></div>' + 50 '<div class="network-status hidden"></div>' + 198 * Add network name edit to action area. 232 * Add auto-connect this network check box to action area. 263 // TODO: Handle specific types of network, connecting icon. 318 // Show action area for encrypted network and 'other' network [all...] |
/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...] |
network_menu.cc | 75 static SkBitmap IconForDisplay(const Network* network); 114 // Show the config settings for the active network. 129 // If we are attempting to connect to a network that no longer exists, 131 LOG(WARNING) << "Wi-fi network does not exist to connect to: " 145 // Cellular network is connecting or connected, 146 // so we show the config settings for the cellular network. 150 // Clicked on a disconnected cellular network, so connect to it. 153 // If we are attempting to connect to a network that no longer exists, 155 LOG(WARNING) << "Cellular network does not exist to connect to: [all...] |
/external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/ |
FieldSerializer.java | 33 package com.jme3.network.serializing.serializers; 35 import com.jme3.network.serializing.Serializer; 36 import com.jme3.network.serializing.SerializerException;
|
MapSerializer.java | 33 package com.jme3.network.serializing.serializers; 35 import com.jme3.network.serializing.Serializer; 36 import com.jme3.network.serializing.SerializerRegistration;
|
ArraySerializer.java | 33 package com.jme3.network.serializing.serializers; 35 import com.jme3.network.serializing.Serializer;
|
/external/chromium/chrome/browser/chromeos/cros/ |
cros_library.cc | 66 DEFINE_GET_LIBRARY_METHOD(Network, network); 123 DEFINE_SET_LIBRARY_METHOD(Network, network);
|
/external/quake/quake/src/WinQuake/ |
net_ipx.cpp | 57 byte network[4];
member in struct:__anon14591 480 Q_memcpy(&((struct sockaddr_ipx *)addr)->sipx_addr, rcvbuf->header.source.network, sizeof(IPXaddr));
501 Q_memset(addr.sipx_addr.network, 0x00, 4);
581 ((struct sockaddr_ipx *)addr)->sipx_addr.network[0],
582 ((struct sockaddr_ipx *)addr)->sipx_addr.network[1],
583 ((struct sockaddr_ipx *)addr)->sipx_addr.network[2],
584 ((struct sockaddr_ipx *)addr)->sipx_addr.network[3],
614 DO(0, network[0]);
615 DO(2, network[1]);
616 DO(4, network[2]); [all...] |
/external/chromium/chrome/browser/ |
browser_about_handler.cc | 138 const char kNetworkPath[] = "network"; 197 // Called when the network layer has requested a resource underneath 383 // Helper function to create an Html table header for a Network. 384 static std::string ToHtmlTableHeader(const chromeos::Network* network) { 389 if (network->type() == chromeos::TYPE_WIFI || 390 network->type() == chromeos::TYPE_CELLULAR) { 394 if (network->type() == chromeos::TYPE_WIFI) { 400 if (network->type() == chromeos::TYPE_CELLULAR) { 406 if (network->type() == chromeos::TYPE_VPN) [all...] |
/external/chromium/chrome/browser/chromeos/login/ |
network_screen.h | 53 // Subscribes NetworkScreen to the network change notification, 54 // forces refresh of current network state. 72 // Subscribes to network change notifications. 75 // Unsubscribes from network change notifications. 81 // Called by |connection_timer_| when connection to the network timed out. 84 // Update UI based on current network status. 85 void UpdateStatus(NetworkLibrary* network); 87 // Stops waiting for network to connect. 90 // Starts waiting for network connection. Shows spinner. 93 // True if subscribed to network change notification [all...] |
/external/dnsmasq/bld/ |
Makefile | 3 OBJS = cache.o rfc1035.o util.o option.o forward.o network.o \
|
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/ |
AbstractKernel.java | 33 package com.jme3.network.kernel;
|
/external/jmonkeyengine/engine/src/networking/com/jme3/network/base/ |
DefaultServer.java | 33 package com.jme3.network.base; 35 import com.jme3.network.*; 36 import com.jme3.network.kernel.Endpoint; 37 import com.jme3.network.kernel.Kernel; 38 import com.jme3.network.message.ChannelInfoMessage; 39 import com.jme3.network.message.ClientRegistrationMessage; 40 import com.jme3.network.message.DisconnectMessage; 52 * its network connectivity to kernel.Kernel. 407 // exist. Note: by this point the raw network channel is
|
/external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/ |
Serializer.java | 33 package com.jme3.network.serializing; 36 import com.jme3.network.message.ChannelInfoMessage; 37 import com.jme3.network.message.ClientRegistrationMessage; 38 import com.jme3.network.message.DisconnectMessage; 39 import com.jme3.network.message.GZIPCompressedMessage; 40 import com.jme3.network.message.ZIPCompressedMessage; 41 import com.jme3.network.serializing.serializers.*; 55 * they can be sent across the network. Serializing classes should extend
|
/external/okhttp/src/main/java/com/squareup/okhttp/internal/http/ |
ResponseHeaders.java | 95 * actually means "do not use the network". It is set by a client who only 326 // Always go to network for uncacheable response codes (RFC 2616, 13.4), 378 return ResponseSource.NETWORK; 382 return ResponseSource.NETWORK; 422 return request.hasConditions() ? ResponseSource.CONDITIONAL_CACHE : ResponseSource.NETWORK; 427 * network response should be used. 434 // The HTTP spec says that if the network's response is older than our 447 * Combines this cached header with a network header as defined by RFC 2616, 450 public ResponseHeaders combine(ResponseHeaders network) throws IOException { 460 if (!isEndToEnd(fieldName) || network.headers.get(fieldName) == null) [all...] |
/libcore/luni/src/main/java/libcore/net/http/ |
ResponseHeaders.java | 95 * actually means "do not use the network". It is set by a client who only 330 * Always go to network for uncacheable response codes (RFC 2616, 13.4), 392 return ResponseSource.NETWORK; 396 return ResponseSource.NETWORK; 439 : ResponseSource.NETWORK; 444 * network response should be used. 452 * The HTTP spec says that if the network's response is older than our 466 * Combines this cached header with a network header as defined by RFC 2616, 469 public ResponseHeaders combine(ResponseHeaders network) { 479 if (!isEndToEnd(fieldName) || network.headers.get(fieldName) == null) [all...] |
/external/webkit/LayoutTests/http/tests/resources/ |
network-simulator.php | 5 // offline, it simulates a network error with a nonsense response. 62 # Simulate a network error by replying with a nonsense response. 66 header('Content-Length: 5', false); # Multiple content-length headers, some network stacks can detect this condition faster. 158 $stateFile = sys_get_temp_dir() . "/network-simulator-state";
|
/external/webkit/Source/WebKit/gtk/docs/ |
GNUmakefile.am | 81 -I$(top_srcdir)/Source/WebCore/platform/network/soup/cache \
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/ |
SettingsView.java | 66 findViewById(R.id.network).setOnClickListener(this); 98 case R.id.network: 111 // Network
|
/build/target/product/ |
generic_no_telephony.mk | 54 network \
|
/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...] |
/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...] |