Searched refs:verify (Results 101 - 125 of 409) sorted by relevance

1234567891011>>

/external/openssl/crypto/des/
H A Dread_pwd.c217 int verify)
222 ret=des_read_pw(buf,buff,(length>BUFSIZ)?BUFSIZ:length,prompt,verify);
229 int des_read_pw(char *buf, char *buff, int size, const char *prompt, int verify) argument
238 int des_read_pw(char *buf, char *buff, int size, char *prompt, int verify) argument
260 int verify)
371 if (verify)
216 des_read_pw_string(char *buf, int length, const char *prompt, int verify) argument
259 des_read_pw(char *buf, char *buff, int size, const char *prompt, int verify) argument
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
H A DCertificateTest.java149 * This test just calls <code>verify(PublicKey)</code> method<br>
164 c1.verify(null);
168 * This test just calls <code>verify(PublicKey,String)</code> method<br>
183 c1.verify(null, null);
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DKeyStoreTestSupport.java132 public void verify(PublicKey key) throws CertificateException, method in class:KeyStoreTestSupport.MCertificate
137 public void verify(PublicKey key, String sigProvider) method in class:KeyStoreTestSupport.MCertificate
/external/apache-harmony/x-net/src/test/impl/java/org/apache/harmony/xnet/tests/provider/jsse/
H A DDigitalSignatureTest.java105 public void verify(PublicKey key) throws CertificateException,
111 public void verify(PublicKey key, String sigProvider)
138 // Now let's verify
/external/chromium_org/chrome/third_party/mock4js/
H A Dmock4js.js82 Mock4JS._mocksToVerify[i].verify();
145 verify: function() {
179 verify: function() {
352 verify: function() {
390 verify: function() {
392 this._expectedCallCounter.verify();
544 verify: function() {
548 expectedInvocation.verify();
/external/chromium_org/remoting/webapp/unittests/
H A Dxmpp_connection_unittest.js84 setCallbacksCalled.verify();
91 appendDataCalled.verify();
/external/mockito/src/org/mockito/internal/progress/
H A DMockingProgressImpl.java40 public void verificationStarted(VerificationMode verify) { argument
43 verificationMode = new Localized(verify);
/external/openfst/src/bin/
H A Dfstsymbols.cc26 #include <fst/script/verify.h>
39 DEFINE_bool(verify, false, "Verify fst properities before saving");
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/cert/
H A DCertificateFactory_ImplTest.java208 * The public key to verify generated Certificates and CRLs.
221 // provider is not installed, will not verify the generated data
270 // verify the signatures
272 ((X509CRL) i.next()).verify(publicKey);
315 // verify the signatures
316 crl.verify(publicKey);
344 // verify the signatures
346 ((X509CRL) it.next()).verify(publicKey);
355 // verify the signatures
357 ((X509Certificate) it.next()).verify(publicKe
[all...]
/external/bison/lib/
H A Dargmatch.h27 # include "verify.h"
35 verify (ARRAY_CARDINALITY (Arglist) == ARRAY_CARDINALITY (Vallist) + 1)
H A Dstat.c62 #include "verify.h"
112 verify (PATH_MAX <= 4096);
H A Dverify.h26 here generates easier-to-read diagnostics when verify (R) fails.
47 If _Static_assert works, verify (R) uses it directly. Similarly,
72 the verify macro:
74 void function (int n) { verify (n < 0); }
76 * For the verify macro, the struct _gl_verify_type will need to
88 two uses of the verify macro would yield colliding declarations
96 But this has the problem that two invocations of verify from
136 * GCC warns if -Wnested-externs is enabled and verify() is used
222 integer constant expression contexts. verify (R) is for declaration
241 # define verify( macro
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
H A DX509AttributeCertificate.java89 public void verify(PublicKey key, String provider) method in interface:X509AttributeCertificate
/external/fio/
H A Dparse.h69 int (*verify)(struct fio_option *, void *); member in struct:fio_option
/external/junit/src/org/junit/rules/
H A DErrorCollector.java39 protected void verify() throws Throwable { method in class:ErrorCollector
/external/llvm/test/Bindings/Ocaml/
H A Danalysis.ml31 (* Test that valid constructs verify. *)
40 (* Test that invalid constructs do not verify.
/external/llvm/test/ExecutionEngine/RuntimeDyld/X86/
H A DMachO_x86-64_PIC_relocations.s2 # RUN: llvm-rtdyld -triple=x86_64-apple-macosx10.9 -verify -check=%s %t.o
/external/mockito/src/org/mockito/
H A DMockito.java31 * <a href="#1">1. Let's verify some behaviour! </a><br/>
69 * <h3 id="1">1. <a class="meaningful_link" href="#verification">Let's verify some behaviour!</a></h3>
83 * verify(mockedList).add("one");
84 * verify(mockedList).clear();
89 * verify whatever interaction you are interested in.
113 * //Although it is possible to verify a stubbed invocation, usually <b>it's just redundant</b>
114 * //If your code cares what get(0) returns then something else breaks (often before even verify() gets executed).
116 * verify(mockedList).get(0);
155 * //<b>you can also verify using an argument matcher</b>
156 * verify(mockedLis
1473 public static <T> T verify(T mock) { method in class:Mockito
1499 public static <T> T verify(T mock, VerificationMode mode) { method in class:Mockito
[all...]
/external/mockito/src/org/mockito/internal/verification/
H A DAtMost.java31 public void verify(VerificationData data) { method in class:AtMost
H A DCalls.java30 public void verify(VerificationData data) { method in class:Calls
H A DNoMoreInteractions.java21 public void verify(VerificationData data) { method in class:NoMoreInteractions
H A DOnly.java24 public void verify(VerificationData data) { method in class:Only
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
H A DExternalHttp2Example.java38 @Override public boolean verify(String s, SSLSession sslSession) {
H A DExternalSpdyExample.java38 @Override public boolean verify(String s, SSLSession sslSession) {
/external/openssl/apps/
H A DCA.pl52 $VERIFY="$openssl verify";
67 print STDERR "usage: CA -newcert|-newreq|-newreq-nodes|-newca|-sign|-verify\n";
153 } elsif (/^-verify$/) {
167 print STDERR "usage: CA -newcert|-newreq|-newreq-nodes|-newca|-sign|-verify\n";

Completed in 625 milliseconds

1234567891011>>