HomeSort by relevance Sort by last modified time
    Searched refs:policy_ (Results 1 - 14 of 14) sorted by null

  /external/chromium/net/base/
backoff_entry.cc 17 policy_(policy) {
18 DCHECK(policy_);
71 if (policy_->entry_lifetime_ms == -1)
86 return unused_since_ms >= std::max(policy_->maximum_backoff_ms,
87 policy_->entry_lifetime_ms);
92 return unused_since_ms >= policy_->entry_lifetime_ms;
101 std::max(0, failure_count_ - policy_->num_errors_to_ignore);
111 double delay = policy_->initial_backoff_ms;
112 delay *= pow(policy_->multiply_factor, effective_failure_count - 1);
113 delay -= base::RandDouble() * policy_->jitter_factor * delay
    [all...]
backoff_entry.h 87 const Policy* const policy_; member in class:net::BackoffEntry
static_cookie_policy_unittest.cc 21 policy_.set_type(type);
24 return policy_.CanGetCookies(url, first_party);
27 return policy_.CanSetCookie(url, first_party, std::string());
30 StaticCookiePolicy policy_; member in class:net::StaticCookiePolicyTest
  /external/chromium/chrome/browser/policy/
asynchronous_policy_loader.h 40 const DictionaryValue* policy() const { return policy_.get(); }
94 scoped_ptr<DictionaryValue> policy_; member in class:policy::AsynchronousPolicyLoader
asynchronous_policy_loader.cc 23 policy_.reset(delegate_->Load());
144 DCHECK(policy_.get());
145 if (!policy_->Equals(new_policy.get())) {
146 policy_.reset(new_policy.release());
device_policy_cache.cc 39 policy_(policy),
56 if (policy_.has_new_public_key()) {
59 const std::string& new_key = policy_.new_public_key();
89 em::PolicyFetchResponse policy_; member in class:__anon4286::StorePolicyOperation
  /external/chromium/third_party/libjingle/source/talk/base/
winfirewall.h 65 INetFwPolicy* policy_; member in class:talk_base::WinFirewall
winfirewall.cc 48 WinFirewall::WinFirewall() : mgr_(NULL), policy_(NULL), profile_(NULL) {
68 hr = mgr_->get_LocalPolicy(&policy_);
69 if (SUCCEEDED(hr) && (policy_ != NULL))
70 hr = policy_->get_CurrentProfile(&profile_);
79 RELEASE(policy_);
  /external/chromium/chrome/browser/ssl/
ssl_manager.h 77 SSLPolicy* policy() { return policy_.get(); }
120 scoped_ptr<SSLPolicy> policy_; member in class:SSLManager
ssl_manager.cc 113 policy_(new SSLPolicy(&backend_)),
  /external/chromium/chrome/browser/chromeos/login/
ownership_service.cc 31 policy_(NULL),
60 policy_.reset(pol.New());
61 policy_->CheckTypeAndMergeFrom(pol);
65 return policy_.get();
69 return *(policy_.get());
signed_settings.cc 240 em::PolicyFetchResponse* policy_; member in class:chromeos::StorePolicyOp
271 em::PolicyFetchResponse policy_; member in class:chromeos::RetrievePolicyOp
766 : policy_(policy),
783 if (!policy_->has_policy_data())
785 if (!policy_->has_policy_data_signature())
786 service_->StartSigningAttempt(policy_->policy_data(), this);
801 if (SignedSettings::PolicyIsSane(*policy_, &poldata)) {
826 policy_->set_policy_data_signature(std::string(payload.begin(),
836 if (policy_->SerializeToString(&serialized)) {
898 Succeed(policy_);
    [all...]
ownership_service.h 140 scoped_ptr<em::PolicyData> policy_; member in class:chromeos::OwnershipService
signed_settings_helper.cc 240 policy_(policy) {
255 op_ = SignedSettings::CreateStorePolicyOp(&policy_, this);
259 em::PolicyFetchResponse policy_; member in class:chromeos::__anon3946::StorePolicyOpContext

Completed in 160 milliseconds