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

1 2 3 4

  /system/core/fastbootd/
fastbootd.c 41 int network = 1; local
62 network = 0;
88 if (network) {
  /packages/apps/Settings/src/com/android/settings/net/
ChartData.java 22 public NetworkStatsHistory network; field in class:ChartData
  /external/chromium_org/chrome/browser/metrics/
network_metrics_provider.cc 30 SystemProfileProto::Network* network = system_profile->mutable_network(); local
31 network->set_connection_type_is_ambiguous(connection_type_is_ambiguous_);
32 network->set_connection_type(GetConnectionType());
33 network->set_wifi_phy_layer_protocol_is_ambiguous(
35 network->set_wifi_phy_layer_protocol(GetWifiPHYLayerProtocol());
57 SystemProfileProto::Network::ConnectionType
62 return SystemProfileProto::Network::CONNECTION_UNKNOWN;
64 return SystemProfileProto::Network::CONNECTION_ETHERNET;
66 return SystemProfileProto::Network::CONNECTION_WIFI
    [all...]
  /external/chromium_org/remoting/client/plugin/
pepper_network_manager.cc 66 // Convert the networks to talk_base::Network.
67 std::vector<talk_base::Network*> networks;
87 talk_base::Network* network = new talk_base::Network( local
89 network->AddIP(address.ipaddr());
90 networks.push_back(network);
  /external/chromium_org/third_party/webrtc/video_engine/test/libvietest/include/
tb_interfaces.h 43 webrtc::ViENetwork* network; member in class:TbInterfaces
  /external/chromium_org/tools/perf/metrics/
network_unittest.py 9 from metrics import network namespace
21 GZIPPED_HTML_LEN = network.HTTPResponse.GetGizppedBodyLength(HTML_BODY)
33 e = event.TimelineEvent('network', 'HTTPResponse', 0, 0)
52 resp = network.HTTPResponse(self.MakeNetworkTimelineEvent(
71 resp = network.HTTPResponse(self.MakeNetworkTimelineEvent(
90 resp = network.HTTPResponse(self.MakeNetworkTimelineEvent(
110 resp = network.HTTPResponse(self.MakeNetworkTimelineEvent(
157 metric = network.NetworkMetric()
  /external/glide/library/src/main/java/com/bumptech/glide/volley/
RequestQueueWrapper.java 8 import com.android.volley.Network;
47 Network network = new BasicNetwork(stack); local
50 RequestQueue queue = new RequestQueue(diskCache, network);
  /frameworks/volley/src/com/android/volley/toolbox/
Volley.java 25 import com.android.volley.Network;
39 * @param stack An {@link HttpStack} to use for the network, or null for default.
63 Network network = new BasicNetwork(stack); local
65 RequestQueue queue = new RequestQueue(new DiskBasedCache(cacheDir), network);
  /external/chromium_org/chrome/browser/chromeos/login/
helper.cc 12 #include "chromeos/network/network_handler.h"
13 #include "chromeos/network/network_state.h"
14 #include "chromeos/network/network_state_handler.h"
64 const NetworkState* network = local
66 if (network) {
67 if (network->Matches(NetworkTypePattern::Ethernet()))
69 return base::UTF8ToUTF16(network->name());
72 network = nsh->ConnectingNetworkByType(NetworkTypePattern::NonVirtual());
73 if (network) {
74 if (network->Matches(NetworkTypePattern::Ethernet())
    [all...]
  /external/chromium_org/chrome/browser/local_discovery/wifi/
bootstrapping_device_lister_unittest.cc 66 NetworkProperties network; local
67 network.guid = "MyInternalID";
68 network.ssid = "MyDevice@camNprv";
69 network.connection_state = onc::connection_state::kNotConnected;
71 network_property_list.push_back(network);
98 NetworkProperties network; local
99 network.guid = "MyInternalID";
100 network.ssid = "MyDevice@camNprv";
101 network.connection_state = onc::connection_state::kNotConnected;
103 network_property_list.push_back(network);
151 NetworkProperties network; local
    [all...]
  /external/chromium_org/content/browser/renderer_host/pepper/
pepper_network_monitor_host.cc 100 const net::NetworkInterface& network = list->at(i); local
102 network_copy.name = network.name;
107 network.address, 0, &(network_copy.addresses[0]));
115 network_copy.display_name = network.name;
  /external/chromium_org/content/renderer/p2p/
ipc_network_manager.cc 70 // Update flag if network list received for the first time.
76 // talk_base::Network uses these prefix_length to compare network
78 std::vector<talk_base::Network*> networks;
87 talk_base::Network* network = new talk_base::Network( local
90 network->AddIP(talk_base::IPAddress(address));
91 networks.push_back(network);
98 talk_base::Network* network = new talk_base::Network local
    [all...]
  /external/chromium_org/third_party/webrtc/tools/e2e_quality/audio/
audio_e2e_harness.cc 44 VoENetwork* network = VoENetwork::GetInterface(voe); local
45 ASSERT_TRUE(network != NULL);
52 new VoiceChannelTransport(network, channel));
  /external/chromium_org/chrome/browser/chromeos/login/enrollment/
auto_enrollment_check_screen.cc 14 #include "chromeos/network/network_state.h"
15 #include "chromeos/network/network_state_handler.h"
102 const NetworkState* /* network */,
206 const NetworkState* network = local
212 network ? network->name() : std::string());
  /external/chromium_org/chrome/browser/chromeos/
ui_proxy_config_service.cc 12 #include "chromeos/network/network_state.h"
13 #include "chromeos/network/network_state_handler.h"
38 // Writes the proxy config of |network| to |proxy_config|. Sets |onc_source| to
40 // for this network.
43 const NetworkState& network,
48 profile_prefs, local_state_prefs, network, onc_source);
82 const NetworkState* network = NULL; local
84 network = NetworkHandler::Get()
88 LOG_IF(ERROR, !network) << "Couldn't find NetworkState for network "
113 const NetworkState* network = local
    [all...]
enrollment_dialog_view.cc 13 #include "chromeos/network/network_event_log.h"
14 #include "chromeos/network/network_state.h"
15 #include "chromeos/network/network_state_handler.h"
264 const NetworkState* network = NetworkHandler::Get()->network_state_handler()-> local
266 if (!network) {
267 NET_LOG_ERROR("Enrolling Unknown network", service_path);
273 if (network->ui_data().onc_source() == onc::ONC_SOURCE_DEVICE_POLICY)
277 network->ui_data().certificate_pattern();
289 new DialogEnrollmentDelegate(owning_window, network->name(), profile);
proxy_config_service_impl.cc 21 #include "chromeos/network/network_profile.h"
22 #include "chromeos/network/network_profile_handler.h"
23 #include "chromeos/network/network_state.h"
24 #include "chromeos/network/network_state_handler.h"
25 #include "chromeos/network/onc/onc_utils.h"
32 // Writes the proxy config of |network| to |proxy_config|. Set |onc_source| to
34 // proxy was configured for this network.
37 const NetworkState& network,
42 profile_prefs, local_state_prefs, network, onc_source);
73 // Register for changes to the default network
163 const NetworkState* network = handler->DefaultNetwork(); local
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/chromeos/
network_config_message_handler.cc 13 #include "chromeos/network/managed_network_configuration_handler.h"
14 #include "chromeos/network/network_state.h"
15 #include "chromeos/network/network_state_handler.h"
16 #include "chromeos/network/network_util.h"
17 #include "chromeos/network/onc/onc_signature.h"
18 #include "chromeos/network/onc/onc_utils.h"
19 #include "chromeos/network/shill_property_util.h"
30 const NetworkState* network = local
33 if (!network)
35 *service_path = network->path()
    [all...]
choose_mobile_network_ui.cc 19 #include "chromeos/network/device_state.h"
20 #include "chromeos/network/network_device_handler.h"
21 #include "chromeos/network/network_event_log.h"
22 #include "chromeos/network/network_state_handler.h"
23 #include "chromeos/network/network_state_handler_observer.h"
50 // Network properties.
132 "Cannot initiate a cellular network scan without a cellular device.");
181 // We need to remove duplicates from the list because same network with
184 // network in UI.
186 base::DictionaryValue* network = new base::DictionaryValue() local
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/help/
version_updater_chromeos.cc 19 #include "chromeos/network/network_handler.h"
20 #include "chromeos/network/network_state.h"
21 #include "chromeos/network/network_state_handler.h"
36 // Network status in the context of device update.
38 // It's allowed in device policy to use current network for update.
40 // It's disallowed in device policy to use current network for update.
48 NetworkStatus GetNetworkStatus(const chromeos::NetworkState* network) {
49 if (!network || !network->IsConnectedState()) // Offline state.
54 if (network->type() == shill::kTypeBluetooth
93 const chromeos::NetworkState* network = local
    [all...]
  /external/ipsec-tools/src/racoon/
isakmp_unity.c 210 struct unity_network *network = (struct unity_network *)(attr + 1); local
223 &network[index],
237 &network[index],
269 struct unity_network * network; local
286 network = (struct unity_network *)(new + 1);
289 memcpy(&network[index],
290 &netentry->network,
293 inet_ntop(AF_INET, &netentry->network.addr4, tmp1, 40);
294 inet_ntop(AF_INET, &netentry->network.mask4, tmp2, 40);
303 int splitnet_list_add(list, network, count
    [all...]
isakmp_unity.h 65 struct unity_network network; member in struct:unity_netentry
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/
ConnectivityStatusIconUriGetter.java 113 WifiConfiguration network = WifiConfigHelper.getWifiConfiguration(wifiMan, local
115 if (network != null) {
116 return WifiSecurity.isOpen(network);
118 Log.w(TAG, "Could not determine if network is secure or not! Defaulting to open icon.");
  /external/chromium_org/ash/system/chromeos/network/
network_state_notifier.cc 5 #include "ash/system/chromeos/network/network_state_notifier.h"
8 #include "ash/system/chromeos/network/network_connect.h"
14 #include "chromeos/network/network_configuration_handler.h"
15 #include "chromeos/network/network_connection_handler.h"
16 #include "chromeos/network/network_event_log.h"
17 #include "chromeos/network/network_state.h"
18 #include "chromeos/network/network_state_handler.h"
19 #include "chromeos/network/shill_property_util.h"
108 void NetworkStateNotifier::DefaultNetworkChanged(const NetworkState* network) {
109 if (!UpdateDefaultNetwork(network))
266 const NetworkState* network = local
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/chromeos/login/
app_launch_splash_screen_handler.cc 10 #include "chromeos/network/network_state.h"
11 #include "chromeos/network/network_state_handler.h"
24 // Returns network name by service path.
26 const chromeos::NetworkState* network = local
29 if (!network)
31 return network->name();
264 LOG(WARNING) << "No delegate set to handle network configuration.";

Completed in 498 milliseconds

1 2 3 4