HomeSort by relevance Sort by last modified time
    Searched defs:check (Results 526 - 550 of 1856) sorted by null

<<21222324252627282930>>

  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue49/
CalendarTest.java 54 check(1000000000000L, "America/Los_Angeles", "Must be 7 hours difference.",
64 check(1266833741374L, "America/Los_Angeles", "Must be 8 hours difference.",
72 check(1266833741374L, "Asia/Katmandu", "Must be 5:45 hours difference.",
77 check(1266833741374L, "Asia/Kamchatka", "Must be 12 hours difference.",
81 private void check(long time, String timeZone, String warning, String etalon) { method in class:CalendarTest
  /external/toybox/toys/posix/
patch.c 132 struct double_list *plist, *buf = NULL, *check; local
184 check = dlist_add(&buf, data);
196 if (!plist || lcmp(check->data, plist->data+1)) {
205 while (plist->data[bug] == check->data[bug]) bug++;
207 check->data[bug], plist->data);
218 do_line(check = dlist_pop(&buf));
224 check = buf;
230 check = check->next;
231 if (check == buf) break
    [all...]
  /external/v8/src/compiler/
js-global-object-specialization.cc 185 Node* check = local
189 graph()->NewNode(common()->Branch(BranchHint::kTrue), check, control);
204 Node* check = graph()->NewNode(simplified()->ObjectIsSmi(), value); local
209 check, control);
218 // Load the {value} map check against the {property_cell} map.
224 check = graph()->NewNode(
230 graph()->NewNode(common()->Branch(BranchHint::kTrue), check, control);
  /external/v8/test/mjsunit/compiler/
escape-analysis.js 187 function check(x, y) { function
196 check(23, 42); check(23, 42);
197 %OptimizeFunctionOnNextCall(check);
198 check(23, 42); check(23, 42);
200 check(27, 27); check(27, 27);
  /external/valgrind/coregrind/
vgdb-invoker-solaris.c 256 /* A specific int value is passed to invoke_gdbserver(), to check
258 const int check = 0x8BADF00D; // ate bad food. local
279 /* Push check argument on the stack - according to C/ia32 ABI. */
281 DEBUG(1, "Pushing check argument to process %d memory.\n", pid);
282 assert(regsize == sizeof(check));
283 int error = write_memory(pid, sp, &check, regsize);
285 ERROR(error, "Failed to push check argument to process %d memory.\n",
331 /* Give check argument in rdi - according to C/amd64 ABI. */
332 (*regs)[REG_RDI] = check;
  /external/valgrind/memcheck/tests/
sh-mem-random.c 26 // XXX: should check the error cases for SET/GET_VBITS also
70 void check(U1* arr, int n, char* who) function
125 printf("post-initialisation check\n");
126 check(arr, N_BYTES, "after initialisation");
219 printf("final check\n");
220 check(arr, N_BYTES, "final check");
  /external/vboot_reference/utility/
dumpRSAPublicKey.c 22 int check(RSA* key) { function
187 if (check(pubkey)) {
  /external/webrtc/webrtc/modules/audio_coding/codecs/red/
audio_encoder_copy_red_unittest.cc 141 // check ensures that exactly one call to EncodeInternal happens in each
144 MockFunction<void(int check_point_id)> check; local
148 EXPECT_CALL(check, Call(i));
150 check.Call(i);
273 // Check primary payload.
275 // Check secondary payload.
  /frameworks/av/services/audioflinger/tests/
resampler_tests.cpp 63 int check = memcmp((const char*)reference + i * outputFrameSize, local
65 if (check) {
67 ASSERT_EQ(check, 0); /* fails */
133 // check
199 // check signal energy in passband
203 // check each channel separately
  /frameworks/base/services/core/jni/
com_android_server_connectivity_Vpn.cpp 211 ALOGE("Cannot check %s: %s", name, strerror(errno));
327 static jint check(JNIEnv *env, jobject /* thiz */, jstring jName) function in namespace:android
358 {"jniCheck", "(Ljava/lang/String;)I", (void *)check},
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/util/
GenerationalClassUtil.java 60 Preconditions.check(classLoader instanceof URLClassLoader, "Class loader must be an"
  /libcore/ojluni/src/main/java/java/security/
Identity.java 187 check("setIdentityPublicKey");
209 check("setIdentityInfo");
249 check("addIdentityCertificate");
298 check("removeIdentityCertificate");
413 check("printIdentity");
495 private static void check(String directive) { method in class:Identity
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
AlgorithmChecker.java 61 * A <code>PKIXCertPathChecker</code> implementation to check whether a
100 * Note that this constructor will be used to check a certification
168 public void check(Certificate cert, method in class:AlgorithmChecker
173 // ignore the check for non-x.509 certificate or null constraints
196 // Check the current signature algorithm
201 "Algorithm constraints check failed: " + currSigAlg,
205 // check the key usage and key size
243 "algorithm constraints check failed",
249 // Check with previous cert for signature algorithm and public key
256 "Algorithm constraints check failed: " + currSigAlg
332 static void check(PublicKey key, X509CRL crl) method in class:AlgorithmChecker
343 check(key, algorithmId); method
352 static void check(PublicKey key, AlgorithmId algorithmId) method in class:AlgorithmChecker
    [all...]
BasicChecker.java 138 public void check(Certificate cert, Collection<String> unresolvedCritExts) method in class:BasicChecker
173 (msg + " check failed", e, null, -1,
176 throw new CertPathValidatorException(msg + " check failed", e);
197 (msg + " check failed", e, null, -1, BasicReason.EXPIRED);
200 (msg + " check failed", e, null, -1, BasicReason.NOT_YET_VALID);
208 * Internal method to check that cert has a valid DN to be next in a chain
224 (msg + " check failed: " +
231 (msg + " check failed", null, null, -1,
ConstraintsChecker.java 111 * does not pass the check
114 public void check(Certificate cert, Collection<String> unresCritExts) method in class:ConstraintsChecker
120 // MUST run NC check second, since it depends on BC check to
132 * Internal method to check the name constraints against a cert
142 // check name constraints only if there is a previous name constraint
154 throw new CertPathValidatorException(msg + " check failed",
220 * Internal method to check that a given cert meets basic constraints.
232 /* check if intermediate cert */
260 (msg + " check failed: this is not a CA certificate"
    [all...]
  /libcore/ojluni/src/main/java/sun/security/validator/
EndEntityChecker.java 35 * Class to check if an end entity cert is suitable for use in some
135 void check(X509Certificate cert, Object parameter) method in class:EndEntityChecker
180 // We do not check the validity of the critical extension, just mark
218 * Check whether this certificate can be used for TLS client
253 * Check whether this certificate can be used for TLS server authentication
285 // check for equivalent but now obsolete Server-Gated-Cryptography
311 * Check whether this certificate can be used for code signing.
330 // do not check Netscape cert type for JCE code signing checks
349 * Check whether this certificate can be used by a time stamping authority
  /packages/services/Car/tests/carservice_test/src/com/android/support/car/test/
CarPackageManagerTest.java 59 public boolean check() {
67 public boolean check() {
140 boolean check(); method in interface:CarPackageManagerTest.PollingChecker
146 boolean checked = checker.check();
150 checked = checker.check();
  /prebuilts/misc/common/swig/include/2.0.11/perl5/
noembed.h 85 #ifdef check
86 #undef check macro
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
type_traits.h 76 // BEGIN GOOGLE LOCAL MODIFICATION -- check is a #define on Mac.
77 #undef check macro
80 static yes check(const B*);
81 static no check(const void*);
84 value = sizeof(check(static_cast<const D*>(NULL))) == sizeof(yes),
203 // Is-convertible-to-int check is done only if all other checks pass,
  /system/core/libmincrypt/tools/
DumpPublicKey.java 85 * Perform sanity check on public key.
87 static int check(PublicKey key, boolean useSHA256) throws Exception { method in class:DumpPublicKey
107 int version = check(key, useSHA256);
260 check(key, useSHA256); method
  /system/extras/libfec/
fec_open.cpp 46 check(offset);
47 check(get_appr_size);
48 check(get_real_size);
91 check(f);
92 check(offset);
101 check(f);
102 check(f->ecc.rsn > 0 && f->ecc.rsn < FEC_RSM);
103 check(f->size > sizeof(fec_header));
207 check(f);
208 check(offset % FEC_BLOCKSIZE == 0)
209 check(offset < UINT64_MAX - FEC_BLOCKSIZE); function
    [all...]
  /system/sepolicy/tools/
sepolicy-check.c 43 int check(int op, uint16_t arg1, uint16_t arg2) { function
86 match &= check(s_op, source_type, cur->key.source_type);
87 match &= check(t_op, target_type, cur->key.target_type);
88 match &= check(c_op, target_class, cur->key.target_class);
173 /* Check unconditional rules after attribute expansion. */
181 /* Check conditional rules after attribute expansion. */
  /toolchain/binutils/binutils-2.25/bfd/
cpu-ns32k.c 272 If you put a patch like that into BFD you need to check all
308 to other formats (the thing to check for would be whether
354 might have overflowed before we get here. For a correct check we
362 bfd_vma check; local
367 check = relocation >> (howto->rightshift - howto->bitpos);
369 check = relocation << (howto->bitpos - howto->rightshift);
382 check |= ((bfd_vma) - 1
385 if ((bfd_signed_vma) check > reloc_signed_max
386 || (bfd_signed_vma) check < reloc_signed_min)
398 if ((bfd_vma) check > reloc_unsigned_max
607 bfd_vma check; local
    [all...]
  /toolchain/binutils/binutils-2.25/gold/testsuite/
gdb_index_test.cc 108 check(C* c) function
143 check(&one::c1v);
144 check(&two::c2v1);
145 check(&two::c2v2);
146 check(&two::c2v3);
tls_test.cc 221 int check = t11_last(); local
222 CHECK_EQ_OR_RETURN(check, 1);

Completed in 4052 milliseconds

<<21222324252627282930>>