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

  /external/libbrillo/brillo/
backoff_entry.cc 18 : policy_(policy) {
19 DCHECK(policy_);
46 if (policy_->always_use_initial_delay)
47 delay = base::TimeDelta::FromMilliseconds(policy_->initial_delay_ms);
73 if (policy_->entry_lifetime_ms == -1)
88 return unused_since_ms >= std::max(policy_->maximum_backoff_ms,
89 policy_->entry_lifetime_ms);
94 return unused_since_ms >= policy_->entry_lifetime_ms;
114 std::max(0, failure_count_ - policy_->num_errors_to_ignore);
118 if (policy_->always_use_initial_delay
    [all...]
backoff_entry.h 108 const Policy* const policy_; member in class:brillo::BackoffEntry
  /frameworks/base/tools/aapt2/
NameMangler.h 45 explicit NameMangler(NameManglerPolicy policy) : policy_(policy) {}
48 if (policy_.target_package_name == name.package ||
49 policy_.packages_to_mangle.count(name.package) == 0) {
54 return ResourceName(policy_.target_package_name, name.type,
59 if (package.empty() || policy_.target_package_name == package) {
62 return policy_.packages_to_mangle.count(package) != 0;
65 const std::string& GetTargetPackageName() const { return policy_.target_package_name; }
95 NameManglerPolicy policy_; member in class:aapt::NameMangler
  /external/libchrome/sandbox/linux/syscall_broker/
broker_process.cc 42 policy_(denied_errno, permissions) {
78 broker_client_.reset(new BrokerClient(policy_, std::move(ipc_writer),
88 BrokerHost broker_host(policy_, std::move(ipc_reader));
broker_process.h 84 syscall_broker::BrokerPolicy policy_; // The sandboxing policy. member in class:sandbox::syscall_broker::BrokerProcess
  /external/libchrome/sandbox/linux/seccomp-bpf/
sandbox_bpf.h 108 std::unique_ptr<bpf_dsl::Policy> policy_; member in class:sandbox::SandboxBPF
sandbox_bpf.cc 124 : proc_fd_(), sandbox_has_started_(false), policy_(policy) {
149 DCHECK(policy_);
221 DCHECK(policy_);
223 bpf_dsl::PolicyCompiler compiler(policy_.get(), Trap::Registry());
254 policy_.reset();
  /external/webrtc/webrtc/base/
winfirewall.h 48 INetFwPolicy* policy_; member in class:rtc::WinFirewall
winfirewall.cc 31 WinFirewall::WinFirewall() : mgr_(NULL), policy_(NULL), profile_(NULL) {
51 hr = mgr_->get_LocalPolicy(&policy_);
52 if (SUCCEEDED(hr) && (policy_ != NULL))
53 hr = policy_->get_CurrentProfile(&profile_);
62 RELEASE(policy_);
  /system/update_engine/update_manager/
update_manager.cc 33 policy_.reset(new ChromeOSPolicy());
update_manager-inl.h 51 const std::string policy_name = policy_->PolicyRequestName(policy_method);
56 EvalStatus status = (policy_.get()->*policy_method)(ec, state_.get(), &error,
110 << policy_->PolicyRequestName(policy_method) << "; this is a bug.";
update_manager.h 97 policy_.reset(policy);
142 std::unique_ptr<const Policy> policy_; member in class:chromeos_update_manager::UpdateManager
chromeos_policy_unittest.cc 194 (policy_.*policy_method)(eval_ctx_.get(), &fake_state_, &error,
204 ChromeOSPolicy policy_; // ChromeOSPolicy under test. member in class:chromeos_update_manager::UmChromeOSPolicyTest
    [all...]
  /external/libbrillo/policy/
device_policy_impl.cc 116 if (!policy_.ParseFromString(polstr) || !policy_.has_policy_data()) {
120 policy_data_.ParseFromString(policy_.policy_data());
447 if (policy_.has_policy_data_signature()) {
448 std::string policy_data = policy_.policy_data();
449 std::string policy_data_signature = policy_.policy_data_signature();
device_policy_impl.h 77 enterprise_management::PolicyFetchResponse policy_; member in class:policy::DevicePolicyImpl
  /external/libchrome/sandbox/linux/bpf_dsl/
policy_compiler.cc 91 : policy_(policy),
96 has_unsafe_traps_(HasUnsafeTraps(policy_)) {
104 CHECK(policy_->InvalidSyscall()->IsDeny())
112 CHECK(policy_->EvaluateSyscall(sysnum)->IsAllow())
227 const CodeGen::Node invalid_node = CompileResult(policy_->InvalidSyscall());
231 ? CompileResult(policy_->EvaluateSyscall(old_sysnum))
237 ? CompileResult(policy_->EvaluateSyscall(static_cast<int>(sysnum)))
policy_compiler.h 139 const Policy* policy_; member in class:sandbox::bpf_dsl::PolicyCompiler
  /external/protobuf/conformance/third_party/jsoncpp/
jsoncpp.cpp     [all...]
json.h 617 unsigned policy_: 2; member in struct:Json::Value::CZString::StringStorage
    [all...]

Completed in 433 milliseconds