HomeSort by relevance Sort by last modified time
    Searched refs:Policy (Results 76 - 100 of 455) sorted by null

1 2 34 5 6 7 8 91011>>

  /frameworks/base/wifi/tests/src/android/net/wifi/hotspot2/omadm/
PpsMoParserTest.java 26 import android.net.wifi.hotspot2.pps.Policy;
164 // Policy configuration.
165 Policy policy = new Policy(); local
166 List<Policy.RoamingPartner> preferredRoamingPartnerList = new ArrayList<>();
167 Policy.RoamingPartner partner1 = new Policy.RoamingPartner();
172 Policy.RoamingPartner partner2 = new Policy.RoamingPartner()
    [all...]
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/
PasspointXmlUtilsTest.java 25 import android.net.wifi.hotspot2.pps.Policy;
137 // Policy configuration.
138 Policy policy = new Policy(); local
139 List<Policy.RoamingPartner> preferredRoamingPartnerList = new ArrayList<>();
140 Policy.RoamingPartner partner1 = new Policy.RoamingPartner();
145 Policy.RoamingPartner partner2 = new Policy.RoamingPartner()
    [all...]
  /packages/apps/Email/provider_src/com/android/email/
SecurityPolicy.java 46 import com.android.emailcommon.provider.Policy;
64 private Policy mAggregatePolicy;
76 * Get the security policy instance
103 * Compute the aggregate policy for all accounts that require it, and record it.
116 * @return a policy representing the strongest aggregate. If no policy sets are defined,
117 * a lightweight "nothing required" policy will be returned. Never null.
120 Policy computeAggregatePolicy() {
122 Policy aggregate = new Policy();
140 Policy policy = new Policy(); local
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/hotspot2/pps/
Policy.java 34 * Class representing Policy subtree in PerProviderSubscription (PPS)
37 * The Policy specifies additional criteria for Passpoint network selections, such as preferred
39 * updating the policy.
46 public final class Policy implements Parcelable {
47 private static final String TAG = "Policy";
141 * This specifies the maximum acceptable BSS load policy. This is used to prevent device
154 * Policy associated with a roaming provider. This specifies a priority associated
157 * Contains field under PerProviderSubscription/Policy/PreferredRoamingPartnerList.
186 * Priority associated with this roaming partner policy.
309 * Meta data used for policy update
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
Attrs.inc 37 const PrintingPolicy &Policy) const;
73 const PrintingPolicy &Policy) const;
105 const PrintingPolicy &Policy) const;
151 const PrintingPolicy &Policy) const;
205 const PrintingPolicy &Policy) const;
260 const PrintingPolicy &Policy) const;
284 const PrintingPolicy &Policy) const;
330 const PrintingPolicy &Policy) const;
384 const PrintingPolicy &Policy) const;
443 const PrintingPolicy &Policy) const
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
Attrs.inc 37 const PrintingPolicy &Policy) const;
73 const PrintingPolicy &Policy) const;
105 const PrintingPolicy &Policy) const;
151 const PrintingPolicy &Policy) const;
205 const PrintingPolicy &Policy) const;
260 const PrintingPolicy &Policy) const;
284 const PrintingPolicy &Policy) const;
330 const PrintingPolicy &Policy) const;
384 const PrintingPolicy &Policy) const;
443 const PrintingPolicy &Policy) const
    [all...]
  /frameworks/base/wifi/tests/src/android/net/wifi/hotspot2/
PasspointConfigurationTest.java 25 import android.net.wifi.hotspot2.pps.Policy;
81 * Helper function for creating a {@link Policy} for testing.
83 * @return {@link Policy}
85 private static Policy createPolicy() {
86 Policy policy = new Policy(); local
87 policy.setMinHomeDownlinkBandwidth(123);
88 policy.setMinHomeUplinkBandwidth(345);
89 policy.setMinRoamingDownlinkBandwidth(567)
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/
Ip4Config2Impl.h 114 EFI_IP4_CONFIG2_POLICY *Policy;
141 // EFI_IP4_CONFIG2_POLICY Policy;
158 EFI_IP4_CONFIG2_POLICY Policy; ///< manual or automatic
184 EFI_IP4_CONFIG2_POLICY Policy;
  /external/clang/unittests/AST/
NamedDeclPrinterTest.cpp 49 PrintingPolicy Policy = Result.Context->getPrintingPolicy();
50 Policy.SuppressUnwrittenScope = SuppressUnwrittenScope;
51 ND->printQualifiedName(Out, Policy);
  /packages/apps/Settings/src/com/android/settings/notification/
ZenModeSettings.java 22 import android.app.NotificationManager.Policy;
68 private Policy mPolicy;
355 String getPrioritySettingSummary(Policy policy) {
357 s = prepend(s, isCategoryEnabled(policy, Policy.PRIORITY_CATEGORY_EVENTS),
359 s = prepend(s, isCategoryEnabled(policy, Policy.PRIORITY_CATEGORY_REMINDERS),
361 if (isCategoryEnabled(policy, Policy.PRIORITY_CATEGORY_MESSAGES))
    [all...]
  /external/clang/lib/Sema/
DeclSpec.cpp 448 const PrintingPolicy &Policy) {
453 case DeclSpec::TST_wchar: return Policy.MSWChar ? "__wchar_t" : "wchar_t";
462 case DeclSpec::TST_bool: return Policy.Bool ? "bool" : "_Bool";
505 const PrintingPolicy &Policy) {
540 return SetTypeSpecType(TST_auto, Loc, PrevSpec, DiagID, Policy);
543 PrevSpec, DiagID, Policy);
580 const PrintingPolicy &Policy) {
616 const PrintingPolicy &Policy) {
617 return SetTypeSpecType(T, Loc, Loc, PrevSpec, DiagID, Rep, Policy);
625 const PrintingPolicy &Policy) {
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Application/IfConfig6/
IfConfig6.h 51 EFI_IP6_CONFIG_POLICY Policy;
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6NvData.h 59 UINT32 Policy; ///< manual or automatic
  /external/libchrome/sandbox/linux/seccomp-bpf-helpers/
syscall_parameters_restrictions_unittests.cc 22 #include "sandbox/linux/bpf_dsl/policy.h"
46 class RestrictClockIdPolicy : public bpf_dsl::Policy {
114 class RestrictSchedPolicy : public bpf_dsl::Policy {
182 class RestrictPrlimit64Policy : public bpf_dsl::Policy {
211 class RestrictGetrusagePolicy : public bpf_dsl::Policy {
  /external/llvm/lib/Target/PowerPC/
PPCSubtarget.cpp 201 void PPCSubtarget::overrideSchedPolicy(MachineSchedPolicy &Policy,
204 Policy.OnlyTopDown = false;
205 Policy.OnlyBottomUp = false;
210 Policy.ShouldTrackPressure = true;
  /frameworks/ml/nn/driver/cache/BlobCache/
BlobCache.h 63 typedef std::pair<Select, Capacity> Policy;
65 static Policy defaultPolicy() { return Policy(Select::DEFAULT, Capacity::DEFAULT); }
72 Policy policy = defaultPolicy());
340 // recently an entry was accessed, for the Select::LRU policy.
  /packages/apps/Dialer/java/com/android/voicemail/impl/scheduling/
MinimalIntervalPolicy.java 24 * If a task with this policy succeeds, a {@link BlockerTask} with the same {@link TaskId} of the
28 public class MinimalIntervalPolicy implements Policy {
  /packages/apps/Settings/tests/robotests/src/com/android/settings/notification/
ZenModeSettingsTest.java 83 NotificationManager.Policy policy = new NotificationManager.Policy(
84 NotificationManager.Policy.PRIORITY_CATEGORY_EVENTS
85 | NotificationManager.Policy.PRIORITY_CATEGORY_REMINDERS,
87 final String result = mBuilder.getPrioritySettingSummary(policy);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/LTO/legacy/
ThinLTOCodeGenerator.h 144 CachePruningPolicy Policy;
151 /// Cache policy: interval (seconds) between two prune of the cache. Set to a
155 CacheOptions.Policy.Interval = std::chrono::seconds(Interval);
158 /// Cache policy: expiration (in seconds) for an entry.
162 CacheOptions.Policy.Expiration = std::chrono::seconds(Expiration);
180 CacheOptions.Policy.PercentageOfAvailableSpace = Percentage;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/LTO/legacy/
ThinLTOCodeGenerator.h 144 CachePruningPolicy Policy;
151 /// Cache policy: interval (seconds) between two prune of the cache. Set to a
155 CacheOptions.Policy.Interval = std::chrono::seconds(Interval);
158 /// Cache policy: expiration (in seconds) for an entry.
162 CacheOptions.Policy.Expiration = std::chrono::seconds(Expiration);
180 CacheOptions.Policy.PercentageOfAvailableSpace = Percentage;
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/LTO/legacy/
ThinLTOCodeGenerator.h 144 CachePruningPolicy Policy;
151 /// Cache policy: interval (seconds) between two prune of the cache. Set to a
155 CacheOptions.Policy.Interval = std::chrono::seconds(Interval);
158 /// Cache policy: expiration (in seconds) for an entry.
162 CacheOptions.Policy.Expiration = std::chrono::seconds(Expiration);
180 CacheOptions.Policy.PercentageOfAvailableSpace = Percentage;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/LTO/legacy/
ThinLTOCodeGenerator.h 144 CachePruningPolicy Policy;
151 /// Cache policy: interval (seconds) between two prune of the cache. Set to a
155 CacheOptions.Policy.Interval = std::chrono::seconds(Interval);
158 /// Cache policy: expiration (in seconds) for an entry.
162 CacheOptions.Policy.Expiration = std::chrono::seconds(Expiration);
180 CacheOptions.Policy.PercentageOfAvailableSpace = Percentage;
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/LTO/legacy/
ThinLTOCodeGenerator.h 144 CachePruningPolicy Policy;
151 /// Cache policy: interval (seconds) between two prune of the cache. Set to a
155 CacheOptions.Policy.Interval = std::chrono::seconds(Interval);
158 /// Cache policy: expiration (in seconds) for an entry.
162 CacheOptions.Policy.Expiration = std::chrono::seconds(Expiration);
180 CacheOptions.Policy.PercentageOfAvailableSpace = Percentage;
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/LTO/legacy/
ThinLTOCodeGenerator.h 144 CachePruningPolicy Policy;
151 /// Cache policy: interval (seconds) between two prune of the cache. Set to a
155 CacheOptions.Policy.Interval = std::chrono::seconds(Interval);
158 /// Cache policy: expiration (in seconds) for an entry.
162 CacheOptions.Policy.Expiration = std::chrono::seconds(Expiration);
180 CacheOptions.Policy.PercentageOfAvailableSpace = Percentage;
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/LTO/legacy/
ThinLTOCodeGenerator.h 144 CachePruningPolicy Policy;
151 /// Cache policy: interval (seconds) between two prune of the cache. Set to a
155 CacheOptions.Policy.Interval = std::chrono::seconds(Interval);
158 /// Cache policy: expiration (in seconds) for an entry.
162 CacheOptions.Policy.Expiration = std::chrono::seconds(Expiration);
180 CacheOptions.Policy.PercentageOfAvailableSpace = Percentage;

Completed in 1535 milliseconds

1 2 34 5 6 7 8 91011>>