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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
pthread_attr_getschedpolicy.c 42 pthread_attr_getschedpolicy (const pthread_attr_t * attr, int *policy)
44 if (ptw32_is_attr (attr) != 0 || policy == NULL)
50 * Validate the policy arg.
51 * Check that a policy constant wasn't passed rather than &policy.
53 if (policy <= (int *) SCHED_MAX)
58 *policy = SCHED_OTHER;
pthread_attr_setschedpolicy.c 42 pthread_attr_setschedpolicy (pthread_attr_t * attr, int policy)
49 if (policy != SCHED_OTHER)
sched_get_priority_max.c 119 sched_get_priority_max (int policy)
121 if (policy < SCHED_MIN || policy > SCHED_MAX)
131 /* This is independent of scheduling policy in Win32. */
sched_get_priority_min.c 120 sched_get_priority_min (int policy)
122 if (policy < SCHED_MIN || policy > SCHED_MAX)
132 /* This is independent of scheduling policy in Win32. */
  /external/chromium_org/chrome/browser/chromeos/policy/
server_backed_device_state.cc 5 #include "chrome/browser/chromeos/policy/server_backed_device_state.h"
7 namespace policy { namespace
17 } // namespace policy
device_cloud_policy_validator.cc 5 #include "chrome/browser/chromeos/policy/device_cloud_policy_validator.h"
7 #include "chrome/browser/chromeos/policy/proto/chrome_device_policy.pb.h"
8 #include "policy/proto/device_management_backend.pb.h"
12 namespace policy { namespace
16 } // namespace policy
device_policy_builder.h 8 #include "chrome/browser/chromeos/policy/proto/chrome_device_policy.pb.h"
9 #include "components/policy/core/common/cloud/policy_builder.h"
11 namespace policy { namespace
16 } // namespace policy
server_backed_device_state.h 8 namespace policy { namespace
18 } // namespace policy
  /external/dnsmasq/dbus/
dnsmasq.conf 5 <policy user="root">
8 </policy>
9 <policy context="default">
12 </policy>
  /external/chromium_org/chrome/browser/download/
download_dir_policy_handler.h 10 #include "components/policy/core/browser/configuration_policy_handler.h"
14 namespace policy { namespace
16 } // namespace policy
18 // ConfigurationPolicyHandler for the DownloadDirectory policy.
19 class DownloadDirPolicyHandler : public policy::TypeCheckingPolicyHandler {
25 virtual bool CheckPolicySettings(const policy::PolicyMap& policies,
26 policy::PolicyErrorMap* errors) OVERRIDE;
29 const policy::PolicyMap& policies,
30 const policy::PolicyHandlerParameters& parameters,
  /external/chromium_org/sandbox/mac/
policy_unittest.cc 5 #include "sandbox/mac/policy.h"
16 BootstrapSandboxPolicy policy; local
17 policy.rules["allow"] = Rule(POLICY_ALLOW);
18 policy.rules["deny_error"] = Rule(POLICY_DENY_ERROR);
19 policy.rules["deny_dummy"] = Rule(POLICY_DENY_DUMMY_PORT);
20 policy.rules["substitue"] = Rule(mach_task_self());
21 EXPECT_TRUE(IsPolicyValid(policy));
26 BootstrapSandboxPolicy policy; local
27 policy.rules["test"] = rule;
28 EXPECT_FALSE(IsPolicyValid(policy));
33 BootstrapSandboxPolicy policy; local
41 BootstrapSandboxPolicy policy; local
49 BootstrapSandboxPolicy policy; local
57 BootstrapSandboxPolicy policy; local
63 BootstrapSandboxPolicy policy; local
69 BootstrapSandboxPolicy policy; local
77 BootstrapSandboxPolicy policy; local
85 BootstrapSandboxPolicy policy; local
93 BootstrapSandboxPolicy policy; local
    [all...]
  /external/libunwind/src/mi/
Gset_caching_policy.c 29 unw_set_caching_policy (unw_addr_space_t as, unw_caching_policy_t policy)
35 if (policy == UNW_CACHE_PER_THREAD)
36 policy = UNW_CACHE_GLOBAL;
39 if (policy == as->caching_policy)
42 as->caching_policy = policy;
  /external/chromium_org/components/policy/core/common/cloud/
mock_cloud_external_data_manager.cc 5 #include "components/policy/core/common/cloud/mock_cloud_external_data_manager.h"
9 #include "components/policy/core/common/external_data_fetcher.h"
12 namespace policy { namespace
22 const std::string& policy) {
24 policy));
27 } // namespace policy
enterprise_metrics.cc 5 #include "components/policy/core/common/cloud/enterprise_metrics.h"
7 namespace policy { namespace
10 const char kMetricPolicy[] = "Enterprise.Policy";
17 } // namespace policy
  /external/chromium_org/third_party/WebKit/Source/core/loader/
NavigationPolicy.cpp 38 bool navigationPolicyFromMouseEvent(unsigned short button, bool ctrl, bool shift, bool alt, bool meta, NavigationPolicy* policy)
48 ASSERT(policy);
51 *policy = NavigationPolicyNewForegroundTab;
53 *policy = NavigationPolicyNewBackgroundTab;
56 *policy = NavigationPolicyNewWindow;
58 *policy = NavigationPolicyDownload;
  /external/chromium_org/android_webview/browser/
aw_static_cookie_policy_unittest.cc 21 void expectFirstPartyAccess(const AwStaticCookiePolicy& policy,
23 EXPECT_EQ(expectedResult, policy.AllowSet(kUrlFirstParty, kUrlFirstParty));
24 EXPECT_EQ(expectedResult, policy.AllowGet(kUrlFirstParty, kUrlFirstParty));
27 void expectThirdPartyAccess(const AwStaticCookiePolicy& policy,
29 EXPECT_EQ(expectedResult, policy.AllowSet(kUrlFirstParty, kUrlThirdParty));
30 EXPECT_EQ(expectedResult, policy.AllowGet(kUrlFirstParty, kUrlThirdParty));
40 AwStaticCookiePolicy policy(false /* allow_cookies */,
42 expectFirstPartyAccess(policy, false);
43 expectThirdPartyAccess(policy, false);
47 AwStaticCookiePolicy policy(false /* allow_cookies */
    [all...]
  /external/chromium_org/components/policy/core/common/
external_data_manager.h 10 #include "components/policy/core/common/external_data_fetcher.h"
11 #include "components/policy/policy_export.h"
13 namespace policy { namespace
18 // policy source (cloud policy, platform policy) that supports external data
22 // Retrieves the external data referenced by |policy| and invokes |callback|
23 // with the result. If |policy| does not reference any external data, the
28 // retrieval is permanently impossible (e.g. |policy| references data that
30 virtual void Fetch(const std::string& policy,
    [all...]
policy_pref_names.cc 5 #include "components/policy/core/common/policy_pref_names.h"
7 namespace policy { namespace
10 // 64-bit serialization of the time last policy usage statistics were collected
12 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update";
15 const char kUrlBlacklist[] = "policy.url_blacklist";
18 const char kUrlWhitelist[] = "policy.url_whitelist";
20 // Integer that specifies the policy refresh rate for user-policy in
22 // by the cloud policy subsystem.
23 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"
    [all...]
policy_provider_android_delegate.h 10 namespace policy { namespace
12 // A delegate for the Android policy provider. This class is responsible for
27 } // namespace policy
policy_switches.cc 5 #include "components/policy/core/common/policy_switches.h"
7 namespace policy { namespace
10 // Specifies the URL at which to fetch configuration policy from the device
14 // Disables fetching and storing cloud policy for components.
15 const char kDisableComponentCloudPolicy[] = "disable-component-cloud-policy";
17 // Disables the verification of policy signing keys.
20 const char kDisablePolicyKeyVerification[] = "disable-policy-key-verification";
23 // Registers for cloud policy using the BROWSER client type instead of the
27 const char kFakeCloudPolicyType[] = "fake-cloud-policy-type";
31 } // namespace policy
    [all...]
  /external/chromium_org/chrome/browser/sync/
sync_policy_handler_unittest.cc 8 #include "components/policy/core/common/policy_map.h"
10 #include "policy/policy_constants.h"
15 // Test cases for the Sync policy setting.
19 policy::PolicyMap policy; local
22 handler.ApplyPolicySettings(policy, &prefs);
27 policy::PolicyMap policy; local
28 policy.Set(policy::key::kSyncDisabled
42 policy::PolicyMap policy; local
    [all...]
  /external/chromium_org/net/data/ssl/scripts/
generate-policy-certs.sh 9 # policies, and the leaf has a single policy.
11 # When validating, supplying no policy OID should not result in an error.
22 try /bin/sh -c "echo 01 > out/policy-root-serial"
23 try /bin/sh -c "echo 01 > out/policy-intermediate-serial"
26 touch out/policy-root-index.txt
27 touch out/policy-intermediate-index.txt
30 try openssl genrsa -out out/policy-root.key 2048
31 try openssl genrsa -out out/policy-intermediate.key 2048
32 try openssl genrsa -out out/policy-cert.key 2048
35 COMMON_NAME="Policy Test Root CA"
    [all...]
  /external/chromium_org/chrome/browser/extensions/
policy_handlers.h 10 #include "components/policy/core/browser/configuration_policy_handler.h"
12 namespace policy { namespace
15 } // namespace policy
21 : public policy::TypeCheckingPolicyHandler {
29 virtual bool CheckPolicySettings(const policy::PolicyMap& policies,
30 policy::PolicyErrorMap* errors) OVERRIDE;
31 virtual void ApplyPolicySettings(const policy::PolicyMap& policies,
37 // Runs sanity checks on the policy value and returns it in |extension_ids|.
38 bool CheckAndGetList(const policy::PolicyMap& policies,
39 policy::PolicyErrorMap* errors
    [all...]
  /external/chromium_org/sandbox/win/src/
process_mitigations_win32k_policy.cc 12 LowLevelPolicy* policy) {
14 if (!policy->AddRule(IPC_GDI_GDIDLLINITIALIZE_TAG, &rule))
16 if (!policy->AddRule(IPC_GDI_GETSTOCKOBJECT_TAG, &rule))
18 if (!policy->AddRule(IPC_USER_REGISTERCLASSW_TAG, &rule))
  /external/ipsec-tools/src/libipsec/
ipsec_get_policylen.c 50 ipsec_get_policylen(policy)
51 ipsec_policy_t policy;
53 return policy ? PFKEY_EXTLEN(policy) : -1;

Completed in 684 milliseconds

1 2 3 4 5 6 7 8 91011>>