Searched refs:handle (Results 151 - 175 of 370) sorted by relevance

1234567891011>>

/openjdk7/hotspot/src/share/tools/launcher/
H A Dwildcard.c128 HANDLE handle; member in struct:WildcardIterator_
137 HANDLE handle = FindFirstFile(wildcard, &find_data); local
138 if (handle == INVALID_HANDLE_VALUE)
140 it->handle = handle;
154 return FindNextFile(it->handle, &find_data)
162 FindClose(it->handle);
/openjdk7/jdk/src/share/bin/
H A Dwildcard.c129 HANDLE handle; member in struct:WildcardIterator_
138 HANDLE handle = FindFirstFile(wildcard, &find_data); local
139 if (handle == INVALID_HANDLE_VALUE)
141 it->handle = handle;
154 return FindNextFile(it->handle, &find_data)
162 FindClose(it->handle);
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsLinkSupport.java52 long handle = 0L;
54 handle = path.openForReadAttributeAccess(false); // don't follow links
59 return readLinkImpl(handle);
61 CloseHandle(handle);
235 FindClose(fileData.handle());
268 * Returns target of a symbolic link given the handle of an open file
271 private static String readLinkImpl(long handle) throws IOException { argument
276 DeviceIoControlGetReparsePoint(handle, buffer.address(), size);
H A DWindowsFileAttributeViews.java79 long handle = -1L;
85 handle = CreateFile(file.getPathForWin32Calls(),
96 SetFileTime(handle,
106 SetFileTime(handle,
122 CloseHandle(handle);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/dom2dtm/
H A DDOM2DTMdefaultNamespaceDeclarationNode.java61 int handle; field in class:DOM2DTMdefaultNamespaceDeclarationNode
62 DOM2DTMdefaultNamespaceDeclarationNode(Element pseudoparent,String prefix,String uri,int handle) argument
67 this.handle=handle;
109 return handle;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A DJSJavaFrame.java162 OopHandle handle = null;
190 handle = values.oopHandleAt(slot);
191 value = factory.newJSJavaObject(heap.newOop(handle));
209 OopHandle handle = values.oopHandleAt(0);
211 return factory.newJSJavaObject(heap.newOop(handle));
/openjdk7/jdk/src/share/classes/sun/awt/
H A DEmbeddedFrame.java47 * . Within a C-based application, an EmbeddedFrame contains a window handle
50 * handle of an existing window created by the application. The window
51 * handle should be of the appropriate native type for a specific
89 protected EmbeddedFrame(int handle) { argument
90 this((long)handle);
93 protected EmbeddedFrame(long handle) { argument
94 this(handle, false);
97 protected EmbeddedFrame(long handle, boolean supportsXEmbed) { argument
114 // We don't handle any other properties. Skip it.
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/actions/
H A DImportAction.java95 final ProgressHandle handle = ProgressHandleFactory.createHandle("Opening file " + file.getName());
97 handle.start(basis);
106 handle.progress(prog);
113 handle.progress(state);
139 handle.finish();
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
H A DIocp.java57 // handle to completion port
149 * On Windows the close operation will close the socket/file handle
212 * Associate the given handle with this group
214 int associate(OverlappedChannel ch, long handle) throws IOException { argument
229 if (handle != 0L) {
230 createIoCompletionPort(handle, port, key, 0);
340 // handle wakeup to execute task or shutdown
432 private static native long createIoCompletionPort(long handle, argument
435 private static native void close0(long handle); argument
H A DWindowsAsynchronousFileChannelImpl.java68 // The handle is extracted for use in native methods invoked from this class.
69 private final long handle; field in class:WindowsAsynchronousFileChannelImpl
91 this.handle = fdAccess.getHandle(fdObj);
95 this.completionKey = iocp.associate(this, handle);
144 close0(handle);
242 int n = lockFile(handle, position, fli.size(), fli.isShared(),
450 n = readFile(handle, address, rem, position, overlapped);
635 n = writeFile(handle, address, rem, position, overlapped);
743 private static native int readFile(long handle, long address, int len, argument
746 private static native int writeFile(long handle, lon argument
749 lockFile(long handle, long position, long size, boolean shared, long overlapped) argument
752 close0(long handle) argument
[all...]
/openjdk7/jdk/src/windows/native/sun/nio/fs/
H A DWindowsNativeDispatcher.c117 findFirst_handle = (*env)->GetFieldID(env, clazz, "handle", "J");
125 findStream_handle = (*env)->GetFieldID(env, clazz, "handle", "J");
174 // get handle to kernel32
225 HANDLE handle; local
242 handle = CreateFileW(lpFileName,
249 if (handle == INVALID_HANDLE_VALUE) {
252 return ptr_to_jlong(handle);
258 jlong handle)
261 HANDLE h = (HANDLE)jlong_to_ptr(handle);
269 jlong handle, jlon
257 Java_sun_nio_fs_WindowsNativeDispatcher_DeviceIoControlSetSparse(JNIEnv* env, jclass this, jlong handle) argument
268 Java_sun_nio_fs_WindowsNativeDispatcher_DeviceIoControlGetReparsePoint(JNIEnv* env, jclass this, jlong handle, jlong bufferAddress, jint bufferSize) argument
326 Java_sun_nio_fs_WindowsNativeDispatcher_CloseHandle(JNIEnv* env, jclass this, jlong handle) argument
340 HANDLE handle = FindFirstFileW(lpFileName, &data); local
360 HANDLE handle = FindFirstFileW(lpFileName, data); local
368 Java_sun_nio_fs_WindowsNativeDispatcher_FindNextFile(JNIEnv* env, jclass this, jlong handle, jlong dataAddress) argument
389 HANDLE handle; local
414 Java_sun_nio_fs_WindowsNativeDispatcher_FindNextStream(JNIEnv* env, jclass this, jlong handle) argument
436 Java_sun_nio_fs_WindowsNativeDispatcher_FindClose(JNIEnv* env, jclass this, jlong handle) argument
447 Java_sun_nio_fs_WindowsNativeDispatcher_GetFileInformationByHandle(JNIEnv* env, jclass this, jlong handle, jlong address) argument
531 Java_sun_nio_fs_WindowsNativeDispatcher_SetFileTime(JNIEnv* env, jclass this, jlong handle, jlong createTime, jlong lastAccessTime, jlong lastWriteTime) argument
546 Java_sun_nio_fs_WindowsNativeDispatcher_SetEndOfFile(JNIEnv* env, jclass this, jlong handle) argument
1131 Java_sun_nio_fs_WindowsNativeDispatcher_GetFinalPathNameByHandle(JNIEnv* env, jclass this, jlong handle) argument
[all...]
/openjdk7/jdk/test/com/sun/jdi/
H A DBadHandshakeTest.java62 static void handle(InputStream in) { method in class:BadHandshakeTest.IOHandler
130 IOHandler.handle(p.getInputStream());
131 IOHandler.handle(p.getErrorStream());
H A DExclusiveBind.java57 static void handle(InputStream in) { method in class:ExclusiveBind.IOHandler
122 IOHandler.handle(p.getInputStream());
123 IOHandler.handle(p.getErrorStream());
H A DRunToExit.java64 static void handle(String name, InputStream in) { method in class:RunToExit.IOHandler
135 IOHandler.handle("Input Stream", p.getInputStream());
136 IOHandler.handle("Error Stream", p.getErrorStream());
/openjdk7/jdk/src/share/native/sun/tracing/dtrace/
H A DJVM.c182 jlong handle = 0; local
205 handle = jvm_symbols->Activate(
215 return handle;
224 JNIEnv* env, jclass cls, jlong handle) {
225 if (jvm_symbols != NULL && handle != 0) {
226 jvm_symbols->Dispose(env, handle);
223 Java_sun_tracing_dtrace_JVM_dispose0( JNIEnv* env, jclass cls, jlong handle) argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DConstantPoolCache.java55 ConstantPoolCache(OopHandle handle, ObjectHeap heap) { argument
56 super(handle, heap);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DFindByQueryPanel.java49 OopHandle handle = vm.getDebugger().parseAddress(e.getDescription()).addOffsetToAsOopHandle(0);
50 showInspector(vm.getObjectHeap().newOop(handle));
/openjdk7/jdk/src/macosx/classes/sun/font/
H A DCFont.java94 handle = new Font2DHandle(this);
102 handle = new Font2DHandle(this);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/server/
H A DPortableHttpHandler.java69 public void handle(HttpExchange msg) { method in class:PortableHttpHandler
73 // Use application's Executor to handle request. Application may
92 adapter.handle(con);
116 // Does application's executor handle this exception ?
H A DWSHttpHandler.java72 public void handle(HttpExchange msg) { method in class:WSHttpHandler
76 // Use application's Executor to handle request. Application may
95 adapter.handle(con);
119 // Does application's executor handle this exception ?
/openjdk7/jdk/test/com/sun/security/sasl/
H A DClientCallbackHandler.java41 public void handle(Callback[] callbacks) throws UnsupportedCallbackException, method in class:ClientCallbackHandler
126 super.handle(np);
/openjdk7/jdk/test/com/sun/security/sasl/digest/
H A DClientCallbackHandler.java41 public void handle(Callback[] callbacks) throws UnsupportedCallbackException, method in class:ClientCallbackHandler
126 super.handle(np);
/openjdk7/jdk/test/sun/net/www/protocol/http/
H A DChunkedErrorStream.java154 public void handle(HttpExchange t) throws IOException { method in class:ChunkedErrorStream.FirstHandler
179 public void handle(HttpExchange t) throws IOException { method in class:ChunkedErrorStream.SecondHandler
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/
H A DObjectKeyFactoryImpl.java58 ObjectKeyTemplate handle( int magic, int scid, method in interface:Handler
129 public ObjectKeyTemplate handle( int magic, int scid,
153 public ObjectKeyTemplate handle( int magic, int scid,
196 oktemp = handler.handle( magic, scid, is, osh ) ;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DReversePtrsAnalysis.java105 new RootVisitor("JNI handle root" + threadDesc));
111 new RootVisitor("Global JNI handle root"));
113 new RootVisitor("Weak global JNI handle root"));
173 private void markAndTraverse(OopHandle handle) { argument
175 markAndTraverse(heap.newOop(handle));
179 " while traversing oop at " + handle);
182 "oop at " + handle);

Completed in 69 milliseconds

1234567891011>>