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

1234567891011

/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/src/solaris/native/sun/awt/
H A Dawt_Mlib.c55 void *handle = NULL; local
71 handle = dlopen(JNI_LIB_NAME("mlib_image_v"), RTLD_LAZY);
74 if (handle == NULL) {
75 handle = dlopen(JNI_LIB_NAME("mlib_image"), RTLD_LAZY);
78 if (handle == NULL) {
89 if ((tempSysFns.createFP = (MlibCreateFP_t)dlsym(handle,
98 if ((tempSysFns.createStructFP = (MlibCreateStructFP_t)dlsym(handle,
108 if ((tempSysFns.deleteImageFP = (MlibDeleteFP_t)dlsym(handle,
126 fPtr = (mlib_status (*)())dlsym(handle, mptr[i].fname);
135 dlclose(handle);
[all...]
/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/src/windows/classes/sun/nio/fs/
H A DWindowsDirectoryStream.java47 // handle to directory
48 private final long handle; field in class:WindowsDirectoryStream
79 this.handle = first.handle();
104 FindClose(handle);
159 // handle first element returned by search
175 name = FindNextFile(handle, findDataBuffer.address());
/openjdk7/jdk/src/windows/javavm/export/
H A Djvm_md.h52 HANDLE handle; member in struct:__anon1051
/openjdk7/jdk/src/windows/native/sun/nio/ch/
H A DWindowsAsynchronousFileChannelImpl.c39 jlong handle, jlong address, jint len, jlong offset, jlong ov)
48 res = ReadFile((HANDLE) jlong_to_ptr(handle),
69 jlong handle, jlong address, jint len, jlong offset, jlong ov)
78 res = WriteFile((HANDLE)jlong_to_ptr(handle),
96 Java_sun_nio_ch_WindowsAsynchronousFileChannelImpl_lockFile(JNIEnv *env, jobject this, jlong handle, argument
100 HANDLE h = jlong_to_ptr(handle);
126 jlong handle)
128 HANDLE h = (HANDLE)jlong_to_ptr(handle);
38 Java_sun_nio_ch_WindowsAsynchronousFileChannelImpl_readFile(JNIEnv* env, jclass this, jlong handle, jlong address, jint len, jlong offset, jlong ov) argument
68 Java_sun_nio_ch_WindowsAsynchronousFileChannelImpl_writeFile(JNIEnv* env, jclass this, jlong handle, jlong address, jint len, jlong offset, jlong ov) argument
125 Java_sun_nio_ch_WindowsAsynchronousFileChannelImpl_close0(JNIEnv* env, jclass this, jlong handle) argument
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_GDIObject.h51 INLINE void SetHandle(HGDIOBJ handle) { m_handle = handle; } argument
/openjdk7/jdk/test/com/sun/net/httpserver/
H A DTest14.java120 public void handle (HttpExchange t) method in class:Test14.Handler
/openjdk7/jdk/test/com/sun/net/httpserver/bugs/6725892/
H A DTest.java49 public void handle (HttpExchange t) method in class:Test.Handler
/openjdk7/jdk/test/com/sun/net/httpserver/bugs/
H A DFixedLengthInputStream.java27 * @summary com.sun.net.httpserver.HttpServer should handle POSTs larger than 2Gig
108 public void handle(HttpExchange t) throws IOException { method in class:FixedLengthInputStream.MyHandler
/openjdk7/jdk/test/com/sun/security/auth/module/KeyStoreLoginModule/
H A DOptionTest.java242 public void handle(Callback[] callbacks) method in class:OptionTest.MyCallbackHandler
/openjdk7/jdk/test/com/sun/security/sasl/digest/
H A DCheckNegotiatedQOPs.java129 public void handle(Callback[] callbacks) method in class:CheckNegotiatedQOPs.SampleCallbackHandler
/openjdk7/jdk/test/java/net/HttpURLConnection/
H A DUnmodifiableMaps.java89 public void handle(HttpExchange t) throws IOException { method in class:UnmodifiableMaps.SimpleHandler
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djmemsys.h129 short file_handle; /* DOS file handle if it's a temp file */
130 XMSH xms_handle; /* handle if it's a chunk of XMS */
131 EMSH ems_handle; /* handle if it's a chunk of EMS */
159 handle_union handle; /* reference to backing-store storage object */ member in struct:backing_store_struct
/openjdk7/jdk/src/share/classes/sun/tracing/dtrace/
H A DJVM.java46 static void dispose(long handle) { argument
47 dispose0(handle);
/openjdk7/jdk/test/sun/net/www/protocol/http/
H A DB5017051.java145 public void handle(HttpExchange t) throws IOException { method in class:B5017051.MyHandler
167 public void handle(HttpExchange t) throws IOException { method in class:B5017051.MyHandler2
H A DB6660405.java147 public void handle(HttpExchange t) throws IOException { method in class:B6660405.MyHandler
H A DHttpOnly.java224 public void handle(HttpExchange t) throws IOException { method in class:HttpOnly.SimpleHandler
/openjdk7/jdk/src/share/classes/sun/misc/
H A DSignal.java35 * by the Java VM implementation. The <code>Signal.handle</code>
39 * When <code>Signal.handle</code> is called, the VM internally registers a
62 * public void handle(Signal sig) {
63 * ... // handle SIGINT
66 * Signal.handle(new Signal("INT"), handler);
159 public static synchronized SignalHandler handle(Signal sig, method in class:Signal
192 * @see sun.misc.Signal#handle(Signal sig, SignalHandler handler)
212 handler.handle(sig);
/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/corba/src/share/classes/com/sun/corba/se/impl/activation/
H A DServerManagerImpl.java553 public void handle(ObjectKey okey) method in class:ServerManagerImpl
570 System.out.println( "ServerManagerImpl: handle called for server id" +
608 System.out.println( "ServerManagerImpl: handle " +
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DArrayKlass.java59 ArrayKlass(OopHandle handle, ObjectHeap heap) { argument
60 super(handle, heap);
H A DConstantPoolCache.java55 ConstantPoolCache(OopHandle handle, ObjectHeap heap) { argument
56 super(handle, heap);
H A DTypeArrayKlass.java50 TypeArrayKlass(OopHandle handle, ObjectHeap heap) { argument
51 super(handle, heap);

Completed in 80 milliseconds

1234567891011