Searched refs:sent (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/net/www/http/
H A DHttpCaptureOutputStream.java45 capture.sent(b);
52 capture.sent(b);
60 capture.sent(b[i]);
H A DHttpCapture.java122 public synchronized void sent(int c) throws IOException { method in class:HttpCapture
/openjdk7/jdk/test/com/sun/nio/sctp/SctpChannel/
H A DSend.java125 int sent = channel.send(buffer, info);
127 check(sent == remaining, "sent should be equal to remaining");
128 check(buffer.position() == (position + sent),
129 "buffers position should have been incremented by sent");
143 sent = channel.send(buffer, info);
145 check(sent == remaining, "sent should be equal to remaining");
146 check(buffer.position() == (position + sent),
147 "buffers position should have been incremented by sent");
[all...]
/openjdk7/jdk/test/com/sun/net/httpserver/bugs/
H A DB6373555.java40 private static int sent = 0; field in class:B6373555
176 ++sent;
177 if ((sent % 1000) == 0) {
178 System.out.println("sent="+sent);
/openjdk7/jdk/test/com/sun/nio/sctp/SctpMultiChannel/
H A DSend.java103 int sent = channel.send(buffer, info);
105 check(sent == remaining, "sent should be equal to remaining");
106 check(buffer.position() == (position + sent),
107 "buffers position should have been incremented by sent");
115 "message not sent on the correct stream");
120 "received message not the same as sent message");
140 sent = channel.send(buffer, info);
142 check(sent == remaining, "sent shoul
[all...]
H A DBranch.java109 int sent = channel.send(buffer, info);
111 check(sent == remaining, "sent should be equal to remaining");
112 check(buffer.position() == (position + sent),
113 "buffers position should have been incremented by sent");
139 "message not sent on the correct stream");
144 "received message not the same as sent message");
199 "message not sent on the correct stream");
204 "received message not the same as sent message");
214 debug("Server: sent "
[all...]
H A DSocketOptionTests.java179 int sent = smc.send(buffer, info);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/client/
H A DHttpClientTransport.java325 int sent = (len > chunkSize) ? chunkSize : len;
326 out.write(b, off, sent); // don't use super.write() as it writes byte-by-byte
327 len -= sent;
328 off += sent;
/openjdk7/jdk/src/share/back/
H A DoutStream.c48 stream->sent = JNI_FALSE;
470 stream->sent = JNI_TRUE;
481 stream->sent = JNI_TRUE;
500 if (stream->error || !stream->sent) {
H A DoutStream.h49 jboolean sent; member in struct:PacketOutputStream
/openjdk7/jdk/test/java/nio/channels/DatagramChannel/
H A DConnectedSend.java69 int sent = sndChannel.send(bb, receiver);
/openjdk7/jdk/make/jpda/jdwp/
H A Djdwp.spec298 "promises that no further commands will be sent "
301 "Use of this command is not required. If it is not sent, "
334 "they are held until a subsequent ReleaseEvents command is sent. "
335 "This command is useful to control the number of events sent "
1095 "sent until the invoked method returns in the target VM. "
1170 "sent until the invoked method returns in the target VM. "
1532 "sent until the invoked method returns in the target VM. "
2185 "occurs, an <a href=\"#JDWP_Event\">event</a> is sent from the "
2186 "target VM. If an event occurs that has not been requested then it is not sent "
2219 "amount of event traffic sent fro
[all...]

Completed in 75 milliseconds