HomeSort by relevance Sort by last modified time
    Searched refs:verified (Results 1 - 25 of 173) sorted by null

1 2 3 4 5 6 7

  /external/mockito/src/main/java/org/mockito/internal/verification/
InOrderContextImpl.java 13 final IdentitySet verified = new IdentitySet(); field in class:InOrderContextImpl
16 return verified.contains(invocation);
20 verified.add(i);
  /external/mockito/src/test/java/org/mockito/internal/exceptions/util/
ScenarioPrinterTest.java 25 Invocation verified = new InvocationBuilder().simpleMethod().verified().toInvocation(); local
29 String out = sp.print((List) asList(verified, unverified));
  /external/wycheproof/java/com/google/security/wycheproof/testcases/
RsaSignatureTest.java     [all...]
EcdsaTest.java     [all...]
DsaTest.java     [all...]
  /libcore/luni/src/main/java/libcore/util/
RecoverySystem.java 59 boolean verified = false;
62 verified = true;
67 if (!verified) {
  /external/mockito/src/test/java/org/mockito/internal/invocation/
InvocationBuilder.java 32 private boolean verified; field in class:InvocationBuilder
69 if (verified) {
121 public InvocationBuilder verified() {
122 this.verified = true;
InvocationMatcherTest.java 86 Invocation verified = new InvocationBuilder().simpleMethod().verified().toInvocation(); local
87 assertFalse(simpleMethod.hasSimilarMethod(verified));
  /system/security/keystore/
keystore_client_impl.cpp 367 bool verified = false; local
368 if (!verifyEncryptionKeyAttributes(key_name, &verified)) {
371 if (!verified) {
405 bool verified = false; local
406 if (!verifyAuthenticationKeyAttributes(key_name, &verified)) {
409 if (!verified) {
441 bool* verified) {
450 *verified = true;
455 *verified = false;
461 *verified = false
    [all...]
  /external/mockito/src/main/java/org/mockito/internal/invocation/
InvocationImpl.java 37 private boolean verified; field in class:InvocationImpl
71 return verified || isIgnoredForVerification;
121 this.verified = true;
  /art/tools/dexfuzz/src/dexfuzz/listeners/
LogFileListener.java 219 long verified = success + timedOut + truelyDivergent; local
224 (((float) (verified)) / iterations) * 100.0f;
225 write(String.format("Percentage Verified/Total: %.3f%%", verifiedTotalRatio));
228 (((float) timedOut) / (verified)) * 100.0f;
229 write(String.format("Percentage Timed Out/Verified: %.3f%%", timedOutVerifiedRatio));
232 (((float) success) / (verified)) * 100.0f;
233 write(String.format("Percentage Successful/Verified: %.3f%%", successfulVerifiedRatio));
236 (((float) truelyDivergent) / (verified)) * 100.0f;
237 write(String.format("Percentage Divergent/Verified: %.3f%%", divergentVerifiedRatio));
  /external/clang/bindings/python/tests/cindex/
test_location.py 65 verified = False
68 verified = True
70 assert verified
  /external/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/
InterceptedInvocation.java 37 private boolean verified; field in class:InterceptedInvocation
57 return verified || isIgnoredForVerification;
82 verified = true;
  /build/make/tools/releasetools/
check_ota_package_signature.py 143 # Verified successfully upon reaching here.
144 print('VERIFIED\n')
150 parser.add_argument('package', help='The OTA package to be verified.')
  /external/selinux/libselinux/src/
setexecfilecon.c 59 int rpm_execcon(unsigned int verified __attribute__ ((unused)),
  /frameworks/base/keystore/java/android/security/keystore/
AndroidKeyStoreSignatureSpiBase.java 236 * Creates a streamer which sends the message to be signed/verified into the provided KeyStore
352 boolean verified;
364 verified = true;
368 verified = false;
376 return verified;
  /compatibility/cdd/9_security-model/
9_10_device-integrity.md 12 Verified boot is a feature that guarantees the integrity of the device
28 any non-verified storage blocks MUST not be used.
29 * [C-7-1] MUST NOT allow verified partitions on the device to be modified
56 * [C-8-1] MUST support verified boot for device integrity.
58 If a device implementation is already launched without supporting verified boot
  /system/core/adb/
adbd_auth.cpp 81 bool verified = local
85 if (verified) return true;
  /system/security/keystore/include/keystore/
keystore_client_impl.h 99 // EncryptWithAuthentication. Returns true on success and populates |verified|
101 bool verifyEncryptionKeyAttributes(const std::string& key_name, bool* verified);
104 // EncryptWithAuthentication. Returns true on success and populates |verified|
106 bool verifyAuthenticationKeyAttributes(const std::string& key_name, bool* verified);
  /art/tools/dexfuzz/src/dexfuzz/fuzzers/
Fuzzer.java 232 boolean verified = true;
235 verified = goldenExecutor.verifyOnHost(programName);
236 if (verified) {
241 if (verified) {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
functiondiscoverynotification.h 14 #warning COM interfaces layout in this header has not been verified.
identitystore.h 23 #warning COM interfaces layout in this header has not been verified.
vsadmin.h 14 #warning COM interfaces layout in this header has not been verified.
  /external/easymock/src/org/easymock/internal/
MocksBehavior.java 165 boolean verified = true;
170 verified = false;
173 if (verified) {
  /external/ipsec-tools/src/racoon/
nattraversal.c 187 int verified = 0; local
190 return verified;
203 return verified; /* XXX should abort */
209 verified = 1;
214 return verified;

Completed in 789 milliseconds

1 2 3 4 5 6 7