/dalvik/tests/076-boolean-put/ |
info.txt | 2 boolean field. The code as generated should not pass the verifier, so the 3 verifier had to be "loosened" to allow this case.
|
/dalvik/libcore/x-net/src/test/java/tests/api/javax/net/ssl/ |
HostnameVerifierTest.java | 88 HostnameVerifier verifier = HttpsURLConnection local 91 assertTrue(verifier.verify("foo.com", session)); 92 assertFalse(verifier.verify("a.foo.com", session)); 93 assertFalse(verifier.verify("bar.com", session)); 98 assertTrue(verifier.verify("\u82b1\u5b50.co.jp", session)); 99 assertFalse(verifier.verify("a.\u82b1\u5b50.co.jp", session)); 104 assertTrue(verifier.verify("foo.com", session)); 105 assertFalse(verifier.verify("a.foo.com", session)); 106 assertTrue(verifier.verify("bar.com", session)); 107 assertFalse(verifier.verify("a.bar.com", session)) 196 HostnameVerifier verifier = HttpsURLConnection local [all...] |
/dalvik/vm/mterp/c/ |
OP_ARRAY_LENGTH.c | 11 /* verifier guarantees this is an array reference */
|
OP_FILL_ARRAY_DATA.c | 16 /* should have been caught in verifier */
|
OP_NEW_INSTANCE.c | 22 * Verifier now tests for interface/abstract class.
|
OP_PACKED_SWITCH.c | 15 /* should have been caught in verifier */
|
OP_SPARSE_SWITCH.c | 15 /* should have been caught in verifier */
|
OP_NEW_ARRAY.c | 25 /* verifier guarantees this is an array class */
|
/dalvik/libcore/archive/src/main/java/java/util/jar/ |
JarFile.java | 57 JarVerifier verifier; field in class:JarFile 182 verifier = new JarVerifier(file.getPath()); 203 verifier = new JarVerifier(file.getPath()); 235 verifier = new JarVerifier(filename); 306 if (verifier != null) { 307 verifier.addMetaEntry(manifestEntry.getName(), 312 manifest = new Manifest(is, verifier != null); 326 * verifier signature files if they exist. Any signature files found are 327 * registered with the verifier. 336 verifier = null [all...] |
JarInputStream.java | 47 private JarVerifier verifier; field in class:JarInputStream 66 verifier = new JarVerifier("JarInputStream"); //$NON-NLS-1$ 83 verifier.setManifest(manifest); 85 verifier.mainAttributesEnd = manifest 98 verifier = null; 160 if (verifier != null) { 162 verifier.addMetaEntry(jarEntry.getName(), 166 verifier.readCertificates(); 168 verifier = null; 201 if (verifier != null) [all...] |
/cts/tools/dx-tests/ |
dx-tests.html | 20 functional and verifier tests. Regarding the latter, the DX converter has 27 docs/dalvik/verifier.html 73 These run sanity checks for the suite itself and general verifier tests, 78 dx-tests verifier 123 <td>Verifier failure</td> 126 A verifier test case failed. Either the verifier accepted 134 A verifier test case threw <code>VerifyError</code>, where a
|
/dalvik/libcore/x-net/src/main/java/javax/net/ssl/ |
HttpsURLConnection.java | 38 * Sets the default hostname verifier to be used by new instances. 41 * the new default hostname verifier 43 * if the specified verifier is {@code null}. 53 * Returns the default hostname verifier. 55 * @return the default hostname verifier. 86 * The host name verifier used by this connection. It is initialized from 87 * the default hostname verifier 175 * Sets the hostname verifier for this instance. 178 * the hostname verifier for this instance. 180 * if the specified verifier is {@code null} [all...] |
/dalvik/docs/ |
verifier.html | 3 <title>Dalvik Bytecode Verifier Notes</title> 7 <h1>Dalvik Bytecode Verifier Notes</h1> 10 The bytecode verifier in the Dalvik VM attempts to provide the same sorts 33 error cases because the verifier guarantees that they are impossible. 50 <h2>Verifier Differences</h2> 53 There are a few checks that the Dalvik bytecode verifier does not perform, 73 uninitialized objects to slip past the verifier -- without unduly 93 The Dalvik verifier is more restrictive than other VMs in one area: 102 The verifier may reject a class immediately, or it may defer throwing 149 In early versions of Dalvik (as found in Android 1.6 and earlier), the verifier [all...] |
/cts/tools/vm-tests/ |
vm-tests.html | 20 both functional and verifier tests. Regarding the latter, the Dalvik VM is 28 docs/dalvik/verifier.html 75 verifier tests, respectively: 79 vm-tests verifier 124 <td>Verifier failure</td> 127 A verifier test case failed. Either the verifier accepted
|
/external/tcpdump/ |
rpc_auth.h | 55 SUNRPC_AUTH_BADVERF=3, /* bogus verifier (seal broken) */ 56 SUNRPC_AUTH_REJECTEDVERF=4, /* verifier expired or was replayed */ 61 SUNRPC_AUTH_INVALIDRESP=6, /* bogus response verifier */
|
/bootable/recovery/ |
Android.mk | 15 verifier.c 48 LOCAL_SRC_FILES := verifier_test.c verifier.c
|
/dalvik/tests/052-verifier-fun/src/ |
Main.java | 6 * Throw a few things at the verifier, all of which are expected to pass. 16 * Make sure the verifier is handling type merge of arrays of
|
/dalvik/vm/analysis/ |
VerifySubs.h | 28 * 30 visited (verifier has examined this instruction at least once) 29 * 31 changed (set/cleared as bytecode verifier runs)
|
/cts/tools/dx-tests/src/dxc/junit/ |
AllTests.java | 37 // tests all constraints that should be enforced by the verifier,
|
/cts/tools/vm-tests/src/dot/junit/format/ |
AllTests.java | 34 + "structurally damaged files are rejected by the verifier");
|
/cts/tools/vm-tests/src/dot/junit/verify/b17/ |
Test_b17.java | 33 * Since this constraint is trivial to be checked by the verifier,
|
/dalvik/tests/032-concrete-sub/src/ |
Main.java | 25 // Dalvik verifier stops here (VerifyError)
|
/dalvik/tests/076-boolean-put/src/ |
Main.java | 23 * not a boolean, which makes the verifier upset when the result of the
|
/external/kernel-headers/original/linux/sunrpc/ |
auth.h | 23 /* Maximum size (in bytes) of an rpc credential or verifier */ 69 * reply data; normally the verifier size: */
|
/cts/tools/vm-tests/src/dot/junit/verify/ |
AllTests.java | 34 + "structurally damaged files are rejected by the verifier");
|