Searched defs:verify (Results 76 - 100 of 116) sorted by relevance

12345

/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DTestCertUtils.java348 public void verify(PublicKey key) throws CertificateException, method in class:TestCertUtils.TestCertificate
354 public void verify(PublicKey key, String sigProvider) method in class:TestCertUtils.TestCertificate
565 public void verify(PublicKey key, String sigProvider) method in class:TestCertUtils.TestX509Certificate
572 public void verify(PublicKey key) throws CertificateException, method in class:TestCertUtils.TestX509Certificate
/external/llvm/include/llvm/Support/
H A DIntegersSubsetMapping.h266 bool verify() { function in class:llvm::IntegersSubsetMapping
268 return verify(DummyErrItem);
271 bool verify(RangeIterator& errItem) { function in class:llvm::IntegersSubsetMapping
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DDFA.java240 verify();
246 // must be after verify as it computes cyclic, needed by this routine
252 //System.out.println("verify cost: "+(int)(stop-start)+" ms");
716 * state in the DFA. Must call verify() first before this makes sense.
891 * alts. Must call verify() first before this makes sense.
897 /** Once this DFA has been built, need to verify that:
902 * Elsewhere, in the NFA converter, we need to verify that:
909 public void verify() { method in class:DFA
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DSerializationStressTest2.java353 public boolean verify(Object obj) { method in class:SerializationStressTest2.ConstructorTestC
1464 assertTrue(MSG_TEST_FAILED + objToSave, test.verify(objLoaded));
/external/apache-harmony/security/src/test/impl/java.injected/java/security/cert/
H A DX509CertSelectorTest.java342 public void verify(PublicKey key) method in class:X509CertSelectorTest.TestCert
349 public void verify(PublicKey key, method in class:X509CertSelectorTest.TestCert
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ecf.ssl_1.0.0.v20100529-0735.jar ... java.security.cert.CertificateException ce private void verify (java.security.cert.X509Certificate[], java.lang ...
H A Dorg.eclipse.equinox.p2.jarprocessor_1.0.200.v20100503a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.objectweb.asm_3.2.0.v200909071300.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.artifact.repository_1.1.1.R36x_v20100901.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/llvm/lib/CodeGen/
H A DMachineVerifier.cpp10 // Pass to verify generated machine code. The following is checked:
21 // command-line option -verify-machineinstrs, or by defining the environment
248 MF.verify(this, Banner);
263 void MachineFunction::verify(Pass *p, const char *Banner) const { function in class:MachineFunction
298 // We don't want to verify LiveVariables if LiveIntervals is available.
1041 // TODO: verify that earlyclobber ops are not used.
/external/openssl/apps/
H A Dreq.c112 * -verify - check request signature
173 int informat,outformat,verify=0,noout=0,text=0,keyform=FORMAT_PEM; local
328 else if (strcmp(*argv,"-verify") == 0)
329 verify=1;
414 BIO_printf(bio_err," -verify verify signature on REQ\n");
934 if (verify && !x509)
957 BIO_printf(bio_err,"verify failure\n");
961 BIO_printf(bio_err,"verify OK\n");
H A Ds_client.c292 BIO_printf(bio_err," -verify arg - turn on peer certificate verification\n");
421 /* verify g^((N-1)/2) == -1 (mod N) */
443 thus there is no need to verify them.
576 int reconnect=0,badop=0,verify=SSL_VERIFY_NONE,bugs=0; local
678 else if (strcmp(*argv,"-verify") == 0)
680 verify=SSL_VERIFY_PEER;
683 BIO_printf(bio_err,"verify depth is %d\n",verify_depth);
1178 SSL_CTX_set_verify(ctx,verify,verify_callback);
1185 /* BIO_printf(bio_err,"error setting default verify locations\n"); */
H A Dapps.c547 int password_callback(char *buf, int bufsiz, int verify, argument
590 if (ok >= 0 && verify)
774 "Mac verify error (wrong password?) in PKCS12 file for %s\n", desc);
/external/quake/src/com/android/quake/
H A DDownloaderActivity.java439 verify(config);
676 private void verify(Config config) throws DownloaderException, method in class:DownloaderActivity.Downloader
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/
H A DPhoneNumberUtil.java446 boolean verify(PhoneNumber number, String candidate, PhoneNumberUtil util) {
458 boolean verify(PhoneNumber number, String candidate, PhoneNumberUtil util) {
479 boolean verify(PhoneNumber number, String candidate, PhoneNumberUtil util) {
510 boolean verify(PhoneNumber number, String candidate, PhoneNumberUtil util) {
530 abstract boolean verify(PhoneNumber number, String candidate, PhoneNumberUtil util); method in class:PhoneNumberUtil.Leniency
1854 * Tests whether a phone number matches a valid pattern. Note this doesn't verify the number
1866 * Tests whether a phone number is valid for a certain region. Note this doesn't verify the number
/external/littlemock/src/com/google/testing/littlemock/
H A DLittleMock.java66 * <p>You can verify in the 'natural place', after the method call has happened, like this:
70 * verify(mockFoo).aString(6); // This will pass, aString() was called once.
71 * verify(mockFoo, never()).doSomething(); // This will pass, doSomething was never called.
72 * verify(mockFoo, times(3)).aString(anyInt()); // This will fail, was called once only.
81 * <li>No need to remember to call verify, a dangerous source of false-positive tests or
83 * <li>Much less over-specification: only verify what you actually care about.</li>
90 * <li>More natural order for tests: set up stubs, execute tests, verify that it worked.</li>
148 /** Begins a verification step on a mock: the next method invocation on that mock will verify. */
149 public static <T> T verify(T mock, CallCount howManyTimes) { method in class:LittleMock
150 return verify(moc
181 private static <T> T verify(T mock, CallCount howManyTimes, OrderChecker orderCounter) { method in class:LittleMock
203 public static <T> T verify(T mock) { return verify(mock, times(1)); } method in class:LittleMock
1322 <T> T verify(T mock); method in interface:LittleMock.InOrder
[all...]
/external/llvm/lib/Target/ARM/
H A DARMConstantIslandPass.cpp315 void verify();
328 /// verify - check BBOffsets, BBSizes, alignment of islands
329 void ARMConstantIslands::verify() { function in class:ARMConstantIslands
474 verify();
/external/okhttp/src/test/java/libcore/net/http/
H A DURLConnectionTest.java632 assertEquals(Arrays.asList("verify android.com"), hostnameVerifier.calls);
668 assertEquals(Arrays.asList("verify android.com"), hostnameVerifier.calls);
1389 // assertEquals(Arrays.asList("verify " + hostName), hostnameVerifier.calls);
2076 public boolean verify(String hostname, SSLSession session) { method in class:URLConnectionTest.RecordingHostnameVerifier
2077 calls.add("verify " + hostname);
/external/openssl/crypto/x509/
H A Dx509_vfy.h113 The X509_STORE then calls a function to actually verify the
161 /* This structure hold all parameters associated with a verify operation
171 unsigned long flags; /* Various verify flags */
181 * validation. Once we have a certificate chain, the 'verify'
195 int (*verify)(X509_STORE_CTX *ctx); /* called to verify a certificate */ member in struct:x509_store_st
214 #define X509_STORE_set_verify_func(ctx,func) ((ctx)->verify=(func))
244 int (*verify)(X509_STORE_CTX *ctx); /* called to verify a certificate */ member in struct:x509_store_ctx_st
360 /* Certificate verify flag
[all...]
/external/openssl/include/openssl/
H A Dx509_vfy.h113 The X509_STORE then calls a function to actually verify the
161 /* This structure hold all parameters associated with a verify operation
171 unsigned long flags; /* Various verify flags */
181 * validation. Once we have a certificate chain, the 'verify'
195 int (*verify)(X509_STORE_CTX *ctx); /* called to verify a certificate */ member in struct:x509_store_st
214 #define X509_STORE_set_verify_func(ctx,func) ((ctx)->verify=(func))
244 int (*verify)(X509_STORE_CTX *ctx); /* called to verify a certificate */ member in struct:x509_store_ctx_st
360 /* Certificate verify flag
[all...]
H A Devp.h175 int (*verify)(int type, const unsigned char *m, unsigned int m_length, member in struct:env_md_st
271 /* Public key context for sign/verify */
568 int EVP_read_pw_string(char *buf,int length,const char *prompt,int verify);
569 int EVP_read_pw_string_min(char *buf,int minlen,int maxlen,const char *prompt,int verify);
1208 int (*verify)(EVP_PKEY_CTX *ctx, const unsigned char *sig, size_t siglen,
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
H A DMethodAnalyzer.java44 * for each register, it can deodex odexed instructions, and it can verify the bytecode. The analysis and verification
47 * verify it.
272 public void verify() { method in class:MethodAnalyzer
274 throw new ExceptionWithContext("You must call analyze() before calling verify().");
1850 //resolve and verify the class that we're casting to
1859 //TODO: verify that dalvik allows a non-reference type..
1879 //resolve and verify the class that we're checking against
/external/flac/libFLAC/
H A Dstream_encoder.c297 /* verify-related routines: */
425 * The data for the verify section
441 } verify; member in struct:FLAC__StreamEncoderPrivate
607 if(0 != encoder->private_->verify.decoder)
608 FLAC__stream_decoder_delete(encoder->private_->verify.decoder);
988 * Set up the verify stuff if necessary
990 if(encoder->protected_->verify) {
995 encoder->private_->verify.input_fifo.size = encoder->protected_->blocksize+OVERREAD_;
997 if(0 == (encoder->private_->verify.input_fifo.data[i] = (FLAC__int32*)safe_malloc_mul_2op_(sizeof(FLAC__int32), /*times*/encoder->private_->verify
[all...]
/external/openssl/crypto/evp/
H A Devp.h175 int (*verify)(int type, const unsigned char *m, unsigned int m_length, member in struct:env_md_st
271 /* Public key context for sign/verify */
568 int EVP_read_pw_string(char *buf,int length,const char *prompt,int verify);
569 int EVP_read_pw_string_min(char *buf,int minlen,int maxlen,const char *prompt,int verify);
1208 int (*verify)(EVP_PKEY_CTX *ctx, const unsigned char *sig, size_t siglen,
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/lib/
H A Dpdebuild-ant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/pde/ org/eclipse/pde/internal/ ...

Completed in 764 milliseconds

12345