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

1234567891011

/openjdk7/jdk/test/sun/misc/JarIndex/metaInfFilenames/
H A DBasic.java424 public void handle(HttpExchange t) throws IOException { method in class:Basic.JarHttpServer
/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/jdk/test/sun/security/krb5/auto/
H A DHttpNegotiateServer.java270 public void handle(HttpExchange t) throws IOException { method in class:HttpNegotiateServer.MyHttpHandler
/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/oops/
H A DConstMethod.java84 ConstMethod(OopHandle handle, ObjectHeap heap) { argument
85 super(handle, heap);
H A DConstantPool.java100 ConstantPool(OopHandle handle, ObjectHeap heap) { argument
101 super(handle, heap);
H A DKlass.java71 Klass(OopHandle handle, ObjectHeap heap) { argument
72 super(handle, heap);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DObjectReader.java237 // FIXME: need a framework to handle many other special cases.
403 protected final boolean isRobust(OopHandle handle) { argument
404 return RobustOopDeterminator.oopLooksValid(handle);
430 OopHandle handle = field.getValueAsOopHandle(getObj());
431 if (! isRobust(handle)) {
466 OopHandle handle = field.getValueAsOopHandle(getObj());
467 if (! isRobust(handle) ) {
/openjdk7/jdk/src/share/classes/sun/font/
H A DFont2D.java71 public Font2DHandle handle; field in class:Font2D
/openjdk7/hotspot/src/share/vm/ci/
H A DciObject.hpp38 // oopHierarchy.hpp). Each instance of ciObject holds a handle
56 // A JNI handle referring to an oop in the VM. This
57 // handle may, in a small set of cases, correctly be NULL.
73 jobject handle() const { return _handle; } function in class:ciObject
193 return handle() != NULL || is_classless();
304 void print() { print(tty); } // GDB cannot handle default arguments
/openjdk7/hotspot/src/os/solaris/vm/
H A DdtraceJSDT_solaris.cpp449 void DTraceJSDT::pd_dispose(int handle) { argument
451 if (handle == -1) {
457 ioctl(fd, DTRACEHIOC_REMOVE, handle);
649 void DTraceJSDT::pd_dispose(int handle) { argument
/openjdk7/hotspot/src/share/tools/ProjectCreator/
H A DWinGammaPlatform.java87 public void handle(ArgIterator it) { method in class:SpecificHsArgHandler
288 public void handle(ArgIterator it) {
378 public void handle(ArgIterator it) {
396 public void handle(ArgIterator it) {
427 public void handle(ArgIterator it) {
467 public void handle(ArgIterator it) {
487 public void handle(ArgIterator it) {
508 public void handle(ArgIterator it) {
528 public void handle(ArgIterator it) {
/openjdk7/hotspot/src/share/vm/runtime/
H A DjniHandles.cpp128 void JNIHandles::destroy_global(jobject handle) { argument
129 if (handle != NULL) {
130 assert(is_global_handle(handle), "Invalid delete of global JNI handle");
131 *((oop*)handle) = deleted_handle(); // Mark the handle as deleted, allocate will reuse it
136 void JNIHandles::destroy_weak_global(jobject handle) { argument
137 if (handle != NULL) {
138 assert(!CheckJNICalls || is_weak_global_handle(handle), "Invalid delete of weak global JNI handle");
170 is_local_handle(Thread* thread, jobject handle) argument
198 is_global_handle(jobject handle) argument
203 is_weak_global_handle(jobject handle) argument
467 oop* handle = &(_last->_handles)[_last->_top++]; local
474 oop* handle = _free_list; local
509 oop* handle = &(current->_handles)[index]; local
569 any_contains(jobject handle) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/
H A DHttpAdapter.java234 public void handle(@NotNull WSHTTPConnection connection) throws IOException { method in class:HttpAdapter
244 tk.handle(connection);
288 // Let the endpoint handle for HTTPBinding
518 super.handle(con);
571 public void handle(WSHTTPConnection con) throws IOException { method in class:HttpAdapter.HttpToolkit
/openjdk7/jdk/src/solaris/native/com/sun/media/sound/
H A DPLATFORM_API_BsdOS_ALSA_Ports.c76 snd_ctl_t *handle; local
90 err = snd_ctl_open(&handle, devname, 0);
95 snd_ctl_close(handle);
109 snd_ctl_t* handle; local
120 err = snd_ctl_open(&handle, devname, 0);
125 err = snd_ctl_card_info(handle, card_info);
138 snd_ctl_close(handle);
149 PortMixer* handle; local
173 handle = (PortMixer*) calloc(1, sizeof(PortMixer));
174 if (handle
215 PortMixer* handle = (PortMixer*) id; local
[all...]
H A DPLATFORM_API_LinuxOS_ALSA_Ports.c76 snd_ctl_t *handle; local
90 err = snd_ctl_open(&handle, devname, 0);
95 snd_ctl_close(handle);
109 snd_ctl_t* handle; local
120 err = snd_ctl_open(&handle, devname, 0);
125 err = snd_ctl_card_info(handle, card_info);
138 snd_ctl_close(handle);
149 PortMixer* handle; local
173 handle = (PortMixer*) calloc(1, sizeof(PortMixer));
174 if (handle
215 PortMixer* handle = (PortMixer*) id; local
[all...]
/openjdk7/jdk/src/solaris/native/sun/jdga/
H A Ddgalock.c88 void * handle = NULL; local
90 handle = dlopen(JNI_LIB_NAME("xinerama"), RTLD_NOW);
91 if (handle != NULL) {
92 void *sym = dlsym(handle, "IsXineramaOn");
95 sym = dlsym(handle, "GetVirtualDrawable");
100 dlclose(handle);
107 void *handle = 0; local
133 handle = dlopen(libName, RTLD_NOW);
134 if (handle != 0) {
136 void *sym = dlsym(handle, "SolarisJDgaDevOpe
[all...]
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
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...]
H A DWindowsAsynchronousSocketChannelImpl.java66 // socket handle. Use begin()/end() around each usage of this handle.
67 final long handle; field in class:WindowsAsynchronousSocketChannelImpl
106 this.handle = h;
134 long handle() { method in class:WindowsAsynchronousSocketChannelImpl
135 return handle;
153 closesocket0(handle);
210 updateConnectContext(handle);
227 // synchronize on result to allow this thread handle the case
232 int n = connect0(handle, Ne
[all...]
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsFileAttributes.java265 static WindowsFileAttributes readAttributes(long handle) argument
272 GetFileInformationByHandle(handle, address);
282 DeviceIoControlGetReparsePoint(handle, reparseBuffer.address(), size);
333 long handle = FindFirstFile(search, buffer.address());
334 FindClose(handle);
352 long handle = path.openForReadAttributeAccess(followLinks);
354 return readAttributes(handle);
356 CloseHandle(handle);
/openjdk7/jdk/src/windows/native/java/lang/
H A DProcessImpl_md.c126 closeSafely(HANDLE handle) argument
128 if (handle != INVALID_HANDLE_VALUE)
129 CloseHandle(handle);
279 Java_java_lang_ProcessImpl_getExitCodeProcess(JNIEnv *env, jclass ignored, jlong handle) argument
282 if (GetExitCodeProcess((HANDLE) handle, &exit_code) == 0)
294 Java_java_lang_ProcessImpl_waitForInterruptibly(JNIEnv *env, jclass ignored, jlong handle) argument
297 events[0] = (HANDLE) handle;
308 Java_java_lang_ProcessImpl_terminateProcess(JNIEnv *env, jclass ignored, jlong handle) argument
310 TerminateProcess((HANDLE) handle, 1);
314 Java_java_lang_ProcessImpl_closeHandle(JNIEnv *env, jclass ignored, jlong handle) argument
[all...]
/openjdk7/jdk/src/solaris/demo/jni/Poller/
H A DPoller.c57 * and destroy routines. Per Object (handle passed in) synchronization
59 * 3> It is currently up to the user to handle waking up an
265 int handle, retval, i;
271 handle = Current_handle;
275 handle = i;
279 if (handle >= MAX_HANDLES) {
286 ioeh = &IOE_handles[handle];
295 retval = handle;
320 (JNIEnv *env, jobject obj, jint handle)
325 if (handle <
262 int handle, retval, i; local
315 Java_Poller_nativeDestroyPoller(JNIEnv *env, jobject obj, jint handle) argument
363 Java_Poller_nativeAddFd(JNIEnv *env, jobject obj, jint handle, jint fd, jshort events) argument
467 Java_Poller_nativeRemoveFd(JNIEnv *env, jobject obj, jint handle, jint fd) argument
572 Java_Poller_nativeIsMember(JNIEnv *env, jobject obj, jint handle, jint fd) argument
621 Java_Poller_nativeWait(JNIEnv *env, jobject obj, jint handle, jint maxEvents, jintArray jfds, jshortArray jrevents, jlong timeout) argument
[all...]
/openjdk7/jdk/src/solaris/demo/jvmti/hprof/
H A Dhprof_md.c442 md_unload_library(void *handle) argument
444 (void)dlclose(handle);
449 md_find_library_entry(void *handle, const char *name) argument
453 sym = dlsym(handle, name);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orb/
H A DParserTable.java459 public void handle( ObjectKey objectKey ) method in class:ParserTable.TestBadServerIdHandler
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/
H A DWindbgDebuggerLocal.java277 public ThreadProxy getThreadForThreadId(long handle) { argument
278 // with windbg we can't make out using handle
527 * be able to handle symbol information for the newer compilers.

Completed in 129 milliseconds

1234567891011