HomeSort by relevance Sort by last modified time
    Searched refs:Policy (Results 151 - 175 of 301) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/ppp/pppd/plugins/radius/etc/
dictionary.microsoft 15 ATTRIBUTE MS-MPPE-Encryption-Policy 7 string Microsoft
  /frameworks/base/core/java/android/os/
StrictMode.java 133 * enable/disable policy.
165 // Byte 1: Thread-policy
205 // Byte 2: Process-policy
366 * {@link StrictMode} policy applied to a certain thread.
368 * <p>The policy is enabled by {@link #setThreadPolicy}. The current policy
378 * The default, lax policy which doesn't catch anything.
405 * StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder()
409 * StrictMode.setThreadPolicy(policy);
428 public Builder(ThreadPolicy policy) {
1014 final BlockGuard.Policy policy = BlockGuard.getThreadPolicy(); local
1759 VmPolicy policy = getVmPolicy(); local
2148 BlockGuard.Policy policy = BlockGuard.getThreadPolicy(); local
2335 BlockGuard.Policy policy = BlockGuard.getThreadPolicy(); local
2355 BlockGuard.Policy policy = BlockGuard.getThreadPolicy(); local
2367 BlockGuard.Policy policy = BlockGuard.getThreadPolicy(); local
2379 BlockGuard.Policy policy = BlockGuard.getThreadPolicy(); local
2391 BlockGuard.Policy policy = BlockGuard.getThreadPolicy(); local
2500 public final int policy; field in class:StrictMode.ViolationInfo
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6ConfigImpl.c 36 Update the current policy to NewPolicy. During the transition
41 @param[in] NewPolicy The new policy to be updated to.
629 policy for the EFI IPv6 network stack that is running on the communication device
630 managed by this IP6Config instance. The policy will affect other configuration settings.
636 @retval EFI_INVALID_PARAMETER The to be set policy is invalid.
638 @retval EFI_ABORTED The new policy equals the current policy.
664 if (NewPolicy == Instance->Policy) {
699 // The policy is changed from automatic to manual. Stop the DHCPv6 process
710 Instance->Policy = NewPolicy;
    [all...]
  /external/clang/lib/AST/
ASTDiagnostic.cpp 464 /// Policy - Used during expression printing.
465 PrintingPolicy Policy;
    [all...]
NestedNameSpecifier.cpp 264 const PrintingPolicy &Policy) const {
266 getPrefix()->print(OS, Policy);
298 PrintingPolicy InnerPolicy(Policy);
DeclTemplate.cpp 754 raw_ostream &OS, const PrintingPolicy &Policy, bool Qualified) const {
755 NamedDecl::getNameForDiagnostic(OS, Policy, Qualified);
759 OS, TemplateArgs.asArray(), Policy);
    [all...]
  /external/clang/include/clang/AST/
Type.h 512 std::string getAsString(const PrintingPolicy &Policy) const;
514 bool isEmptyWhenPrinted(const PrintingPolicy &Policy) const;
515 void print(raw_ostream &OS, const PrintingPolicy &Policy,
932 std::string getAsString(const PrintingPolicy &Policy) const;
934 void print(raw_ostream &OS, const PrintingPolicy &Policy,
937 print(split(), OS, Policy, PlaceHolder, Indentation);
940 const PrintingPolicy &policy, const Twine &PlaceHolder,
942 return print(split.Ty, split.Quals, OS, policy, PlaceHolder, Indentation);
945 raw_ostream &OS, const PrintingPolicy &policy,
950 const PrintingPolicy &Policy) const
    [all...]
NestedNameSpecifier.h 211 void print(raw_ostream &OS, const PrintingPolicy &Policy) const;
TemplateName.h 284 void print(raw_ostream &OS, const PrintingPolicy &Policy,
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSettingsFragment.java 59 import com.android.emailcommon.provider.Policy;
103 @SuppressWarnings("unused") // temporarily unused pending policy UI
105 @SuppressWarnings("unused") // temporarily unused pending policy UI
464 Policy.restorePolicyWithId(getContext(), account.mPolicyKey, mObserver);
587 * From a Policy, create and return an ArrayList of Strings that describe (simply) those
591 @SuppressWarnings("unused") // temporarily unused pending policy UI
592 private ArrayList<String> getSystemPoliciesList(Policy policy) {
595 if (policy.mPasswordMode != Policy.PASSWORD_MODE_NONE)
    [all...]
  /external/clang/unittests/AST/
DeclPrinterTest.cpp 35 PrintingPolicy Policy = Context->getPrintingPolicy();
36 Policy.TerseOutput = true;
37 D->print(Out, Policy, /*Indentation*/ 0, /*PrintInstantiation*/ false);
    [all...]
  /system/update_engine/
p2p_manager.cc 52 #include "update_engine/update_manager/policy.h"
63 using chromeos_update_manager::Policy;
125 void SetDevicePolicy(const policy::DevicePolicy* device_policy) override;
172 // The device policy being used or null if no policy is being used.
173 const policy::DevicePolicy* device_policy_ = nullptr;
234 const policy::DevicePolicy* device_policy) {
241 if (update_manager_->PolicyRequest(&Policy::P2PEnabled, &is_enabled_) ==
696 update_manager_->AsyncPolicyRequest(callback, &Policy::P2PEnabledChanged,
  /device/linaro/bootloader/edk2/NetworkPkg/UefiPxeBcDxe/
PxeBcDhcp6.c 1004 // Select offer by default policy.
    [all...]
  /external/clang/lib/Sema/
Sema.cpp 54 PrintingPolicy Policy = Context.getPrintingPolicy();
55 // Our printing policy is copied over the ASTContext printing policy whenever
57 Policy.Bool = Context.getLangOpts().Bool;
58 if (!Policy.Bool) {
60 Policy.Bool = BoolMacro->isObjectLike() &&
66 return Policy;
    [all...]
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
CycleDetectingLockFactoryTest.java 21 import com.google.common.util.concurrent.CycleDetectingLockFactory.Policy;
95 newInstanceWithExplicitOrdering(Class<E> enumClass, Policy policy) {
97 policy, CycleDetectingLockFactory.createNodes(enumClass));
463 // created by a factory with the WARN policy.
  /external/libchrome/sandbox/linux/bpf_dsl/
policy_compiler.cc 19 #include "sandbox/linux/bpf_dsl/policy.h"
73 bool HasUnsafeTraps(const Policy* policy) {
74 DCHECK(policy);
76 if (policy->EvaluateSyscall(sysnum)->HasUnsafeTraps()) {
80 return policy->InvalidSyscall()->HasUnsafeTraps();
90 PolicyCompiler::PolicyCompiler(const Policy* policy, TrapRegistry* registry)
91 : policy_(policy),
97 DCHECK(policy);
    [all...]
  /external/owasp/sanitizer/src/main/org/owasp/html/
HtmlPolicyBuilder.java 52 * To create a policy, first construct an instance of this class; then call
58 * // Define the policy.
59 * Function&lt;HtmlStreamEventReceiver, HtmlSanitizer.Policy&gt; policy
66 * HtmlSanitizer.sanitize(myHtml, policy.apply(myHtmlStreamRenderer));
73 * There is a {@link HtmlPolicyBuilder#allowStandardUrlProtocols canned policy}
82 * Use a custom element or attribute policy to allow through
97 * own {@link ElementPolicy element policy} or
98 * {@link AttributePolicy attribute policy} when calling
100 * E.g. to convert headers into {@code <div>}s, you could use an element policy
604 AttributePolicy policy = ape.getValue(); local
612 AttributePolicy policy = AttributePolicy.Util.join( local
636 private AttributePolicy policy = AttributePolicy.IDENTITY_ATTRIBUTE_POLICY; field in class:HtmlPolicyBuilder.AttributeBuilder
    [all...]
  /packages/apps/Email/tests/src/com/android/email/provider/
ProviderTests.java 51 import com.android.emailcommon.provider.Policy;
    [all...]
  /external/llvm/lib/CodeGen/
MachineScheduler.cpp 874 // ScheduleDAGMI initializes SchedImpl's per-region policy.
    [all...]
  /external/clang/lib/Analysis/
CFG.cpp     [all...]
  /external/libchrome/sandbox/linux/seccomp-bpf/
syscall_unittest.cc 23 #include "sandbox/linux/bpf_dsl/policy.h"
111 class CopyAllArgsOnUnamePolicy : public bpf_dsl::Policy {
  /external/llvm/lib/Target/AMDGPU/
AMDGPUSubtarget.h 376 void overrideSchedPolicy(MachineSchedPolicy &Policy,
  /external/owasp/sanitizer/src/tests/org/owasp/html/
HtmlStreamRendererTest.java 295 HtmlSanitizer.sanitize(htmlInput, new HtmlSanitizer.Policy() {
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
HtmlSanitizer.java 138 * This sanitizer policy removes these elements and the content within:
148 * This sanitizer policy removes these elements but preserves the content within:
162 * This sanitizer policy removes these attributes from all elements:
397 // create a thread-specific policy
398 final org.owasp.html.HtmlSanitizer.Policy policy = POLICY_DEFINITION.apply(renderer); local
403 org.owasp.html.HtmlSanitizer.sanitize(rawHtml, policy);
  /system/sepolicy/tests/
policy.py 16 class Policy:
49 sys.exit("Failed to import policy")
94 sys.exit("Failed to import policy")
142 # load policy
148 sys.exit("Failed to load policy")

Completed in 655 milliseconds

1 2 3 4 5 67 8 91011>>