Searched refs:pkey (Results 1 - 15 of 15) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/net/www/protocol/http/
H A DAuthCache.java39 * Put an entry in the cache. pkey is a string specified as follows:
53 * with the same pkey, but with a different path value in
56 public void put (String pkey, AuthCacheValue value); argument
59 * Get an entry from the cache based on pkey as described above, but also
63 public AuthCacheValue get (String pkey, String skey); argument
66 * remove the entry from the cache whose pkey is specified and
68 * all entries with the same pkey should be removed.
70 public void remove (String pkey, AuthCacheValue entry); argument
H A DAuthCacheImpl.java54 public synchronized void put (String pkey, AuthCacheValue value) { argument
55 LinkedList list = (LinkedList) hashtable.get (pkey);
59 hashtable.put (pkey, list);
75 public synchronized AuthCacheValue get (String pkey, String skey) { argument
77 LinkedList list = (LinkedList) hashtable.get (pkey);
95 public synchronized void remove (String pkey, AuthCacheValue entry) { argument
96 LinkedList list = (LinkedList) hashtable.get (pkey);
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_object.c122 ObjectKey *pkey; local
131 pkey = (ObjectKey*)key_ptr;
134 i, pkey->site_index, pkey->serial_num, pkey->size, pkey->kind,
217 ObjectKey *pkey; local
219 pkey = get_pkey(index);
220 return pkey->site_index;
226 ObjectKey *pkey; local
235 ObjectKey *pkey; local
244 ObjectKey *pkey; local
[all...]
H A Dhprof_frame.c175 FrameKey *pkey; local
179 pkey = get_pkey(index);
180 *pmethod = pkey->method;
181 *plocation = pkey->location;
187 if ( pkey->location >= 0 && !isMethodNative(pkey->method) ) {
188 lineno = getLineNumber(pkey->method, pkey->location);
H A Dhprof_monitor.c134 MonitorKey *pkey; local
139 pkey = (MonitorKey*)key_ptr;
145 pkey->trace_index,
146 pkey->sig_index,
310 MonitorKey *pkey; local
315 pkey = get_pkey(index);
318 sig = string_get(pkey->sig_index);
325 trace_get_serial_number(pkey->trace_index),
378 MonitorKey *pkey; local
391 pkey
434 MonitorKey *pkey; local
[all...]
H A Dhprof_class.c108 fillin_pkey(const char *sig, LoaderIndex loader_index, ClassKey *pkey) argument
113 *pkey = empty_key;
114 pkey->sig_string_index = string_find_or_create(sig);
115 pkey->loader_index = loader_index;
128 fill_info(TableIndex index, ClassKey *pkey) argument
139 sig = string_get(pkey->sig_string_index);
141 info->name = pkey->sig_string_index;
145 len = string_get_len(pkey->sig_string_index);
157 info->name = pkey->sig_string_index;
163 find_entry(ClassKey *pkey) argument
173 create_entry(ClassKey *pkey) argument
184 find_or_create_entry(ClassKey *pkey) argument
402 ClassKey *pkey; local
609 ClassKey *pkey; local
[all...]
H A Dhprof_site.c98 SiteKey *pkey; local
100 pkey = get_pkey(index);
101 return pkey->cnum;
107 SiteKey *pkey; local
109 pkey = get_pkey(index);
110 return pkey->trace_index;
125 SiteKey *pkey; local
133 pkey = (SiteKey*)key_ptr;
154 pkey->cnum,
155 pkey
237 SiteKey *pkey; local
445 SiteKey *pkey; local
720 SiteKey *pkey; local
745 SiteKey *pkey; local
[all...]
H A Dhprof_trace.c92 void * pkey; local
95 table_get_key(gdata->trace_table, index, &pkey, &key_len);
96 HPROF_ASSERT(pkey!=NULL);
98 HPROF_ASSERT(((TraceKey*)pkey)->n_frames<=1?key_len==(int)sizeof(TraceKey) :
100 (int)sizeof(FrameIndex)*(((TraceKey*)pkey)->n_frames-1));
101 return (TraceKey*)pkey;
118 TraceKey * pkey; local
130 pkey = trace_key_buffer;
131 *pkey = empty_key;
132 pkey
337 void * pkey; local
[all...]
H A Dhprof_tls.c135 SerialNumber *pkey; local
141 pkey = NULL;
143 table_get_key(gdata->tls_table, index, (void**)&pkey, &key_len);
144 HPROF_ASSERT(pkey!=NULL);
146 return *pkey;
/openjdk7/jdk/test/java/net/Authenticator/
H A DB4933582.java232 public void put (String pkey, AuthCacheValue value) { argument
233 System.out.println ("put: " + pkey + " " + value);
234 super.put (pkey, value);
238 public AuthCacheValue get (String pkey, String skey) { argument
239 System.out.println ("get: " + pkey + " " + skey);
240 AuthCacheValue i = super.get (pkey, skey);
245 public void remove (String pkey, AuthCacheValue value) { argument
246 System.out.println ("remove: " + pkey + " " + value);
247 super.remove (pkey, value);
/openjdk7/jdk/test/sun/security/pkcs11/KeyStore/
H A DBasic.java201 // pkey and setAttribute
202 testnum = Basic.pkey(testnum);
208 // setAttribute, pkey, sign
210 testnum = Basic.pkey(testnum);
215 testnum = Basic.pkey(testnum);
220 // setAttribute, pkey, sign, skey, copy
222 testnum = Basic.pkey(testnum);
228 } else if ("pkey".equals(test)) {
229 Basic.pkey(1);
246 testnum = Basic.pkey(testnu
654 private static int pkey(int testnum) throws Exception { method in class:Basic
[all...]
/openjdk7/jdk/test/java/security/KeyStore/
H A DDefaultEntryType.java205 PrivateKey pkey = new PrivKey1();
207 (pkey, chain);
223 if (pke.getPrivateKey() == pkey) {
/openjdk7/jdk/src/share/classes/sun/security/tools/
H A DKeyTool.java2200 PublicKey pkey = req.getSubjectPublicKeyInfo();
2202 req.getSubjectName(), pkey.getFormat(), pkey.getAlgorithm());
3131 char[] pkey) throws Exception {
3148 pkey = null;
3159 if (pkey != null) {
3163 pp = new PasswordProtection(pkey);
3173 pkey = pstore;
3185 pkey = getKeyPasswd(alias, null, null);
3186 pp = new PasswordProtection(pkey);
3128 recoverEntry(KeyStore ks, String alias, char[] pstore, char[] pkey) argument
3726 createV3Extensions( CertificateExtensions reqex, CertificateExtensions ext, List <String> extstrs, PublicKey pkey, PublicKey akey) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11KeyStore.java968 PrivateKey pkey = loadPkey(session, h.handle);
970 if ((pkey != null) && (chain != null)) {
971 return new KeyStore.PrivateKeyEntry(pkey, chain);
/openjdk7/jdk/src/share/classes/sun/print/
H A DServiceDialog.java199 String pkey = getMsg("tab.pagesetup");
202 tpTabs.add(pkey, pnlPageSetup);

Completed in 71 milliseconds