HomeSort by relevance Sort by last modified time
    Searched refs:Policy (Results 101 - 125 of 268) sorted by null

1 2 3 45 6 7 8 91011

  /art/compiler/optimizing/
locations.h 67 // a policy that specifies what kind of location is suitable. Payload
68 // contains register allocation policy.
328 enum Policy {
339 static Location UnallocatedLocation(Policy policy) {
340 return Location(kUnallocated, PolicyField::Encode(policy));
368 Policy GetPolicy() const {
396 typedef BitField<Policy, 0, 3> PolicyField;
408 std::ostream& operator<<(std::ostream& os, const Location::Policy& rhs);
  /packages/apps/Email/provider_src/com/android/email/provider/
DBHelper.java 57 import com.android.emailcommon.provider.Policy;
100 "; delete from " + Policy.TABLE_NAME +
132 // Version 19: Add Policy table; add policyKey to Account table and trigger to delete an
133 // Account's policy when the Account is deleted
134 // Version 20: Add new policies to Policy table
143 // Version 29: Add protocolPoliciesEnforced and protocolPoliciesUnsupported to Policy
559 db.execSQL("create table " + Policy.TABLE_NAME + s);
1500 Policy policy = LegacyPolicySet.flagsToPolicy(securityFlags); local
    [all...]
  /external/clang/lib/Sema/
SemaCodeComplete.cpp     [all...]
  /external/clang/include/clang/AST/
Attr.h 113 void printPretty(raw_ostream &OS, const PrintingPolicy &Policy) const;
  /external/libbrillo/brillo/
backoff_entry.cc 17 BackoffEntry::BackoffEntry(const BackoffEntry::Policy* const policy)
18 : policy_(policy) {
  /external/libweave/src/
backoff_entry.cc 16 BackoffEntry::BackoffEntry(const BackoffEntry::Policy* const policy)
17 : policy_(policy) {
  /external/llvm/lib/Target/AArch64/
AArch64Subtarget.h 169 void overrideSchedPolicy(MachineSchedPolicy &Policy, MachineInstr *begin,
  /external/owasp/sanitizer/src/tests/org/owasp/html/
HtmlPolicyBuilderTest.java 292 HtmlSanitizer.Policy policy = b.build(HtmlStreamRenderer.create(sb, local
296 HtmlSanitizer.sanitize(src, policy);
  /frameworks/base/core/java/android/app/
INotificationManager.aidl 96 NotificationManager.Policy getNotificationPolicy(String pkg);
97 void setNotificationPolicy(String pkg, in NotificationManager.Policy policy);
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountCheckSettingsFragment.java 35 import com.android.emailcommon.provider.Policy;
99 * Called when we determine that a security policy will need to be installed
232 // report that we need to accept a security policy
401 mSetupData.setPolicy((Policy)bundle.getParcelable(
405 final Policy policy = bundle.getParcelable( local
407 final String unsupported = policy.mProtocolPoliciesUnsupported;
409 unsupported.split("" + Policy.POLICY_STRING_DELIMITER);
AccountSetupOptionsFragment.java 31 import com.android.emailcommon.provider.Policy;
142 // Find a proper maximum for email lookback, based on policy (if we have one)
144 final Policy policy = account.mPolicy; local
145 if (policy != null) {
146 final int maxLookback = policy.mMaxEmailLookback;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
rpcdcep.h 160 RPCRTAPI RPC_STATUS RPC_ENTRY I_RpcServerUseProtseqEp2A(RPC_CSTR NetworkAddress,RPC_CSTR Protseq,unsigned int MaxCalls,RPC_CSTR Endpoint,void *SecurityDescriptor,void *Policy);
161 RPCRTAPI RPC_STATUS RPC_ENTRY I_RpcServerUseProtseqEp2W(RPC_WSTR NetworkAddress,RPC_WSTR Protseq,unsigned int MaxCalls,RPC_WSTR Endpoint,void *SecurityDescriptor,void *Policy);
162 RPCRTAPI RPC_STATUS RPC_ENTRY I_RpcServerUseProtseq2W(RPC_WSTR NetworkAddress,RPC_WSTR Protseq,unsigned int MaxCalls,void *SecurityDescriptor,void *Policy);
163 RPCRTAPI RPC_STATUS RPC_ENTRY I_RpcServerUseProtseq2A(RPC_CSTR NetworkAddress,RPC_CSTR Protseq,unsigned int MaxCalls,void *SecurityDescriptor,void *Policy);
rpcdce.h 223 RPCRTAPI RPC_STATUS RPC_ENTRY RpcServerUseAllProtseqsEx(unsigned int MaxCalls,void *SecurityDescriptor,PRPC_POLICY Policy);
225 RPCRTAPI RPC_STATUS RPC_ENTRY RpcServerUseAllProtseqsIfEx(unsigned int MaxCalls,RPC_IF_HANDLE IfSpec,void *SecurityDescriptor,PRPC_POLICY Policy);
227 RPCRTAPI RPC_STATUS RPC_ENTRY RpcServerUseProtseqExA(RPC_CSTR Protseq,unsigned int MaxCalls,void *SecurityDescriptor,PRPC_POLICY Policy);
229 RPCRTAPI RPC_STATUS RPC_ENTRY RpcServerUseProtseqExW(RPC_WSTR Protseq,unsigned int MaxCalls,void *SecurityDescriptor,PRPC_POLICY Policy);
231 RPCRTAPI RPC_STATUS RPC_ENTRY RpcServerUseProtseqEpExA(RPC_CSTR Protseq,unsigned int MaxCalls,RPC_CSTR Endpoint,void *SecurityDescriptor,PRPC_POLICY Policy);
233 RPCRTAPI RPC_STATUS RPC_ENTRY RpcServerUseProtseqEpExW(RPC_WSTR Protseq,unsigned int MaxCalls,RPC_WSTR Endpoint,void *SecurityDescriptor,PRPC_POLICY Policy);
235 RPCRTAPI RPC_STATUS RPC_ENTRY RpcServerUseProtseqIfExA(RPC_CSTR Protseq,unsigned int MaxCalls,RPC_IF_HANDLE IfSpec,void *SecurityDescriptor,PRPC_POLICY Policy);
237 RPCRTAPI RPC_STATUS RPC_ENTRY RpcServerUseProtseqIfExW(RPC_WSTR Protseq,unsigned int MaxCalls,RPC_IF_HANDLE IfSpec,void *SecurityDescriptor,PRPC_POLICY Policy);
  /system/update_engine/update_manager/
chromeos_policy.h 25 #include "update_engine/update_manager/policy.h"
51 // ChromeOSPolicy implements the policy-related logic used in ChromeOS.
52 class ChromeOSPolicy : public Policy {
57 // Policy overrides.
89 // Policy override.
138 // A private policy implementation returning the wallclock timestamp when
153 // A private policy for determining backoff and the download URL to use.
181 // A private policy for checking whether scattering is due. Writes in |result|
184 // current scatter factor provided by the device policy (if available) or the
  /external/clang/lib/Parse/
ParseDecl.cpp     [all...]
ParseExprCXX.cpp     [all...]
  /development/samples/training/device-management-policy/src/com/example/training/deviceadmin/
PolicySetupActivity.java 37 * screens to the user -- a screen for configuring device administration policy and another screen
38 * for viewing configured policy. When it is detected that the screen-lock password satisfies
39 * the password strength required by the policy, the user is sent to an Activity containing
49 // UI controls in policy setup screen.
54 private Policy mPolicy;
60 mPolicy = new Policy(this);
118 // Initialize policy set up screen.
143 // Read previously saved policy and populate on the UI.
160 // Initialize policy viewing screen.
165 // Read previously saved policy and populate on the UI
    [all...]
  /device/sample/apps/SampleEmailPolicy/
Android.mk 17 # This is the makefile for the Email Policy package contained elsewhere in this sample.
  /frameworks/base/packages/Osu/src/com/android/hotspot2/pps/
Policy.java 29 public class Policy {
37 public Policy(OMANode node) throws OMAException {
186 return "Policy{" +
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/pps/
Policy.java 29 public class Policy {
37 public Policy(OMANode node) throws OMAException {
199 return "Policy{" +
  /frameworks/opt/net/wifi/tests/wifitests/assets/
r1.PerProviderSubscription.conf 23 6:Policy+
28 3:URI=58:https://policy-server.r2-testbed-rks.wi-fi.org:9445/OnlineSignup/services/doAuthenticate
34 7:CertURL=3d:http://www.r2-testbed.wi-fi.org/policy-rootcert-networkfx.der
r2.PerProviderSubscription.conf 6 6:Policy+
11 3:URI=58:https://policy-server.r2-testbed-rks.wi-fi.org:9445/OnlineSignup/services/doAuthenticate
17 7:CertURL=3d:http://www.r2-testbed.wi-fi.org/policy-rootcert-networkfx.der
ruckus.PerProviderSubscription.conf 6 6:Policy+
11 3:URI=58:https://policy-server.r2-testbed-rks.wi-fi.org:9445/OnlineSignup/services/doAuthenticate
17 7:CertURL=3d:http://www.r2-testbed.wi-fi.org/policy-rootcert-networkfx.der
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
EmailServiceProxy.java 29 import com.android.emailcommon.provider.Policy;
164 bundle.setClassLoader(Policy.class.getClassLoader());
  /external/clang/include/clang/Sema/
DeclSpec.h 519 const PrintingPolicy &Policy);
608 const PrintingPolicy &Policy);
612 unsigned &DiagID, const PrintingPolicy &Policy);
618 unsigned &DiagID, const PrintingPolicy &Policy);
621 const PrintingPolicy &Policy);
624 const PrintingPolicy &Policy);
628 const PrintingPolicy &Policy);
632 const PrintingPolicy &Policy);
636 const PrintingPolicy &policy);
639 const PrintingPolicy &Policy);
    [all...]

Completed in 595 milliseconds

1 2 3 45 6 7 8 91011