Searched defs:policy (Results 26 - 50 of 820) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/policy/
H A Dnetwork_prediction_policy_handler.h8 #include "components/policy/core/browser/configuration_policy_handler.h"
12 namespace policy { namespace
33 } // namespace policy
H A Dpolicy_path_parser.h12 namespace policy { namespace
16 // This function is used to expand the variables in policy strings that
52 // A helper function used to read the UserDataDir path policy without relying on
53 // any policy infrastructure. This is required because this policy is needed
55 // The function will fill |user_data_dir| if the policy "UserDataDir" is set and
56 // leave it intact if the policy is missing. If the policy is set it should
58 // this function should be used to verify no policy is specified whenever the
65 } // namespace policy
[all...]
/external/chromium_org/chrome/browser/sessions/
H A Drestore_on_startup_policy_handler.h8 #include "components/policy/core/browser/configuration_policy_handler.h"
12 namespace policy { namespace
17 // Handles RestoreOnStartup policy.
36 } // namespace policy
/external/chromium_org/components/policy/core/browser/
H A Dautofill_policy_handler.h8 #include "components/policy/core/browser/configuration_policy_handler.h"
9 #include "components/policy/policy_export.h"
11 namespace policy { namespace
13 // ConfigurationPolicyHandler for the AutofillEnabled policy.
27 } // namespace policy
H A Dbrowser_policy_connector_unittest.cc5 #include "components/policy/core/browser/browser_policy_connector.h"
8 namespace policy { namespace
48 } // namespace policy
H A Dconfiguration_policy_handler_parameters.h10 #include "components/policy/policy_export.h"
12 namespace policy { namespace
14 // The parameters passed to the policy handlers. The structure can be extended
15 // with more fields, if more parameters are needed by the policy handlers.
20 } // namespace policy
H A Durl_blacklist_policy_handler.h10 #include "components/policy/core/browser/configuration_policy_handler.h"
11 #include "components/policy/policy_export.h"
13 namespace policy { namespace
32 } // namespace policy
/external/chromium_org/components/policy/core/common/cloud/
H A Dmock_cloud_external_data_manager.h13 #include "components/policy/core/common/cloud/cloud_external_data_manager.h"
14 #include "components/policy/core/common/external_data_fetcher.h"
21 namespace policy { namespace
37 const std::string& policy);
43 } // namespace policy
H A Dmock_cloud_policy_client.h11 #include "components/policy/core/common/cloud/cloud_policy_client.h"
12 #include "components/policy/core/common/cloud/cloud_policy_constants.h"
15 namespace policy { namespace
35 // Injects policy.
37 const enterprise_management::PolicyFetchResponse& policy);
76 } // namespace policy
H A Dmock_cloud_policy_store.h8 #include "components/policy/core/common/cloud/cloud_policy_store.h"
11 namespace policy { namespace
46 } // namespace policy
H A Dmock_user_cloud_policy_store.cc5 #include "components/policy/core/common/cloud/mock_user_cloud_policy_store.h"
7 namespace policy { namespace
17 } // namespace policy
H A Dmock_user_cloud_policy_store.h8 #include "components/policy/core/common/cloud/user_cloud_policy_store.h"
11 namespace policy { namespace
36 } // namespace policy
/external/chromium_org/components/policy/core/common/
H A Dexternal_data_manager.h10 #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...]
H A Dmac_util.h11 #include "components/policy/policy_export.h"
19 namespace policy { namespace
30 } // namespace policy
H A Dmock_policy_service.h8 #include "components/policy/core/common/policy_service.h"
11 namespace policy { namespace
37 } // namespace policy
H A Dpolicy_pref_names.h8 #include "components/policy/policy_export.h"
10 namespace policy { namespace
19 } // namespace policy
H A Dpolicy_switches.h8 #include "components/policy/policy_export.h"
12 namespace policy { namespace
24 } // namespace policy
H A Dpreg_parser_win.h6 // policy settings in the file system. The file format is documented here:
17 #include "components/policy/policy_export.h"
23 namespace policy { namespace
42 } // namespace policy
/external/chromium_org/content/common/sandbox_linux/
H A Dsandbox_init_linux.cc14 scoped_ptr<sandbox::bpf_dsl::SandboxBPFDSLPolicy> policy) {
15 return SandboxSeccompBPF::StartSandboxWithExternalPolicy(policy.Pass());
13 InitializeSandbox( scoped_ptr<sandbox::bpf_dsl::SandboxBPFDSLPolicy> policy) argument
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dpthread_attr_getschedpolicy.c42 pthread_attr_getschedpolicy (const pthread_attr_t * attr, int *policy) argument
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;
H A Dpthread_attr_setschedpolicy.c42 pthread_attr_setschedpolicy (pthread_attr_t * attr, int policy) argument
49 if (policy != SCHED_OTHER)
/external/chromium_org/sandbox/mac/
H A Dpolicy_unittest.cc5 #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/
H A DGset_caching_policy.c29 unw_set_caching_policy (unw_addr_space_t as, unw_caching_policy_t policy) argument
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/chrome/browser/chromeos/policy/
H A Ddevice_cloud_policy_browsertest.cc9 #include "chrome/browser/chromeos/policy/browser_policy_connector_chromeos.h"
10 #include "chrome/browser/chromeos/policy/device_policy_cros_browser_test.h"
14 namespace policy { namespace
61 } // namespace policy
H A Ddevice_local_account_external_data_manager.h13 #include "chrome/browser/chromeos/policy/cloud_external_data_manager_base.h"
14 #include "components/policy/core/common/policy_details.h"
20 namespace policy { namespace
31 // is necessary because a device-local account can be removed from policy (thus
43 // data referenced by each policy can have. Download scheduling, verification,
65 } // namespace policy

Completed in 248 milliseconds

1234567891011>>