/external/chromium_org/chrome/browser/chromeos/login/screens/ |
update_screen.h | 50 // Starts network check. Made virtual to simplify mocking. 77 const NetworkState* network, 113 const NetworkState* network, 158 // about state for the default network. 162 // the default network.
|
update_screen.cc | 22 #include "chromeos/network/network_state.h" 243 const NetworkState* network, 246 << "network=" << (network ? network->path() : "") << ", " 251 if (network && 257 if ((!network || 278 UpdateErrorMessage(network, status); 285 UpdateErrorMessage(network, status); 295 // allowed, initiate network state check. Otherwise, directl [all...] |
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
relayport.h | 57 talk_base::Network* network, const talk_base::IPAddress& ip, 60 return new RelayPort(thread, factory, network, ip, min_port, max_port, 87 talk_base::Network*, const talk_base::IPAddress& ip,
|
turnport.h | 54 talk_base::Network* network, 61 return new TurnPort(thread, factory, network, ip, min_port, max_port, 100 talk_base::Network* network,
|
/external/jmonkeyengine/engine/src/networking/com/jme3/network/rmi/ |
RemoteObject.java | 33 package com.jme3.network.rmi; 35 import com.jme3.network.HostedConnection;
|
/external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/ |
SavableSerializer.java | 33 package com.jme3.network.serializing.serializers; 38 import com.jme3.network.serializing.Serializer;
|
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;
|
/external/qemu/ |
tcpdump.c | 53 uint32_t network; member in struct:__anon27452 64 h.network = PCAP_ETHERNET;
|
/frameworks/volley/src/com/android/volley/ |
NetworkDispatcher.java | 26 * Provides a thread for performing network dispatch from a queue of requests. 28 * Requests added to the specified queue are processed from the network via a 29 * specified {@link Network} interface. Responses are committed to cache, if 37 /** The network interface for processing requests. */ 38 private final Network mNetwork; 47 * Creates a new network dispatcher thread. You must call {@link #start()} 51 * @param network Network interface to use for performing requests 56 Network network, Cache cache [all...] |
/external/chromium_org/chrome/browser/resources/options/chromeos/ |
internet_detail.css | 12 #network-details-header { 19 #network-details-title { 23 #network-details-subtitle-status {
|
/external/wpa_supplicant_8/wpa_supplicant/examples/ |
wpas-dbus-new-signals.py | 16 WPAS_DBUS_NETWORK_INTERFACE = "fi.w1.wpa_supplicant1.Network" 105 def networkAdded(network, properties): 106 print "NetworkAdded(%s)" % (network) 108 def networkRemoved(network): 109 print "NetworkRemoved(%s)" % (network) 111 def networkSelected(network): 112 print "NetworkSelected(%s)" % (network) 124 print "PropertiesChanged(Network): %s=%s" % (i, properties[i])
|
/external/svox/pico/lib/ |
picopr.c | 338 picokpr_Preproc network, [all...] |
/external/opencv/ml/src/ |
mlcnn.cpp | 61 static void icvTrainCNNetwork( CvCNNetwork* network, 69 /*------------------------- functions for the CNN network ------------------------------*/ 70 static void icvCNNetworkAddLayer( CvCNNetwork* network, CvCNNLayer* layer ); 71 static void icvCNNetworkRelease( CvCNNetwork** network ); 106 #define ICV_CHECK_CNN_NETWORK(network) \ 110 if( !network ) \ 112 "Null <network> pointer. Network must be created by user." ); \ 113 n_layers = network->n_layers; \ 114 first_layer = last_layer = network->layers; [all...] |
/external/jmonkeyengine/engine/src/networking/com/jme3/network/base/ |
DefaultClient.java | 33 package com.jme3.network.base; 35 import com.jme3.network.ClientStateListener.DisconnectInfo; 36 import com.jme3.network.*; 37 import com.jme3.network.kernel.Connector; 38 import com.jme3.network.message.ChannelInfoMessage; 39 import com.jme3.network.message.ClientRegistrationMessage; 40 import com.jme3.network.message.DisconnectMessage; 51 * its network connectivity to a kernel.Connector.
|
/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/chromium_org/chrome/browser/automation/ |
automation_provider_observers_chromeos.cc | 42 // If the network library is not the production version, don't wait for 43 // the network library to finish initializing, because it'll wait 277 const chromeos::Network* network = GetNetwork(obj); local 278 if (!network) { 279 // The network was not found, and we assume it no longer exists. 280 // This could be because the ssid is invalid, or the network went away. 283 return_value->SetString("error_string", "Network not found."); 291 NetworkStatusCheck(network); 298 void NetworkConnectObserver::NetworkStatusCheck(const chromeos::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...] |
/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_org/ash/system/chromeos/network/ |
network_state_list_detailed_view.cc | 5 #include "ash/system/chromeos/network/network_state_list_detailed_view.h" 11 #include "ash/system/chromeos/network/network_connect.h" 12 #include "ash/system/chromeos/network/network_icon.h" 13 #include "ash/system/chromeos/network/network_icon_animation.h" 14 #include "ash/system/chromeos/network/tray_network_state_observer.h" 28 #include "chromeos/network/device_state.h" 29 #include "chromeos/network/favorite_state.h" 30 #include "chromeos/network/network_configuration_handler.h" 31 #include "chromeos/network/network_state.h" 32 #include "chromeos/network/network_state_handler.h 313 const NetworkState* network = NetworkHandler::Get()->network_state_handler()-> local 470 const NetworkState* network = *iter; local 500 const NetworkState* network = local 798 const NetworkState* network = handler->DefaultNetwork(); local [all...] |
/external/chromium_org/chrome/browser/resources/chromeos/ |
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...] |
/external/chromium_org/chrome/browser/chromeos/options/ |
wifi_config_view.h | 18 #include "chromeos/network/network_state_handler_observer.h" 82 virtual void NetworkPropertiesUpdated(const NetworkState* network) OVERRIDE; 84 // Parses a WiFi UI |property| from the ONC associated with |network|. |key| 87 const NetworkState* network, 90 // Parses a WiFi EAP UI |property| from the ONC associated with |network|. 93 const NetworkState* network, 102 // Callback to initialize fields from uncached network properties. 152 // Enable/Disable "share this network" checkbox.
|
/external/chromium_org/chromeos/network/ |
network_state_handler.h | 18 #include "chromeos/network/managed_state.h" 19 #include "chromeos/network/network_handler.h" 20 #include "chromeos/network/network_handler_callbacks.h" 21 #include "chromeos/network/shill_property_handler.h" 43 // each visible network. It is not used to change the properties of services or 54 // * kMatchTypeDefault returns the default (active) network 55 // * kMatchTypeNonVirtual returns the primary non virtual network 56 // * kMatchTypeWireless returns the primary wireless network 57 // * kMatchTypeMobile returns the primary cellular or wimax network 117 // Finds and returns a network state by |service_path| or NULL if not found [all...] |
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/ |
webrtcvoe.h | 111 webrtc::VoENetwork* network, 124 network_(network), 139 webrtc::VoENetwork* network() const { return network_.get(); } function in class:cricket::VoEWrapper
|