Searched refs:handle (Results 76 - 100 of 370) sorted by relevance

1234567891011>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DMethodKlass.java49 MethodKlass(OopHandle handle, ObjectHeap heap) { argument
50 super(handle, heap);
H A DObjArrayKlassKlass.java50 ObjArrayKlassKlass(OopHandle handle, ObjectHeap heap) { argument
51 super(handle, heap);
H A DTypeArrayKlassKlass.java47 public TypeArrayKlassKlass(OopHandle handle, ObjectHeap heap) { argument
48 super(handle, heap);
H A DOop.java55 private OopHandle handle; field in class:Oop
58 Oop(OopHandle handle, ObjectHeap heap) { argument
59 this.handle = handle;
68 public OopHandle getHandle() { return handle; }
78 return CompactingPermGenGen.isShared(handle);
82 return CompactingPermGenGen.isSharedReadOnly(handle);
86 return CompactingPermGenGen.isSharedReadWrite(handle);
226 static OopHandle getKlassForOopHandle(OopHandle handle) { argument
227 if (handle
[all...]
H A DDataLayout.java93 OopHandle handle;
97 handle = data.getOopHandleAt(offset + cellOffset(index));
98 return VM.getVM().getObjectHeap().newOop(handle);
102 OopHandle handle;
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWEmbeddedFrame.java42 private long handle; field in class:WEmbeddedFrame
63 public WEmbeddedFrame(int handle) { argument
64 this((long)handle);
67 public WEmbeddedFrame(long handle) { argument
68 this.handle = handle;
69 if (handle != 0) {
84 * Get the native handle
87 return handle;
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_GDIObject.h51 INLINE void SetHandle(HGDIOBJ handle) { m_handle = handle; } argument
/openjdk7/jdk/src/share/classes/sun/tracing/dtrace/
H A DJVM.java46 static void dispose(long handle) { argument
47 dispose0(handle);
/openjdk7/hotspot/src/share/vm/code/
H A DoopRecorder.hpp71 // Retrieve the oop handle at a given index.
88 // leaky hash table of handle => index, to help detect duplicate insertion
101 static juint cache_index(jobject handle) { argument
102 juint ci = (int) (intptr_t) handle;
107 int* cache_location(jobject handle) { argument
108 return &_cache[ cache_index(handle) ];
/openjdk7/hotspot/src/os/solaris/dtrace/
H A Dlibjvm_db.h50 * 'handle' is an abstract client handle, reserved for future expansions
53 typedef int java_stack_f(void *cld, const prgregset_t regs, const char* name, int bci, int line, void *handle);
/openjdk7/jdk/src/windows/back/
H A Dlinker_md.c145 void dbgsysUnloadLibrary(void *handle) argument
147 FreeLibrary(handle);
150 void * dbgsysFindLibraryEntry(void *handle, const char *name) argument
152 return GetProcAddress(handle, name);
/openjdk7/jdk/test/com/sun/security/auth/callback/TextCallbackHandler/
H A DConfirm.java42 new TextCallbackHandler().handle(new Callback[]{
/openjdk7/jdk/test/com/sun/security/sasl/ntlm/
H A DConformance.java55 public void handle(Callback[] callbacks) throws
65 public void handle(Callback[] callbacks) throws IOException, UnsupportedCallbackException { }
79 public void handle(Callback[] callbacks) throws IOException, UnsupportedCallbackException { }
93 public void handle(Callback[] callbacks) throws IOException, UnsupportedCallbackException { }
/openjdk7/jdk/src/solaris/back/
H A Dlinker_md.c149 void dbgsysUnloadLibrary(void *handle) argument
154 (void)dlclose(handle);
160 void * dbgsysFindLibraryEntry(void *handle, const char *name) argument
166 sym = dlsym(handle, name);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXEmbedChildProxyPeer.java43 long handle; field in class:XEmbedChildProxyPeer
46 this.handle = proxy.getHandle();
54 XToolkit.addEventDispatcher(handle, this);
55 XlibWrapper.XSelectInput(XToolkit.getDisplay(), handle,
61 container.notifyChildEmbedded(handle);
69 XlibWrapper.XUnmapWindow(XToolkit.getDisplay(), handle);
77 XlibWrapper.XMapWindow(XToolkit.getDisplay(), handle);
92 XlibWrapper.XMoveResizeWindow(XToolkit.getDisplay(), handle, x, y, width, height);
102 container.focusGained(handle);
106 container.focusLost(handle);
[all...]
H A DXEmbedCanvasPeer.java118 return xembed.handle != 0;
126 if (xembedLog.isLoggable(PlatformLogger.FINE)) xembedLog.fine("Init embedding for " + Long.toHexString(xembed.handle));
129 XToolkit.addEventDispatcher(xembed.handle, xembed);
130 XlibWrapper.XSelectInput(XToolkit.getDisplay(), xembed.handle,
133 XDropTargetRegistry.getRegistry().registerXEmbedClient(getWindow(), xembed.handle);
143 xembedLog.fine("End dispatching for " + Long.toHexString(xembed.handle));
146 XDropTargetRegistry.getRegistry().unregisterXEmbedClient(getWindow(), xembed.handle);
148 XToolkit.removeEventDispatcher(xembed.handle, xembed);
155 if (xembed.handle != 0) {
158 xembed.handle
713 long handle; // Handle to XEmbed client field in class:XEmbedCanvasPeer.XEmbedServer
[all...]
/openjdk7/hotspot/agent/src/os/solaris/proc/
H A Dsaproc_audit.cpp85 void* handle = dlmopen(LM_ID_BASE, "libsaproc.so", RTLD_NOLOAD); local
86 if (handle == NULL) {
89 uintptr_t libsaproc_open = (uintptr_t)dlsym(handle, "libsaproc_open");
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DJNIHandles.java76 public boolean isDeletedHandle(OopHandle handle) { argument
77 return (handle != null && handle.equals(deletedHandle()));
/openjdk7/hotspot/src/share/tools/ProjectCreator/
H A DArgsParser.java38 public abstract void handle(ArgIterator it); method in class:ArgHandler
52 handler.handle(it);
77 defaulter.handle(ai);
/openjdk7/jdk/src/share/native/java/lang/
H A DClassLoader.c297 handleID = (*env)->GetFieldID(env, this, "handle", "J");
322 void * handle; local
330 handle = JVM_LoadLibrary(cname);
331 if (handle) {
337 JVM_FindLibraryEntry(handle, onLoadSymbols[i]);
354 JVM_UnloadLibrary(handle);
364 JVM_UnloadLibrary(handle);
377 (*env)->SetLongField(env, this, handleID, ptr_to_jlong(handle));
393 void *handle; local
400 handle
426 jlong handle; local
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_xembed_server.c108 Window handle; // pointer to plugin intermediate widget, XEmbed client member in struct:_xembed_server_data
111 Boolean dispatching; // whether we dispatch messages for handle
120 getData(Window handle) { argument
123 if (temp->handle == handle) {
294 res = (sdata->handle != None)?JNI_TRUE:JNI_FALSE;
312 XSelectInput(awt_display, sdata->handle, StructureNotifyMask | PropertyChangeMask);
315 sdata->serverHandle, sdata->handle);
335 sdata->serverHandle, sdata->handle);
347 Java_sun_awt_motif_MEmbedCanvasPeer_embedChild (JNIEnv * env, jobject this, jlong handle) { argument
[all...]
/openjdk7/jdk/src/windows/classes/java/lang/
H A DProcessImpl.java58 * with the resulting handle. This is because a FileOutputStream created
70 long handle = openForAtomicAppend(path);
72 fdAccess.setHandle(fd, handle);
308 private long handle = 0; field in class:ProcessImpl
385 handle = create(cmdstr, envblock, path,
433 closeHandle(handle);
440 int exitCode = getExitCodeProcess(handle);
445 private static native int getExitCodeProcess(long handle); argument
448 waitForInterruptibly(handle);
453 private static native void waitForInterruptibly(long handle); argument
456 terminateProcess(long handle) argument
494 closeHandle(long handle) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/
H A DEventQueueDelegate.java59 * @return handle to be passed to {@code afterDispatch} method
67 * @param handle object which came from {@code beforeDispatch} method
69 public void afterDispatch(AWTEvent event, Object handle) throws InterruptedException; argument
/openjdk7/jdk/src/share/classes/sun/font/
H A DFontManager.java100 * Creates a derived composite font from the specified font (handle).
104 * @param handle the original font (handle)
106 * @return the handle for the derived font
109 Font2DHandle handle);
108 getNewComposite(String family, int style, Font2DHandle handle) argument
/openjdk7/hotspot/src/share/vm/ci/
H A DciObject.cpp36 // oopHierarchy.hpp). Each instance of ciObject holds a handle
175 // Implementation note: we use the handle as the encoding. The
176 // nmethod constructor resolves the handle and patches in the oop.
179 // to discourage use of the JNI handle.
181 assert(is_null_object() || handle() != NULL, "cannot embed null pointer");
183 return handle();
190 return handle() == NULL || is_perm();
217 return handle() == NULL || is_perm();

Completed in 54 milliseconds

1234567891011>>