Searched refs:streamid (Results 1 - 4 of 4) sorted by relevance

/barrelfish-master/usr/eclipseclp/JavaInterface/src/com/parctechnologies/eclipse/
H A DNativeEclipse.java48 static native int QueueWrite(int streamid,byte b[], int off, int len); argument
50 static native int QueueRead(int streamid,int off,int len,byte[] b); argument
52 static native int QueueWriteByte(int streamid, byte b); argument
54 static native int QueueReadByte(int streamid); argument
56 static native int QueueAvailable(int streamid); argument
H A DEmbeddedEclipse.java377 * <code>streamid</code> at offset <code>off</code> and store them in
382 synchronized int readFromStream(int streamid, int off, int len, byte[] b) argument
385 int res = NativeEclipse.QueueRead(streamid, off, len, b);
396 * <code>streamid</code>
400 synchronized int readByteFromStream(int streamid) throws IOException argument
402 int res = NativeEclipse.QueueReadByte(streamid);
416 * Returns the number of bytes available on stream streamid which may be
419 synchronized int availableOnStream(int streamid) throws IOException argument
421 int res = NativeEclipse.QueueAvailable(streamid);
432 * <code>streamid</cod
437 writeToStream(int streamid, byte[] b, int off, int len) argument
454 writeByteToStream(int streamid, byte b) argument
622 closeFromEclipseStreamEclipseSide(int streamid) argument
640 closeToEclipseStreamEclipseSide(int streamid) argument
[all...]
H A DEclipseConnectionImpl.java780 * <code>streamid</code> and store them in
785 abstract int readFromStream(int streamid, int off, int len, byte[] b) argument
790 * <code>streamid</code>
794 abstract int readByteFromStream(int streamid) throws IOException; argument
797 * Returns the number of bytes available on stream streamid which may be
800 abstract int availableOnStream(int streamid) throws IOException; argument
805 * <code>streamid</code> at offset <code>off</code> from
810 abstract int writeToStream(int streamid, byte[] b, int off, int len) argument
815 * <code>streamid</code>.
818 abstract void writeByteToStream(int streamid, byt argument
825 flushStream(int streamid) argument
830 closeToEclipseStreamJavaSide(int streamid) argument
839 closeAsyncEclipseStreamJavaSide(int streamid) argument
847 closeFromEclipseStreamJavaSide(int streamid) argument
856 closeFromEclipseStreamEclipseSide(int streamid) argument
860 closeToEclipseStreamEclipseSide(int streamid) argument
864 closeAsyncEclipseStreamEclipseSide(int streamid) argument
[all...]
H A DRemoteEclipse.java747 synchronized void writeByteToStream(int streamid, byte b) throws IOException argument
749 getOutputStream(streamid).write(0xff & b);
750 setBytesBuffered(streamid, getBytesBuffered(streamid)+1);
754 synchronized int writeToStream(int streamid, byte[] b, int off, int len) throws IOException argument
756 getOutputStream(streamid).write(b, off, len);
762 setBytesBuffered(streamid, getBytesBuffered(streamid)+len);
781 synchronized int readFromStream(int streamid, int off, int len, byte[] b) throws IOException argument
783 return(readBytesFromBuffer(streamid,
860 closeFromEclipseStreamJavaSide(int streamid) argument
867 closeToEclipseStreamJavaSide(int streamid) argument
875 closeFromEclipseStreamEclipseSide(int streamid) argument
889 closeToEclipseStreamEclipseSide(int streamid) argument
904 closeAsyncEclipseStreamEclipseSide(int streamid) argument
1477 closeAsyncEclipseStreamJavaSide(int streamid) argument
[all...]

Completed in 46 milliseconds