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

1 2

  /external/chromium_org/chrome/browser/chromeos/options/
network_property_ui_data.cc 17 NetworkPropertyUIData::NetworkPropertyUIData(::onc::ONCSource onc_source)
18 : onc_source_(onc_source) {
24 void NetworkPropertyUIData::ParseOncProperty(::onc::ONCSource onc_source,
28 onc_source_ = onc_source;
network_property_ui_data.h 29 // Initializes with the given |onc_source| and no default value.
30 explicit NetworkPropertyUIData(::onc::ONCSource onc_source);
36 void ParseOncProperty(::onc::ONCSource onc_source,
  /external/chromium_org/chromeos/network/
network_ui_data_unittest.cc 18 EXPECT_EQ(::onc::ONC_SOURCE_USER_IMPORT, ui_data.onc_source());
24 EXPECT_EQ(::onc::ONC_SOURCE_DEVICE_POLICY, ui_data.onc_source());
29 EXPECT_EQ(::onc::ONC_SOURCE_USER_POLICY, ui_data.onc_source());
network_ui_data.h 37 ::onc::ONCSource onc_source() const { return onc_source_; } function in class:chromeos::NetworkUIData
51 // Creates a NetworkUIData object from |onc_source|. This function is used to
53 static scoped_ptr<NetworkUIData> CreateFromONC(::onc::ONCSource onc_source);
managed_network_configuration_handler.h 106 // |userhash| and |onc_source|. The policy will be applied (not necessarily
108 // until the policy associated with |userhash| and |onc_source| is changed
111 ::onc::ONCSource onc_source,
118 // doesn't exist, returns NULL. Sets |onc_source| accordingly.
122 ::onc::ONCSource* onc_source) const = 0;
mock_managed_network_configuration_handler.h 52 void(::onc::ONCSource onc_source,
60 ::onc::ONCSource* onc_source));
policy_util.cc 282 ::onc::ONCSource onc_source = ::onc::ONC_SOURCE_NONE; local
290 onc_source = ::onc::ONC_SOURCE_DEVICE_POLICY;
297 onc_source = ::onc::ONC_SOURCE_USER_POLICY;
304 onc_source = ::onc::ONC_SOURCE_NONE;
307 onc_source = ::onc::ONC_SOURCE_NONE;
333 scoped_ptr<NetworkUIData> ui_data(NetworkUIData::CreateFromONC(onc_source));
network_ui_data.cc 14 const char NetworkUIData::kKeyONCSource[] = "onc_source";
113 ::onc::ONCSource onc_source) {
116 ui_data->onc_source_ = onc_source;
managed_network_configuration_handler_impl.cc 167 ::onc::ONCSource onc_source; local
168 FindPolicyByGUID(userhash, guid, &onc_source);
171 *shill_properties, onc_source, &onc::kNetworkWithStateSignature));
356 ::onc::ONCSource onc_source,
360 VLOG(1) << "Setting policies from " << ToDebugString(onc_source, userhash)
364 DCHECK(onc_source != ::onc::ONC_SOURCE_DEVICE_POLICY ||
393 NET_LOG_ERROR("ONC from " + ToDebugString(onc_source, userhash) +
513 ::onc::ONCSource* onc_source) const {
514 *onc_source = ::onc::ONC_SOURCE_NONE;
522 *onc_source = ::onc::ONC_SOURCE_USER_POLICY
    [all...]
managed_network_configuration_handler_impl.h 72 onc::ONCSource onc_source,
80 onc::ONCSource* onc_source) const OVERRIDE;
  /external/chromium_org/chromeos/network/onc/
onc_translator.h 40 // by the UI. If |onc_source| != ONC_SOURCE_UNKNOWN then the 'Source' property
46 ::onc::ONCSource onc_source,
onc_validator_unittest.cc 33 ::onc::ONCSource onc_source) {
42 validator->SetOncSource(onc_source);
80 ::onc::ONCSource onc_source = ::onc::ONC_SOURCE_NONE)
84 onc_source(onc_source) {
90 ::onc::ONCSource onc_source; member in struct:chromeos::onc::__anon10845::OncParams
96 << GetSourceAsString(onc.onc_source) << ")";
118 onc.is_managed, onc.onc_source);
125 onc.is_managed, onc.onc_source);
247 onc.is_managed, onc.onc_source);
    [all...]
onc_utils.cc 352 ONCSource onc_source,
366 LOG(ERROR) << "ONC loaded from " << GetSourceAsString(onc_source)
379 << GetSourceAsString(onc_source);
384 bool from_policy = (onc_source == ONC_SOURCE_USER_POLICY ||
385 onc_source == ONC_SOURCE_DEVICE_POLICY);
393 validator.SetOncSource(onc_source);
408 LOG(WARNING) << "ONC from " << GetSourceAsString(onc_source)
412 LOG(ERROR) << "ONC from " << GetSourceAsString(onc_source)
432 << GetSourceAsString(onc_source) << " could not be resolved.";
onc_utils.h 102 ::onc::ONCSource onc_source,
  /external/chromium_org/chrome/browser/chromeos/
ui_proxy_config_service.cc 37 // Writes the proxy config of |network| to |proxy_config|. Sets |onc_source| to
44 onc::ONCSource* onc_source) {
47 profile_prefs, local_state_prefs, network, onc_source);
54 // Returns true if proxy settings from |onc_source| are editable.
55 bool IsNetworkProxySettingsEditable(const onc::ONCSource onc_source) {
56 return onc_source != onc::ONC_SOURCE_DEVICE_POLICY &&
57 onc_source != onc::ONC_SOURCE_USER_POLICY;
153 onc::ONCSource onc_source = onc::ONC_SOURCE_NONE; local
158 &onc_source)) {
177 } else if (!IsNetworkProxySettingsEditable(onc_source)) {
    [all...]
proxy_config_service_impl.cc 32 // Writes the proxy config of |network| to |proxy_config|. Set |onc_source| to
39 ::onc::ONCSource* onc_source) {
42 profile_prefs, local_state_prefs, network, onc_source);
120 ::onc::ONCSource onc_source) {
143 if (onc_source == ::onc::ONC_SOURCE_DEVICE_POLICY) {
176 ::onc::ONCSource onc_source = ::onc::ONC_SOURCE_NONE; local
178 prefs(), local_state_prefs_, *network, &network_config, &onc_source);
180 IgnoreProxy(profile_prefs_, network->profile_path(), onc_source);
proxy_config_service_impl.h 60 // |onc_source|, e.g. this happens if the network is shared and
64 onc::ONCSource onc_source);
  /external/chromium_org/chrome/browser/chromeos/net/
onc_utils.h 52 // |global_config| (if not NULL) and |onc_source| (if not NULL) accordingly. If
53 // |guid| is empty, returns NULL and sets the |global_config| and |onc_source|
57 ::onc::ONCSource* onc_source);
70 // applicable policy is found. Sets |onc_source| accordingly.
75 ::onc::ONCSource* onc_source);
proxy_config_handler.h 33 onc::ONCSource* onc_source);
proxy_config_handler.cc 45 ::onc::ONCSource* onc_source) {
48 profile_prefs, local_state_prefs, network, onc_source);
onc_utils.cc 268 ::onc::ONCSource* onc_source) {
273 FindPolicyByGUID(username_hash, guid, onc_source);
427 ::onc::ONCSource* onc_source) {
429 *onc_source = ::onc::ONC_SOURCE_NONE;
435 *onc_source = ::onc::ONC_SOURCE_USER_POLICY;
442 *onc_source = ::onc::ONC_SOURCE_DEVICE_POLICY;
  /external/chromium_org/chrome/browser/chromeos/policy/
network_configuration_updater.h 48 onc::ONCSource onc_source,
network_configuration_updater.cc 40 onc::ONCSource onc_source,
44 : onc_source_(onc_source),
configuration_policy_handler_chromeos.h 61 ::onc::ONCSource onc_source,
  /external/chromium_org/chrome/browser/ui/webui/chromeos/login/
network_state_informer.cc 35 onc::ONCSource onc_source = onc::ONC_SOURCE_NONE;
38 NULL, g_browser_process->local_state(), *network, &onc_source);

Completed in 927 milliseconds

1 2