HomeSort by relevance Sort by last modified time
    Searched defs:kp (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
KeyPairGeneratorSpiTest.java 75 KeyPair kp = keyPairGen.generateKeyPair(); local
76 assertNull("Not null KeyPair", kp);
KeyPairGenerator3Test.java 97 KeyPair kp, kp1; local
101 kp = kpg[i].generateKeyPair();
103 assertFalse("Incorrect private key", kp.getPrivate().equals(
105 assertFalse("Incorrect public key", kp.getPublic().equals(
123 KeyPair kp, kp1; local
125 kp = kpg[i].generateKeyPair();
127 assertFalse("Incorrect private key", kp.getPrivate().equals(
129 assertFalse("Incorrect public key", kp.getPublic().equals(
SignerTest.java 57 KeyPair kp = new KeyPair(new PublicKeyStub("public", "SignerTest.testToString", null), new PrivateKeyStub("private", "SignerTest.testToString", null)); local
58 s1.setKeyPair(kp);
61 s2.setKeyPair(kp);
103 KeyPair kp = new KeyPair(publicKey, privateKey); local
109 s.setKeyPair(kp);
KeyPairGenerator1Test.java 320 KeyPair kp, kp1; local
323 kp = kpg[i].generateKeyPair();
326 assertFalse("Incorrect private key", kp.getPrivate().equals(
328 assertFalse("Incorrect public key", kp.getPublic().equals(
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyPairGeneratorSpiTest.java 72 KeyPair kp = keyPairGen.generateKeyPair(); local
73 assertNull("Not null KeyPair", kp);
KeyPairGenerator3Test.java 98 KeyPair kp, kp1; local
102 kp = kpg[i].generateKeyPair();
104 assertFalse("Incorrect private key", kp.getPrivate().equals(
106 assertFalse("Incorrect public key", kp.getPublic().equals(
124 KeyPair kp, kp1; local
126 kp = kpg[i].generateKeyPair();
128 assertFalse("Incorrect private key", kp.getPrivate().equals(
130 assertFalse("Incorrect public key", kp.getPublic().equals(
SignerTest.java 65 KeyPair kp = new KeyPair(new PublicKeyStub("public", "SignerTest.testToString", null), local
67 s1.setKeyPair(kp);
70 s2.setKeyPair(kp);
129 KeyPair kp = new KeyPair(publicKey, privateKey); local
135 s.setKeyPair(kp);
153 KeyPair kp = new KeyPair(null, null); local
155 s.setKeyPair(kp);
  /external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/
eval.pass.cpp 61 int kp = -1; local
80 if (k != kp)
88 kp = k;
111 int kp = -1;
130 if (k != kp)
138 kp = k;
161 int kp = -1;
180 if (k != kp)
188 kp = k;
211 int kp = -1
    [all...]
eval_param.pass.cpp 60 int kp = -1; local
79 if (k != kp)
87 kp = k;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/
eval.pass.cpp 59 int kp = -1; local
78 if (k != kp)
86 kp = k;
109 int kp = -1;
128 if (k != kp)
136 kp = k;
159 int kp = -1;
178 if (k != kp)
186 kp = k;
209 int kp = -1
    [all...]
eval_param.pass.cpp 58 int kp = -1; local
77 if (k != kp)
85 kp = k;
  /external/jemalloc/test/unit/
ckh.c 55 void **kp, **vp; local
58 kp = (i & 1) ? &k.p : NULL;
62 assert_false(ckh_search(&ckh, strs[i], kp, vp),
81 void **kp, **vp; local
84 kp = (i & 1) ? &k.p : NULL;
88 assert_false(ckh_remove(tsd, &ckh, strs[i], kp, vp),
  /external/libedit/src/
emacs.c 93 Char *cp, *p, *kp; local
101 for (p = el->el_line.cursor, kp = el->el_chared.c_kill.buf; p < cp; p++)
103 *kp++ = *p;
104 el->el_chared.c_kill.last = kp;
122 Char *kp, *cp; local
139 for (kp = el->el_chared.c_kill.buf; kp < el->el_chared.c_kill.last; kp++)
140 *cp++ = *kp;
158 Char *kp, *cp local
180 Char *kp, *cp; local
213 Char *kp, *cp; local
    [all...]
  /frameworks/base/tests/VoiceEnrollment/src/com/android/test/voiceenrollment/
TestEnrollmentActivity.java 59 Keyphrase kp = new Keyphrase(KEYPHRASE_ID, RECOGNITION_MODES, BCP47_LOCALE, TEXT, local
66 new Keyphrase[] { kp });
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
CipherRSAThread.java 38 KeyPair kp = kpg.generateKeyPair(); local
42 cip.init(Cipher.ENCRYPT_MODE, kp.getPublic());
45 cip.init(Cipher.DECRYPT_MODE, kp.getPrivate());
  /system/core/liblog/
log_is_loggable.c 63 char *kp; local
112 kp = key;
115 refresh_cache(&tag_cache[i], kp);
123 kp = key + base_offset;
141 kp = key;
144 refresh_cache(&global_cache[i], kp);
152 kp = key + base_offset;
  /developers/build/prebuilts/gradle/BasicAndroidKeyStore/Application/src/main/java/com/example/android/basicandroidkeystore/
BasicAndroidKeyStoreFragment.java 189 KeyPair kp = kpGenerator.generateKeyPair(); local
190 Log.d(TAG, "Public Key is: " + kp.getPublic().toString());
  /developers/samples/android/security/keystore/BasicAndroidKeyStore/Application/src/main/java/com/example/android/basicandroidkeystore/
BasicAndroidKeyStoreFragment.java 189 KeyPair kp = kpGenerator.generateKeyPair(); local
190 Log.d(TAG, "Public Key is: " + kp.getPublic().toString());
  /development/samples/browseable/BasicAndroidKeyStore/src/com.example.android.basicandroidkeystore/
BasicAndroidKeyStoreFragment.java 189 KeyPair kp = kpGenerator.generateKeyPair(); local
190 Log.d(TAG, "Public Key is: " + kp.getPublic().toString());
  /external/jarjar/src/main/com/tonicsystems/jarjar/
MainProcessor.java 28 private final KeepProcessor kp; field in class:MainProcessor
47 kp = keepList.isEmpty() ? null : new KeepProcessor(keepList);
52 if (kp != null)
53 processors.add(kp);
61 if (kp == null)
76 for (String exclude : kp.getExcludes()) {
95 if (kp != null)
  /external/jpeg/
ansi2knr.c 514 char *kp; local
517 while ( (kp = *key) != 0 )
518 { if ( strlen(kp) == len && !strncmp(kp, buf, len) )
  /external/pdfium/third_party/freetype/src/type1/
t1afm.c 116 AFM_KernPair kp; local
172 kp = fi->KernPairs;
202 kp->index1 = FT_Get_Char_Index( t1_face, p[0] );
203 kp->index2 = FT_Get_Char_Index( t1_face, p[1] );
205 kp->x = (FT_Int)FT_PEEK_SHORT_LE(p + 2);
206 kp->y = 0;
208 kp++;
  /external/tcpdump/
print-krb.c 155 register const struct krb *kp; local
161 #define IS_LENDIAN(kp) (((kp)->type & 0x01) != 0)
162 #define KTOHSP(kp, cp) (IS_LENDIAN(kp) ? EXTRACT_LE_16BITS(cp) : EXTRACT_16BITS(cp))
164 kp = (struct krb *)cp;
166 if ((&kp->type) >= snapend) {
171 type = kp->type & (0xFF << 1);
174 IS_LENDIAN(kp) ? "le" : "be", tok2str(type2str, NULL, type));
205 len = KTOHSP(kp, cp)
232 register const struct krb *kp; local
    [all...]
  /external/clang/test/FixIt/
fixit-cxx0x.cpp 91 int *ip; char *kp; member in namespace:TestMisplacedEllipsisRecovery
97 int e = me.e(&ip, &kp);
  /external/google-tv-pairing-protocol/java/src/com/google/polo/ssl/
SslUtil.java 70 KeyPair kp = kg.generateKeyPair(); local
71 return kp;

Completed in 6656 milliseconds

1 2 3