HomeSort by relevance Sort by last modified time
    Searched defs:reasons (Results 1 - 25 of 61) sorted by null

1 2 3

  /libcore/luni/src/test/java/libcore/java/security/cert/
CRLReasonTest.java 39 CRLReason[] reasons = CRLReason.values(); local
40 assertEquals(11, reasons.length);
41 assertEquals(CRLReason.UNSPECIFIED, reasons[0]);
42 assertEquals(CRLReason.KEY_COMPROMISE, reasons[1]);
43 assertEquals(CRLReason.CA_COMPROMISE, reasons[2]);
44 assertEquals(CRLReason.AFFILIATION_CHANGED, reasons[3]);
45 assertEquals(CRLReason.SUPERSEDED, reasons[4]);
46 assertEquals(CRLReason.CESSATION_OF_OPERATION, reasons[5]);
47 assertEquals(CRLReason.CERTIFICATE_HOLD, reasons[6]);
48 assertEquals(CRLReason.UNUSED, reasons[7])
    [all...]
  /external/libmicrohttpd/src/microhttpd/
reason_phrase.c 116 "Unavailable For Legal Reasons"
142 static const struct MHD_Reason_Block reasons[] = { variable in typeref:struct:MHD_Reason_Block
157 (reasons[code / 100].max > (code % 100)) )
158 return reasons[code / 100].data[code % 100];
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
ReasonFlags.java 71 * @param reasons - the bitwise OR of the Key Reason flags giving the
75 int reasons)
77 super(getBytes(reasons), getPadBits(reasons));
81 DERBitString reasons)
83 super(reasons.getBytes(), reasons.getPadBits());
DistributionPoint.java 18 * reasons [1] ReasonFlags OPTIONAL,
27 ReasonFlags reasons; field in class:DistributionPoint
65 reasons = new ReasonFlags(DERBitString.getInstance(t, false));
78 ReasonFlags reasons,
82 this.reasons = reasons;
93 return reasons;
113 if (reasons != null)
115 v.add(new DERTaggedObject(false, 1, reasons));
136 if (reasons != null
    [all...]
  /external/v8/tools/
trace-maps-processor.py 16 "count Count most frequent transition reasons\n" % sys.argv[0])
159 reasons = {} variable
163 if reason not in reasons:
164 reasons[reason] = 1
166 reasons[reason] += 1
168 for r in reasons:
169 reasons_list.append("%8d %s" % (reasons[r], r))
  /cts/tests/tests/media/src/android/media/cts/
ResourceManagerStubActivity.java 115 String failMessage = "The potential reasons for the failure:\n";
116 StringBuilder reasons = new StringBuilder(); local
117 reasons.append(ERROR_INSUFFICIENT_RESOURCES);
119 reasons.append(ERROR_SUPPORTS_SECURE_WITH_NON_SECURE_CODEC);
123 reasons.append(ERROR_SUPPORTS_MULTIPLE_SECURE_CODECS);
125 Assert.assertTrue(failMessage + reasons.toString(), result);
  /frameworks/base/services/tests/servicestests/src/com/android/server/pm/dex/
DexoptOptionsTests.java 94 int[] reasons = new int[] { local
102 for (int reason : reasons) {
  /libcore/ojluni/src/main/java/sun/security/x509/
DistributionPoint.java 43 * reasons [1] ReasonFlags OPTIONAL,
88 * performance reasons. It is the responsibility of the consumer to ensure
146 * @param reasons the CRL reasons included in the CRL at this distribution
168 * @param reasons the CRL reasons included in the CRL at this distribution
222 throw new IOException("Duplicate Reasons in " +
304 DerOutputStream reasons = new DerOutputStream(); local
306 reasons.putTruncatedUnalignedBitString(rf);
309 reasons); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
RecentsAnimationController.java 381 final SparseIntArray reasons = new SparseIntArray(); local
382 reasons.put(WINDOWING_MODE_FULLSCREEN, APP_TRANSITION_RECENTS_ANIM);
384 reasons).sendToTarget();
  /system/core/init/
reboot.cpp 340 std::vector<std::string> reasons = Split(reason, ","); local
341 if (reasons.size() >= 2 && reasons[0] == "reboot" &&
342 (reasons[1] == "recovery" || reasons[1] == "bootloader" || reasons[1] == "cold" ||
343 reasons[1] == "hard" || reasons[1] == "warm")) {
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
DistributionPointFetcher.java 303 * @param reasonsMask the interim reasons mask
539 // compute interim reasons mask
541 ReasonFlags reasons = null; local
543 reasons = (ReasonFlags)
544 idpExt.get(IssuingDistributionPointExtension.REASONS);
548 if (reasons != null) {
550 // set interim reasons mask to the intersection of
551 // reasons in the DP and onlySomeReasons in the IDP
552 boolean[] idpReasonFlags = reasons.getFlags();
559 // set interim reasons mask to the value o
    [all...]
  /packages/apps/Email/provider_src/com/android/email/
SecurityPolicy.java 133 // This can never be supported at this time. It exists only for historic reasons where
250 int reasons = getInactiveReasons(policy); local
251 if (DebugUtils.DEBUG && (reasons != 0)) {
254 if ((reasons & INACTIVE_NEED_ACTIVATION) != 0) {
257 if ((reasons & INACTIVE_NEED_CONFIGURATION) != 0) {
260 if ((reasons & INACTIVE_NEED_PASSWORD) != 0) {
263 if ((reasons & INACTIVE_NEED_ENCRYPTION) != 0) {
266 if ((reasons & INACTIVE_PROTOCOL_POLICIES) != 0) {
271 return reasons == 0;
328 int reasons = 0 local
    [all...]
  /external/boringssl/src/crypto/x509/
x509_vfy.c 930 * If reasons not updated we wont get anywhere by another iteration,
1010 unsigned int reasons, best_reasons = 0; local
1017 reasons = *preasons;
1018 crl_score = get_crl_score(ctx, &crl_issuer, &reasons, crl, x);
1472 unsigned int reasons; local
    [all...]
  /external/v8/src/inspector/
v8-debugger-agent-impl.cc 1147 std::unique_ptr<protocol::ListValue> reasons = local
    [all...]
  /packages/apps/TV/src/com/android/tv/util/
Utils.java 187 long reasons = getRecordingFailedReasons(context) | 0x1 << reason; local
190 .putLong(PREF_KEY_RECORDING_FAILED_REASONS, reasons)
217 long reasons = getRecordingFailedReasons(context) & ~(0x1 << reason); local
220 .putLong(PREF_KEY_RECORDING_FAILED_REASONS, reasons)
258 long reasons = getRecordingFailedReasons(context); local
259 return (reasons & 0x1 << reason) != 0;
    [all...]
  /packages/services/Telephony/src/com/android/phone/
PhoneGlobals.java 826 DataConnectionReasons reasons = new DataConnectionReasons(); local
    [all...]
  /external/libpcap/
grammar.c 259 const char *reasons[] = PFRES_NAMES; local
262 for (i = 0; reasons[i]; i++) {
263 if (pcap_strcasecmp(reason, reasons[i]) == 0)
    [all...]
  /frameworks/base/tools/aapt/
Command.cpp 488 * List of human-readable reasons for why this feature was implied.
490 SortedVector<String8> reasons; member in struct:ImpliedFeature
554 feature->reasons.add(reason);
598 const size_t numReasons = impliedFeature.reasons.size();
600 printf("%s", impliedFeature.reasons[j].string());
    [all...]
  /external/boringssl/src/include/openssl/
x509v3.h 242 /* All existing reasons */
259 ASN1_BIT_STRING *reasons; member in struct:DIST_POINT_st
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DcTracker.java 1243 DataConnectionReasons reasons = new DataConnectionReasons(); local
    [all...]
  /frameworks/base/core/java/android/os/
BatteryStats.java 5200 final ArrayList<TimerEntry> reasons = new ArrayList<>(); local
7322 final int[] reasons = new int[]{ local
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/felix/org.apache.felix.bundlerepository/1.6.6/
org.apache.felix.bundlerepository-1.6.6.jar 
  /prebuilts/tools/common/m2/repository/com/google/http-client/google-http-client/1.19.0/
google-http-client-1.19.0.jar 
  /prebuilts/tools/common/m2/repository/com/google/http-client/google-http-client/1.22.0/
google-http-client-1.22.0.jar 
  /prebuilts/sdk/tools/lib/
signapk.jar 

Completed in 1057 milliseconds

1 2 3