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

/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DPacketStream.java34 private int inCursor = 0; field in class:PacketStream
297 byte ret = pkt.data[inCursor];
298 inCursor += 1;
316 b1 = pkt.data[inCursor++] & 0xff;
317 b2 = pkt.data[inCursor++] & 0xff;
328 b1 = pkt.data[inCursor++] & 0xff;
329 b2 = pkt.data[inCursor++] & 0xff;
340 b1 = pkt.data[inCursor++] & 0xff;
341 b2 = pkt.data[inCursor++] & 0xff;
342 b3 = pkt.data[inCursor
[all...]

Completed in 37 milliseconds