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

/openjdk7/jdk/src/windows/classes/sun/tools/attach/
H A DWindowsVirtualMachine.java85 long hPipe = createPipe(pipename);
90 closePipe(hPipe);
100 connectPipe(hPipe);
103 PipedInputStream is = new PipedInputStream(hPipe);
120 closePipe(hPipe);
128 private long hPipe; field in class:WindowsVirtualMachine.PipedInputStream
130 public PipedInputStream(long hPipe) { argument
131 this.hPipe = hPipe;
151 return WindowsVirtualMachine.readPipe(hPipe, b
175 closePipe(long hPipe) argument
177 connectPipe(long hPipe) argument
179 readPipe(long hPipe, byte buf[], int off, int buflen) argument
[all...]
/openjdk7/hotspot/src/os/windows/vm/
H A DattachListener_windows.cpp139 static BOOL write_pipe(HANDLE hPipe, char* buf, int len);
259 HANDLE hPipe; local
261 hPipe = ::CreateFile( pipe(), // pipe name
269 if (hPipe != INVALID_HANDLE_VALUE) {
275 return hPipe;
279 BOOL Win32AttachOperation::write_pipe(HANDLE hPipe, char* buf, int len) { argument
283 BOOL fSuccess = WriteFile( hPipe, // pipe handle
311 HANDLE hPipe = open_pipe(); local
312 if (hPipe != INVALID_HANDLE_VALUE) {
318 fSuccess = write_pipe(hPipe, ms
[all...]
/openjdk7/jdk/src/windows/native/sun/tools/attach/
H A DWindowsVirtualMachine.c258 HANDLE hPipe; local
263 hPipe = CreateNamedPipe(
275 if (hPipe == INVALID_HANDLE_VALUE) {
278 return (jlong)hPipe;
287 (JNIEnv *env, jclass cls, jlong hPipe)
289 CloseHandle( (HANDLE)hPipe );
298 (JNIEnv *env, jclass cls, jlong hPipe)
302 fConnected = ConnectNamedPipe((HANDLE)hPipe, NULL) ?
315 (JNIEnv *env, jclass cls, jlong hPipe, jbyteArray ba, jint off, jint baLen)
328 (HANDLE)hPipe, // handl
286 Java_sun_tools_attach_WindowsVirtualMachine_closePipe(JNIEnv *env, jclass cls, jlong hPipe) argument
297 Java_sun_tools_attach_WindowsVirtualMachine_connectPipe(JNIEnv *env, jclass cls, jlong hPipe) argument
314 Java_sun_tools_attach_WindowsVirtualMachine_readPipe(JNIEnv *env, jclass cls, jlong hPipe, jbyteArray ba, jint off, jint baLen) argument
[all...]

Completed in 713 milliseconds