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

1 2

  /dalvik/tests/etc/
reference-run-test-classes 9 # --no-verify -- turn off verification (on by default)
20 VERIFY="y"
29 elif [ "x$1" = "x--no-verify" ]; then
30 VERIFY="n"
46 if [ "$VERIFY" = "y" ]; then
host-run-test-jar 13 # --no-verify -- turn off verification (on by default)
25 VERIFY="y"
60 elif [ "x$1" = "x--no-verify" ]; then
61 VERIFY="n"
86 if [ "$VERIFY" = "y" ]; then
97 if [ "$VERIFY" = "y" ]; then
push-and-run-test-jar 14 # --no-verify -- turn off verification (on by default)
26 VERIFY="y"
59 elif [ "x$1" = "x--no-verify" ]; then
60 VERIFY="n"
86 if [ "$VERIFY" = "y" ]; then
97 if [ "$VERIFY" = "y" ]; then
  /external/chromium/third_party/libjingle/source/talk/base/
common.h 104 #ifndef VERIFY
105 #define VERIFY(x) talk_base::Assert((x),__FUNCTION__,__FILE__,__LINE__,#x)
120 #ifndef VERIFY
121 #define VERIFY(x) talk_base::ImplicitCastToBool(x)
win32window.cc 76 VERIFY(::DestroyWindow(wnd_) != FALSE);
fileutils.cc 170 VERIFY(IsFolder(old_path));
196 VERIFY(IsFolder(folder));
messagequeue.cc 302 VERIFY(0 != ++dmsgq_next_num_);
physicalsocketserver.cc 126 VERIFY(0 == getsockopt(s_, SOL_SOCKET, SO_TYPE, (SockOptArg)&type, &len));
541 if (VERIFY(1 == write(afd_[1], b, sizeof(b)))) {
558 VERIFY(1 == read(afd_[0], b, sizeof(b)));
    [all...]
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MySignature1.java 47 public static int VERIFY = Signature.VERIFY;
  /external/openssl/apps/
CA.pl 52 $VERIFY="$openssl verify";
67 print STDERR "usage: CA -newcert|-newreq|-newreq-nodes|-newca|-sign|-verify\n";
153 } elsif (/^-verify$/) {
156 system ("$VERIFY -CAfile $CATOP/$CACERT $j");
161 system ("$VERIFY -CAfile $CATOP/$CACERT newcert.pem");
167 print STDERR "usage: CA -newcert|-newreq|-newreq-nodes|-newca|-sign|-verify\n";
CA.pl.in 52 $VERIFY="$openssl verify";
67 print STDERR "usage: CA -newcert|-newreq|-newreq-nodes|-newca|-sign|-verify\n";
153 } elsif (/^-verify$/) {
156 system ("$VERIFY -CAfile $CATOP/$CACERT $j");
161 system ("$VERIFY -CAfile $CATOP/$CACERT newcert.pem");
167 print STDERR "usage: CA -newcert|-newreq|-newreq-nodes|-newca|-sign|-verify\n";
CA.sh 58 echo "usage: $0 -newcert|-newreq|-newreq-nodes|-newca|-sign|-verify" >&2
67 VERIFY="$OPENSSL verify"
174 -verify)
177 $VERIFY -CAfile $CATOP/$CACERT newcert.pem
182 $VERIFY -CAfile $CATOP/$CACERT $j
  /system/security/keystore/
keystore.h 61 VERIFY = 14,
87 'v', // VERIFY
  /libcore/luni/src/main/java/java/security/
Signature.java 66 protected static final int VERIFY = 3;
71 * {@link #VERIFY}.
219 state = VERIFY;
232 * the certificate used to verify a signature.
266 state = VERIFY;
360 * initialization for verifying and thus can be used to verify another
364 * the signature to verify.
371 public final boolean verify(byte[] signature) throws SignatureException { method in class:Signature
372 if (state != VERIFY) {
384 * initialization for verifying and thus can be used to verify anothe
402 public final boolean verify(byte[] signature, int offset, int length) method in class:Signature
    [all...]
  /external/apache-harmony/security/src/test/api/java.injected/java/security/
SignatureTest.java 67 assertEquals("state", Signature.VERIFY, s.getState());
78 assertEquals("state", Signature.VERIFY, s.getState());
130 * Class under test for boolean verify(byte[])
136 s.verify(b);
143 s.verify(b);
149 s.verify(b);
150 assertEquals("state", Signature.VERIFY, s.getState());
151 assertTrue("verify() failed", s.runEngineVerify);
155 * Class under test for boolean verify(byte[], int, int)
161 s.verify(b, 0, 3)
302 public void verify(PublicKey key) {} method in class:SignatureTest.MyCertificate
304 public void verify(PublicKey key, String sigProvider) {} method in class:SignatureTest.MyCertificate
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
SignatureTest.java 118 assertEquals("state", MySignature1.VERIFY, s.getState());
138 assertEquals("state", MySignature1.VERIFY, s.getState());
277 * Class under test for boolean verify(byte[])
283 s.verify(b);
290 s.verify(b);
296 s.verify(b);
297 assertEquals("state", MySignature1.VERIFY, s.getState());
298 assertTrue("verify() failed", s.runEngineVerify);
302 * Class under test for boolean verify(byte[], int, int)
308 s.verify(b, 0, 3)
551 public void verify(PublicKey key) {} method in class:SignatureTest.MyCertificate
553 public void verify(PublicKey key, String sigProvider) {} method in class:SignatureTest.MyCertificate
    [all...]
  /external/libpng/contrib/pngminus/
makevms.com 55 $ V = 'F$Verify(0)
86 $ VV=F$VERIFY(0)
89 $ VV='F$Verify(VV)
91 $ If V Then Set Verify
  /external/apache-harmony/security/src/test/impl/java.injected/java/security/
Signature_Impl2Test.java 147 s.verify(b);
152 s.verify(b);
153 assertEquals("Incorrect state", Signature.VERIFY, ((MySignature1) s)
155 assertTrue("verify() failed", ((MySignature1) s).runEngineVerify);
183 s.verify(b, 0, 3);
190 s.verify(b, 0, 5);
196 s.verify(b, 0, 3);
197 assertTrue("verify() failed", MySignature2.runEngineVerify);
239 public void verify(PublicKey key) {} method in class:Signature_Impl2Test.MyCertificate
241 public void verify(PublicKey key, String sigProvider) { method in class:Signature_Impl2Test.MyCertificate
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/scsi/
scsi.h 64 #define VERIFY 0x2f
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/scsi/
scsi.h 64 #define VERIFY 0x2f
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/scsi/
scsi.h 64 #define VERIFY 0x2f
  /external/chromium/third_party/libjingle/source/talk/session/tunnel/
tunnelsessionclient.cc 136 VERIFY((*it)->ReleaseSession(false) == session);
382 VERIFY(channel_->Connect(content->name, "tcp"));
securetunnelsessionclient.cc 379 VERIFY(channel_->Connect(content_name, "tcp"));
  /external/libpng/scripts/
makevms.com 105 $ V = 'F$Verify(0)
136 $ VV=F$VERIFY(0)
139 $ VV='F$Verify(VV)
141 $ If V Then Set Verify
  /external/openssl/crypto/des/
des.c 110 #define VERIFY 1
279 if (des_read_pw_string(key,KEYSIZB+1,"Enter key:",eflag?VERIFY:0))

Completed in 441 milliseconds

1 2