Searched defs:handle (Results 251 - 267 of 267) sorted by relevance

<<11

/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Toolkit.h282 // cause the message pump thread to synchronously synchronize on the handle
284 INLINE void WaitForSingleObject(HANDLE handle) { argument
285 SendMessage(WM_AWT_WAIT_FOR_SINGLE_OBJECT, 0, (LPARAM)handle);
423 HMODULE m_dllHandle; /* The module handle. */
462 // The window handle of a toplevel window last seen under the mouse cursor.
H A Dawt_Frame.cpp177 INT_PTR handle; local
182 handle = static_cast<INT_PTR>(env->GetLongField(target, AwtFrame::handleID));
183 if (handle != 0) {
190 hwndParent = (HWND)handle;
582 // Override AwtWindow::Reshape() to handle minimized/maximized
1275 // If both iconify & zoom are TRUE, handle this case
1798 AwtFrame::handleID = env->GetFieldID(cls, "handle", "J");
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_init.c1893 void *handle; local
1895 handle = NULL;
1903 handle = md_load_library(lname, err_buf, (int)sizeof(err_buf));
1904 if ( handle == NULL ) {
1907 handle = md_load_library(lname, err_buf, (int)sizeof(err_buf));
1908 if ( handle == NULL ) {
1912 return handle;
2047 /* Load the library or get the handle to it */
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11KeyStore.java242 public void handle(Callback[] callbacks) method in class:P11KeyStore.PasswordCallbackHandler
266 private final long handle; // token object handle field in class:P11KeyStore.THandle
269 private THandle(long handle, CK_ATTRIBUTE type) { argument
270 this.handle = handle;
320 return loadPkey(session, h.handle);
328 return loadSkey(session, h.handle);
953 SecretKey skey = loadSkey(session, h.handle);
968 PrivateKey pkey = loadPkey(session, h.handle);
[all...]
/openjdk7/hotspot/agent/src/os/solaris/proc/
H A Dsaproc.cpp101 // libthread.so dlopen handle, thread agent ptr and function pointers
294 void * handle = NULL; local
299 handle = dlopen(alt_path, mode);
300 if (_libsaproc_debug && handle) {
304 if (handle == NULL && strrchr(name, '/')) {
307 handle = dlopen(alt_path, mode);
308 if (_libsaproc_debug && handle) {
313 if (handle == NULL) {
314 handle = dlopen(name, mode);
317 printf("libsaproc DEBUG: pathmap_dlopen %s return 0x%x\n", name, handle);
[all...]
/openjdk7/jdk/src/share/classes/sun/font/
H A DSunFontManager.java415 * handle two fonts of the same name, so the JRE one
600 Font2DHandle handle) {
602 if (!(handle.font2D instanceof CompositeFont)) {
603 return handle;
606 CompositeFont oldComp = (CompositeFont)handle.font2D;
624 return handle;
674 * its handle point to this new font.
689 oldFont.handle.font2D = cf;
1093 /* Store the handle, so that if a font is bad, we
1096 initialisedFonts.put(fileNameKey, physicalFont.handle);
599 getNewComposite(String family, int style, Font2DHandle handle) argument
[all...]
/openjdk7/jdk/src/share/classes/java/io/
H A DObjectInputStream.java181 * the objects to handle any versioning that occurs.
209 /** handle value representing null */
212 /** marker for unshared objects in internal handle table */
249 /** wire handle -> obj/exception map */
251 /** scratch field for passing handle values up/down call stack */
367 // if nested read, passHandle contains handle of enclosing object
423 * to deserialize back-references to the stream handle deserialized
426 * Deserializing an object via readUnshared invalidates the stream handle
457 // if nested read, passHandle contains handle of enclosing object
1387 * replacement for object, and updates handle tabl
3333 markException(int handle, ClassNotFoundException ex) argument
3363 finish(int handle) argument
3401 setObject(int handle, Object obj) argument
3421 lookupObject(int handle) argument
3432 lookupException(int handle) argument
3485 add(int handle) argument
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassLoader.cpp610 void* handle = os::dll_load(path, ebuf, sizeof ebuf); local
611 if (handle == NULL) {
615 ZipOpen = CAST_TO_FN_PTR(ZipOpen_t, os::dll_lookup(handle, "ZIP_Open"));
616 ZipClose = CAST_TO_FN_PTR(ZipClose_t, os::dll_lookup(handle, "ZIP_Close"));
617 FindEntry = CAST_TO_FN_PTR(FindEntry_t, os::dll_lookup(handle, "ZIP_FindEntry"));
618 ReadEntry = CAST_TO_FN_PTR(ReadEntry_t, os::dll_lookup(handle, "ZIP_ReadEntry"));
619 ReadMappedEntry = CAST_TO_FN_PTR(ReadMappedEntry_t, os::dll_lookup(handle, "ZIP_ReadMappedEntry"));
620 GetNextEntry = CAST_TO_FN_PTR(GetNextEntry_t, os::dll_lookup(handle, "ZIP_GetNextEntry"));
/openjdk7/jdk/src/windows/bin/
H A Djava_md.c366 HINSTANCE handle; local
380 if ((handle = LoadLibrary(jvmpath)) == 0) {
387 (void *)GetProcAddress(handle, "JNI_CreateJavaVM");
389 (void *)GetProcAddress(handle, "JNI_GetDefaultJavaVMInitArgs");
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsNativeDispatcher.java93 static native void CloseHandle(long handle); argument
151 static native void DeviceIoControlSetSparse(long handle) argument
161 static native void DeviceIoControlGetReparsePoint(long handle, argument
181 private long handle; field in class:WindowsNativeDispatcher.FirstFile
186 public long handle() { return handle; } method in class:WindowsNativeDispatcher.FirstFile
218 static native String FindNextFile(long handle, long address) argument
234 if (data.handle() == WindowsConstants.INVALID_HANDLE_VALUE)
242 private long handle; field in class:WindowsNativeDispatcher.FirstStream
246 public long handle() { retur method in class:WindowsNativeDispatcher.FirstStream
258 FindNextStream(long handle) argument
265 FindClose(long handle) argument
273 GetFileInformationByHandle(long handle, long address) argument
384 SetFileTime(long handle, long createTime, long lastAccessTime, long lastWriteTime) argument
395 SetEndOfFile(long handle) argument
949 GetFinalPathNameByHandle(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/src/solaris/classes/sun/awt/X11/
H A DXTextAreaPeer.java355 javaMouseEventHandler.handle( e );
1290 void handle( MouseEvent event ) { method in class:XTextAreaPeer.JavaMouseEventHandler
1386 // Thus, we will not update 'current' (see 'handle' method), and will
/openjdk7/hotspot/src/share/vm/code/
H A Dnmethod.cpp997 // Promote one word from an assembly-time handle to a live embedded oop.
998 inline void nmethod::initialize_immediate_oop(oop* dest, jobject handle) { argument
999 if (handle == NULL ||
1001 handle == (jobject) Universe::non_oop_word()) {
1002 (*dest) = (oop) handle;
1004 (*dest) = JNIHandles::resolve_non_null(handle);
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp964 // library handle for calling objc_registerThreadWithCollector()
1372 // SuSE 7.2, Debian) can not handle alternate signal stack correctly
1611 void* handle = dlopen("librt.so.1", RTLD_LAZY); local
1612 if (handle == NULL) {
1613 handle = dlopen("librt.so", RTLD_LAZY);
1616 if (handle) {
1618 (int(*)(clockid_t, struct timespec*))dlsym(handle, "clock_getres");
1620 (int(*)(clockid_t, struct timespec*))dlsym(handle, "clock_gettime");
1638 dlclose(handle);
1764 // sure it is async-safe and can handle partiall
2289 dll_lookup(void* handle, const char* name) argument
2316 void *handle; local
3028 libnuma_dlsym(void* handle, const char *name) argument
3042 void *handle = dlopen("libnuma.so.1", RTLD_LAZY); local
[all...]
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp1180 // SuSE 7.2, Debian) can not handle alternate signal stack correctly
1405 void* handle = dlopen("librt.so.1", RTLD_LAZY); local
1406 if (handle == NULL) {
1407 handle = dlopen("librt.so", RTLD_LAZY);
1410 if (handle) {
1412 (int(*)(clockid_t, struct timespec*))dlsym(handle, "clock_getres");
1414 (int(*)(clockid_t, struct timespec*))dlsym(handle, "clock_gettime");
1432 dlclose(handle);
1555 // sure it is async-safe and can handle partially initialized VM.
1577 // sure it is async-safe and can handle partiall
2108 dll_lookup(void* handle, const char* name) argument
2880 libnuma_dlsym(void* handle, const char *name) argument
2898 void *handle = dlopen("libnuma.so.1", RTLD_LAZY); local
[all...]
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp1300 // Some pathologies this scheme doesn't handle:
1541 // 5/22/01: Right now alternate signal stacks do not handle
1565 // handle stack overflow. This is now handled by allocating
1836 // sure it is async-safe and can handle partially initialized VM.
1857 // sure it is async-safe and can handle partially initialized VM.
2043 void *handle; local
2053 handle = dlopen(dli.dli_fname, RTLD_LAZY);
2054 if (handle == NULL) {
2058 dlinfo(handle, RTLD_DI_LINKMAP, &map);
2072 dlclose(handle);
2211 dll_lookup(void* handle, const char* name) argument
5229 void *handle = dlopen("liblgrp.so.1", RTLD_LAZY); local
[all...]
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp126 // save DLL module handle, used by GetModuleFileName
1081 dirp->handle = FindFirstFile(dirp->path, &dirp->find_data);
1082 if (dirp->handle == INVALID_HANDLE_VALUE) {
1099 if (dirp->handle == INVALID_HANDLE_VALUE) {
1105 if (!FindNextFile(dirp->handle, &dirp->find_data)) {
1110 FindClose(dirp->handle);
1111 dirp->handle = INVALID_HANDLE_VALUE;
1121 if (dirp->handle != INVALID_HANDLE_VALUE) {
1122 if (!FindClose(dirp->handle)) {
1126 dirp->handle
1896 HANDLE handle = GetProcessWindowStation(); local
3541 HANDLE handle = thread->osthread()->thread_handle(); local
4290 HANDLE handle = (HANDLE)::_get_osfhandle(fd); local
5189 HMODULE handle = ::GetModuleHandle("Kernel32.dll"); local
5312 HMODULE handle = ::GetModuleHandle("Kernel32.dll"); local
5401 HMODULE handle = os::win32::load_Windows_dll("PSAPI.DLL", NULL, 0); local
5454 HMODULE handle = os::win32::load_Windows_dll("ws2_32.dll", NULL, 0); local
5495 HMODULE handle = os::win32::load_Windows_dll("advapi32.dll", NULL, 0); local
[all...]

Completed in 142 milliseconds

<<11