Searched defs:rlen (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DBerDecoder.java106 * @param rlen An array for returning size of the sequence in bytes. If null,
110 public int parseSeq(int rlen[]) throws DecodeException { argument
114 if (rlen != null) {
115 rlen[0] = len;
230 * @param rlen An array for holding the relative parsed offset; if null
237 public String parseStringWithTag(int tag, boolean decodeUTF8, int rlen[]) argument
277 if (rlen != null) {
278 rlen[0] = offset - origOffset;
291 * @param rlen An array for returning the relative parsed position. If null,
298 public byte[] parseOctetString(int tag, int rlen[]) throw argument
[all...]
/openjdk7/jdk/src/solaris/native/com/sun/management/
H A DUnixOperatingSystem_md.c342 size_t rlen; local
346 rlen = sizeof(result);
347 if (sysctl(mib, 2, &result, &rlen, NULL, 0) != 0) {
/openjdk7/jdk/src/share/native/sun/security/smartcardio/
H A Dpcsc.c204 DWORD rlen = RECEIVE_BUFFER_SIZE; local
213 rv = CALL_SCardTransmit(card, &sendPci, sbuf + ofs, len, NULL, rbuf, &rlen);
220 jOut = (*env)->NewByteArray(env, rlen);
221 (*env)->SetByteArrayRegion(env, jOut, 0, rlen, (jbyte *)rbuf);
/openjdk7/jdk/src/solaris/native/java/net/
H A Dnet_util_md.c1335 size_t rlen; local
1468 rlen = sizeof(maxsockbuf);
1469 if (sysctl(mib, 3, &maxsockbuf, &rlen, NULL, 0) == -1)

Completed in 37 milliseconds