Searched defs:outgoing (Results 1 - 13 of 13) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/security/sasl/digest/
H A DSecurityCtx.java55 byte[] unwrap(byte[] outgoing, int start, int len) argument
H A DDigestMD5Base.java223 * Wrap outgoing bytes using the wrap method of the secCtx object
226 * @param outgoing The byte array containing the outgoing bytes.
231 * @throws SaslException if an error occurs when wrapping the outgoing
234 public byte[] wrap(byte[] outgoing, int start, int len) throws SaslException { argument
245 return (secCtx.wrap(outgoing, start, len));
836 // outgoing messageType and sequenceNum
923 * Append MAC onto outgoing message.
925 * @param outgoing A non-null byte array containing the outgoing messag
934 wrap(byte[] outgoing, int start, int len) argument
1310 wrap(byte[] outgoing, int start, int len) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/security/sasl/
H A DSaslClient.java186 * <tt>offset</tt> and <tt>len</tt> specify the portion of <tt>outgoing</tt>
189 * @param outgoing A non-null byte array containing the bytes to encode.
190 * @param offset The starting position at <tt>outgoing</tt> of the bytes to use.
191 * @param len The number of bytes from <tt>outgoing</tt> to use.
193 * @exception SaslException if <tt>outgoing</tt> cannot be successfully
199 public abstract byte[] wrap(byte[] outgoing, int offset, int len) argument
H A DSaslServer.java178 * <tt>offset</tt> and <tt>len</tt> specify the portion of <tt>outgoing</tt>
181 * @param outgoing A non-null byte array containing the bytes to encode.
182 * @param offset The starting position at <tt>outgoing</tt> of the bytes to use.
183 * @param len The number of bytes from <tt>outgoing</tt> to use.
185 * @exception SaslException if <tt>outgoing</tt> cannot be successfully
191 public abstract byte[] wrap(byte[] outgoing, int offset, int len) argument
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/
H A DCramMD5Base.java88 * Wraps the outgoing buffer. CRAM-MD5 supports no security layer.
92 public byte[] wrap(byte[] outgoing, int offset, int len) throws SaslException { argument
H A DExternalClient.java127 * Wraps the outgoing buffer.
131 public byte[] wrap(byte[] outgoing, int offset, int len) argument
H A DPlainClient.java157 * Wraps the outgoing buffer.
161 public byte[] wrap(byte[] outgoing, int offset, int len) throws SaslException { argument
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/gsskerb/
H A DGssKrb5Base.java91 public byte[] wrap(byte[] outgoing, int start, int len) throws SaslException { argument
104 byte[] answer = secCtx.wrap(outgoing, start, len, msgProp);
106 traceOutput(myClassName, "KRB503:Wrap", "outgoing: ",
107 outgoing, start, len);
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/ntlm/
H A DNTLMClient.java190 public byte[] wrap(byte[] outgoing, int offset, int len) argument
H A DNTLMServer.java209 public byte[] wrap(byte[] outgoing, int offset, int len) argument
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_FrameMap.cpp69 CallingConvention* FrameMap::java_calling_convention(const BasicTypeArray* signature, bool outgoing) { argument
90 intptr_t out_preserve = SharedRuntime::java_calling_convention(sig_bt, regs, sizeargs, outgoing);
95 LIR_Opr opr = map_to_opr(t, regs + i, outgoing);
107 if (outgoing) {
142 // C calls are always outgoing
143 bool outgoing = true; local
144 LIR_Opr opr = map_to_opr(t, regs + i, outgoing);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_FrameMap_sparc.cpp35 LIR_Opr FrameMap::map_to_opr(BasicType type, VMRegPair* reg, bool outgoing) { argument
47 if (outgoing) {
/openjdk7/jdk/src/share/transport/shmem/
H A DshmemBase.c150 Stream outgoing; member in struct:SharedMemoryConnection
500 (void)closeStream(&connection->outgoing, JNI_TRUE);
527 * outgoing streams.
550 connection->outgoing.shared = &connection->shared->toServer;
558 error = openStream(&connection->outgoing);
590 * outgoing streams.
616 connection->outgoing.shared = &connection->shared->toClient;
628 error = createStream(streamPrefix, &connection->outgoing);
940 Stream *stream = &connection->outgoing;
990 Stream *stream = &connection->outgoing;
[all...]

Completed in 525 milliseconds