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

/openjdk9/jdk/src/jdk.attach/windows/classes/sun/tools/attach/
H A DVirtualMachineImpl.java85 long hPipe = createPipe(pipename);
90 closePipe(hPipe);
100 connectPipe(hPipe);
103 PipedInputStream in = new PipedInputStream(hPipe);
128 closePipe(hPipe);
136 private long hPipe; field in class:VirtualMachineImpl.PipedInputStream
138 public PipedInputStream(long hPipe) { argument
139 this.hPipe = hPipe;
159 return VirtualMachineImpl.readPipe(hPipe, b
183 closePipe(long hPipe) argument
185 connectPipe(long hPipe) argument
187 readPipe(long hPipe, byte buf[], int off, int buflen) argument
[all...]
/openjdk9/hotspot/src/os/windows/vm/
H A DattachListener_windows.cpp143 static BOOL write_pipe(HANDLE hPipe, char* buf, int len);
269 HANDLE hPipe; local
271 hPipe = ::CreateFile( pipe(), // pipe name
279 if (hPipe != INVALID_HANDLE_VALUE) {
282 ::CloseHandle(hPipe);
286 return hPipe;
290 BOOL Win32AttachOperation::write_pipe(HANDLE hPipe, char* buf, int len) { argument
294 BOOL fSuccess = WriteFile( hPipe, // pipe handle
322 HANDLE hPipe = open_pipe(); local
323 if (hPipe !
[all...]
/openjdk9/jdk/src/jdk.attach/windows/native/libattach/
H A DVirtualMachineImpl.c267 HANDLE hPipe; local
291 hPipe = CreateNamedPipe(
305 if (hPipe == INVALID_HANDLE_VALUE) {
310 return (jlong)hPipe;
319 (JNIEnv *env, jclass cls, jlong hPipe)
321 CloseHandle( (HANDLE)hPipe );
330 (JNIEnv *env, jclass cls, jlong hPipe)
334 fConnected = ConnectNamedPipe((HANDLE)hPipe, NULL) ?
347 (JNIEnv *env, jclass cls, jlong hPipe, jbyteArray ba, jint off, jint baLen)
360 (HANDLE)hPipe, // handl
318 Java_sun_tools_attach_VirtualMachineImpl_closePipe(JNIEnv *env, jclass cls, jlong hPipe) argument
329 Java_sun_tools_attach_VirtualMachineImpl_connectPipe(JNIEnv *env, jclass cls, jlong hPipe) argument
346 Java_sun_tools_attach_VirtualMachineImpl_readPipe(JNIEnv *env, jclass cls, jlong hPipe, jbyteArray ba, jint off, jint baLen) argument
[all...]

Completed in 99 milliseconds