Searched refs:_handle (Results 1 - 8 of 8) sorted by relevance
| /openjdk7/jdk/src/solaris/npt/ |
| H A D | npt_md.h | 41 void *_handle; \ 46 _handle = dlopen(path, RTLD_LAZY); \ 47 if ( _handle == NULL ) NPT_ERROR("Cannot open library"); \ 48 _sym = dlsym(_handle, "nptInitialize"); \ 52 (*(pnpt))->libhandle = _handle; \ 57 void *_handle; \ 61 _handle = (npt)->libhandle; \ 62 _sym = dlsym(_handle, "nptTerminate"); \ 65 if ( _handle != NULL ) (void)dlclose(_handle); \ [all...] |
| /openjdk7/jdk/src/windows/npt/ |
| H A D | npt_md.h | 40 void *_handle; \ 45 _handle = LoadLibrary(path); \ 46 if ( _handle == NULL ) NPT_ERROR("Cannot open library"); \ 47 _sym = GetProcAddress(_handle, "nptInitialize"); \ 51 (*(pnpt))->libhandle = _handle; \ 56 void *_handle; \ 60 _handle = (npt)->libhandle; \ 61 if ( _handle == NULL ) NPT_ERROR("npt->libhandle is NULL"); \ 62 _sym = GetProcAddress(_handle, "nptTerminate"); \ 65 (void)FreeLibrary(_handle); \ [all...] |
| /openjdk7/hotspot/src/share/vm/runtime/ |
| H A D | handles.inline.hpp | 47 _handle = NULL; 49 _handle = Thread::current()->handle_area()->allocate_handle(obj); 58 _handle = NULL; 60 _handle = thread->handle_area()->allocate_handle(obj);
|
| H A D | handles.hpp | 77 oop* _handle; member in class:VALUE_OBJ_CLASS_SPEC 80 oop obj() const { return _handle == NULL ? (oop)NULL : *_handle; } 81 oop non_null_obj() const { assert(_handle != NULL, "resolving NULL handle"); return *_handle; } 85 Handle() { _handle = NULL; } 101 bool is_null() const { return _handle == NULL; } 102 bool not_null() const { return _handle != NULL; } 110 Handle(oop *handle, bool dummy) { _handle = handle; } 114 oop* raw_value() { return _handle; } [all...] |
| H A D | handles.cpp | 57 _handle = NULL; 59 _handle = thread->handle_area()->allocate_handle(obj);
|
| H A D | vmStructs.cpp | 1012 nonstatic_field(ciObject, _handle, jobject) \
|
| /openjdk7/hotspot/src/share/vm/ci/ |
| H A D | ciObject.cpp | 55 _handle = JNIHandles::make_local(o); 57 _handle = JNIHandles::make_global(o); 70 _handle = JNIHandles::make_local(h()); 72 _handle = JNIHandles::make_global(h); 87 _handle = NULL; 98 _handle = NULL; 109 if (_handle == NULL) { 110 // When both _klass and _handle are NULL, we are dealing
|
| H A D | ciObject.hpp | 58 jobject _handle; member in class:ciObject 73 jobject handle() const { return _handle; } 76 assert(_handle != NULL, "null oop"); 77 return JNIHandles::resolve_non_null(_handle);
|
Completed in 47 milliseconds