HomeSort by relevance Sort by last modified time
    Searched full:critical (Results 1 - 25 of 1084) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
X509ExtensionsGenerator.java 36 boolean critical,
39 addExtension(new ASN1ObjectIdentifier(oid.getId()), critical, value);
47 boolean critical,
50 addExtension(new ASN1ObjectIdentifier(oid.getId()), critical, value);
58 * @param critical true if critical, false otherwise.
63 boolean critical,
68 this.addExtension(oid, critical, value.toASN1Primitive().getEncoded(ASN1Encoding.DER));
81 * @param critical true if critical, false otherwise
    [all...]
ExtensionsGenerator.java 34 * @param critical true if critical, false otherwise.
39 boolean critical,
43 this.addExtension(oid, critical, value.toASN1Primitive().getEncoded(ASN1Encoding.DER));
51 * @param critical true if critical, false otherwise.
56 boolean critical,
65 extensions.put(oid, new Extension(oid, critical, new DEROctetString(value)));
Extension.java 174 boolean critical; field in class:Extension
179 ASN1Boolean critical,
182 this(extnId, critical.isTrue(), value);
187 boolean critical,
190 this(extnId, critical, new DEROctetString(value));
195 boolean critical,
199 this.critical = critical;
210 return critical;
X509Extension.java 171 boolean critical; field in class:X509Extension
175 DERBoolean critical,
178 this.critical = critical.isTrue();
183 boolean critical,
186 this.critical = critical;
192 return critical;
  /external/webrtc/src/system_wrappers/interface/
critical_section_wrapper.h 14 // If the critical section is heavily contended it may be beneficial to use
28 // Tries to grab lock, beginning of a critical section. Will wait for the
32 // Returns a grabbed lock, end of critical section.
36 // RAII extension of the critical section. Prevents Enter/Leave mismatches and
37 // provides more compact critical section syntax.
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/
README.chromium 9 Security Critical: no
  /external/markdown/markdown/
etree_loader.py 2 from markdown import message, CRITICAL
21 message(CRITICAL, "Failed to import ElementTree")
24 message(CRITICAL, "For cElementTree version 1.0 or higher is required.")
29 message(CRITICAL, "For ElementTree version 1.1 or higher is required")
  /libcore/luni/src/main/java/java/security/cert/
X509Extension.java 28 * Returns the set of OIDs of the extension(s) marked as CRITICAL, that this
32 * are marked as CRITICAL, or {@code null} if no extensions are
49 * Returns the set of OIDs of the extension(s) marked as NON-CRITICAL, that
53 * none are marked as NON-.CRITICAL, or {@code null} if no
59 * Returns whether this instance has an extension marked as CRITICAL that it
62 * @return {@code true} if an unsupported CRITICAL extension is present,
  /bootable/diskinstaller/
init.rc 24 critical
  /external/chromium-trace/trace-viewer/third_party/web_dev_style/
README.chromium 9 Security Critical: no
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
PKIXPolicyNode.java 19 protected boolean critical; field in class:PKIXPolicyNode
42 critical = _critical;
89 return critical;
99 critical = _critical;
156 critical);
  /external/kernel-headers/original/linux/
rcupdate.h 138 * rcu_read_lock - mark the beginning of an RCU read-side critical section.
141 * are within RCU read-side critical sections, then the
143 * CPUs exit their critical sections. Similarly, if call_rcu() is invoked
144 * on one CPU while other CPUs are within RCU read-side critical
146 * until after the all the other CPUs exit their critical sections.
149 * with RCU read-side critical sections. One way that this can happen
151 * read-side critical section, (2) CPU 1 invokes call_rcu() to register
152 * an RCU callback, (3) CPU 0 exits the RCU read-side critical section,
153 * (4) CPU 2 enters a RCU read-side critical section, (5) the RCU
154 * callback is invoked. This is legal, because the RCU read-side critical
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
Extension.java 47 * critical BOOLEAN DEFAULT FALSE,
53 // critical constants
54 public static final boolean CRITICAL = true;
91 // the value of critical field of the structure
92 private final boolean critical; field in class:Extension
104 public Extension(String extnID, boolean critical,
108 this.critical = critical;
114 public Extension(String extnID, boolean critical, byte[] extnValue) {
117 this.critical = critical
    [all...]
Extensions.java 53 // Supported critical extensions oids:
60 private Set<String> critical; field in class:Extensions
62 // the flag showing is there any unsupported critical extension
85 * Returns the list of critical extensions.
88 if (critical == null) {
91 return critical;
95 * Returns the list of critical extensions.
105 if (critical == null) {
112 // Makes the separated lists with oids of critical
113 // and non-critical extension
    [all...]
  /external/chromium/chrome/browser/chromeos/
low_battery_observer.cc 30 const int critical = 5; // Notification will be forced visible if hidden local
31 // by user when time remaining <= critical.
43 // goes critical. We only want to do this once even if the time remaining
46 (notification_.urgent() || remaining_minutes <= critical);
  /external/chromium/chrome/browser/
jankometer.h 17 // critical threads. It should be called on the UI thread.
  /external/chromium-trace/trace-viewer/third_party/closure_linter/
README.chromium 7 Security Critical: no
  /external/iproute2/etc/iproute2/
rt_dsfield 12 0xa0 critical
  /hardware/qcom/media/mm-video/vidc/vdec/src/
message_queue.c 79 /* Lock the mutex to protect the critical section */
95 /* Unlock the mutex to release the critical section */
114 /* Lock the mutex to protect the critical section */
120 /* Unlock the mutex to release the critical section */
132 /* Unlock the mutex to release the critical section */
153 /* Lock the mutex to protect the critical section */
159 /* Unlock the mutex to release the critical section */
171 /* Unlock the mutex to release the critical section */
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
X509V3CertificateGenerator.java 228 boolean critical,
231 this.addExtension(new DERObjectIdentifier(oid), critical, value);
239 boolean critical,
242 extGenerator.addExtension(new ASN1ObjectIdentifier(oid.getId()), critical, value);
252 boolean critical,
255 this.addExtension(new DERObjectIdentifier(oid), critical, value);
263 boolean critical,
266 extGenerator.addExtension(new ASN1ObjectIdentifier(oid.getId()), critical, value);
276 boolean critical,
291 this.addExtension(oid, critical, value)
310 this.copyAndAddExtension(oid.getId(), critical, cert); local
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
update_screen.h 55 // Returns true if there is critical system update that requires installation
59 // Set flag to treat all updates as critical (for test purpose mainly).
92 // Is all updates critical? If true, update deadlines are ignored.
  /hardware/ti/omap3/dspbridge/inc/
sync.h 42 *! 04-Nov-1999 kc: Added critical section functions and objects to SYNC.
45 *! 20-Oct-1997 gp: Removed unused SYNC_ critical section and must complete fxns
112 * Delete a critical section.
114 * hCSObj: critical section handle.
126 * Enter the critical section.
128 * hCSObj: critical section handle.
167 * Initialize the critical section.
169 * hCSObj: critical section handle.
181 * Initialize the critical section between process context and DPC.
183 * hCSObj: critical section handle
    [all...]
  /hardware/ti/omap3/dspbridge/libbridge/inc/
sync.h 42 *! 04-Nov-1999 kc: Added critical section functions and objects to SYNC.
45 *! 20-Oct-1997 gp: Removed unused SYNC_ critical section and must complete fxns
112 * Delete a critical section.
114 * hCSObj: critical section handle.
126 * Enter the critical section.
128 * hCSObj: critical section handle.
167 * Initialize the critical section.
169 * hCSObj: critical section handle.
181 * Initialize the critical section between process context and DPC.
183 * hCSObj: critical section handle
    [all...]
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
X509CRLEntryHolder.java 125 * critical extensions contained in this holder's CRL entry.
127 * @return a set of critical extension OIDs.
136 * non-critical extensions contained in this holder's CRL entry.
138 * @return a set of non-critical extension OIDs.
  /external/clang/test/Analysis/
OSAtomic_mac.cpp 7 // NOTE: It is critical that the function called is OSAtomicCompareAndSwapIntBarrier.

Completed in 758 milliseconds

1 2 3 4 5 6 7 8 91011>>