Searched defs:answer (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/
H A DResourceRecords.java45 // Four sections: question, answer, authority, additional.
49 Vector answer = new Vector(); field in class:ResourceRecords
55 * that case only answer records are read (as per
57 * those answer records is not decoded (for efficiency) except
69 answer.ensureCapacity(8192); // an arbitrary "large" number
76 * Returns the type field of the first answer record, or -1 if
77 * there are no answer records.
80 if (answer.size() == 0) {
83 return ((ResourceRecord) answer.firstElement()).getType();
87 * Returns the type field of the last answer recor
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapBindingEnumeration.java37 LdapBindingEnumeration(LdapCtx homeCtx, LdapResult answer, Name remain, argument
40 super(homeCtx, answer, remain, cont);
H A DLdapNamingEnumeration.java60 LdapNamingEnumeration(LdapCtx homeCtx, LdapResult answer, Name listArg, argument
71 if ((answer.status != LdapClient.LDAP_SUCCESS) &&
72 (answer.status != LdapClient.LDAP_SIZE_LIMIT_EXCEEDED) &&
73 (answer.status != LdapClient.LDAP_TIME_LIMIT_EXCEEDED) &&
74 (answer.status != LdapClient.LDAP_ADMIN_LIMIT_EXCEEDED) &&
75 (answer.status != LdapClient.LDAP_REFERRAL) &&
76 (answer.status != LdapClient.LDAP_PARTIAL_RESULTS)) {
81 answer.status, answer.errorMessage));
88 res = answer;
[all...]
H A DLdapCtx.java416 LdapResult answer = clnt.add(entry, reqCtls);
417 respCtls = answer.resControls; // retrieve response controls
419 if (answer.status != LdapClient.LDAP_SUCCESS) {
420 processReturnCode(answer, name);
542 LdapResult answer = clnt.delete(newDN, reqCtls);
543 respCtls = answer.resControls; // retrieve response controls
545 if (answer.status != LdapClient.LDAP_SUCCESS) {
546 processReturnCode(answer, name);
556 answer = clnt.add(entry, reqCtls);
557 if (answer
978 adjustDeleteStatus(String fname, LdapResult answer) argument
2834 processReturnCode(LdapResult answer) argument
2838 processReturnCode(LdapResult answer, Name remainName) argument
[all...]
/openjdk7/jdk/test/sun/security/pkcs11/Cipher/
H A DTestSymmCiphers.java107 byte[] answer = c2.doFinal(plainTxt);
110 plainTxt, answer);
113 byte[] answer2 = c2.doFinal(answer);
116 answer, answer2);
135 byte[] in, byte[] answer) throws Exception {
170 match(testOut1, answer);
183 match(outBuf, answer);
199 match(outDirectBuf, answer);
214 match(outBuf, answer);
233 match(outDirectBuf, answer);
133 test(Cipher cipher, int mode, SecretKey key, AlgorithmParameters params, int firstBlkSize, byte[] in, byte[] answer) argument
266 match(ByteBuffer bb, byte[] answer) argument
[all...]
H A DTestSymmCiphersNoPad.java89 byte[] answer = c2.doFinal(plainTxt);
91 plainTxt, answer);
94 byte[] answer2 = c2.doFinal(answer);
96 answer, answer2);
114 byte[] in, byte[] answer) throws Exception {
139 match(testOut1, answer);
147 match(outBuf, answer);
158 match(outDirectBuf, answer);
168 match(outBuf, answer);
183 match(outDirectBuf, answer);
112 test(Cipher cipher, int mode, SecretKey key, AlgorithmParameters params, byte[] in, byte[] answer) argument
204 match(ByteBuffer bb, byte[] answer) argument
[all...]
/openjdk7/jdk/test/java/io/pathNames/
H A DGeneral.java220 * answer. If the path names a file that exists and is readable, then
223 public static void check(String answer, String path) throws IOException { argument
224 String ans = trimTrailingSlashes(answer);
268 * String ans Expected answer for the check method (above)
/openjdk7/jdk/src/share/native/java/net/
H A Dnet_util.c282 unsigned short answer = 0; local
289 *(unsigned char *) (&answer) = *(unsigned char *)w;
290 sum += answer;
295 answer = ~sum;
296 return (answer);
/openjdk7/hotspot/src/share/vm/opto/
H A DidealGraphPrinter.cpp337 char answer = 0; local
339 int result = _stream->read(&answer, 1);
340 _should_send_method = (answer == 'y');
/openjdk7/jdk/src/share/back/
H A DdebugInit.c994 get_boolean(char **pstr, jboolean *answer) argument
997 *answer = JNI_FALSE;
1001 *answer = JNI_TRUE;
1004 *answer = JNI_FALSE;
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_util.c557 Widget answer = NULL; local
569 for(i=0; i<wlen && !answer; i++) {
570 answer = awt_WidgetAtXY(wl[i], pointerx, pointery);
575 if(!answer) {
591 answer = root;
594 return answer;
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_util.c714 jboolean answer; local
717 answer = JNI_FALSE;
719 (gdata->jvmti, klass, &answer);
723 return answer;

Completed in 54 milliseconds