Searched refs:handle (Results 101 - 125 of 370) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/com/sun/net/httpserver/
H A DFilter.java77 handler.handle (exchange);
/openjdk7/jdk/src/macosx/native/jobjc/src/core/native/
H A DMacOSXFramework.m61 void *handle = frameworkPtr ? jlong_to_ptr(frameworkPtr) : RTLD_DEFAULT;
62 void *data = dlsym(handle, symbol);
/openjdk7/jdk/src/solaris/native/com/sun/media/sound/
H A DPLATFORM_API_BsdOS_ALSA_PCMUtils.h61 int openPCMfromDeviceID(int deviceID, snd_pcm_t** handle, int isSource, int hardware);
H A DPLATFORM_API_LinuxOS_ALSA_PCMUtils.h61 int openPCMfromDeviceID(int deviceID, snd_pcm_t** handle, int isSource, int hardware);
/openjdk7/jdk/test/com/sun/security/auth/callback/TextCallbackHandler/
H A DDefault.java46 h.handle(callbacks);
H A DPassword.java43 h.handle(callbacks);
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsChannelFactory.java207 // IOException is thrown if the file handle cannot be associated
209 long handle = fdAccess.getHandle(fdObj);
210 CloseHandle(handle);
217 * encapsulating the handle to the open file.
299 long handle = CreateFile(pathForWindows,
309 if (WindowsFileAttributes.readAttributes(handle).isSymbolicLink())
312 CloseHandle(handle);
320 SetEndOfFile(handle);
322 CloseHandle(handle);
330 DeviceIoControlSetSparse(handle);
[all...]
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/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DStackFrameImpl.java129 OopHandle handle = values.oopHandleAt(0);
131 thisObject = vm.objectMirror(heap.newOop(handle));
237 OopHandle handle = null;
260 handle = null;
261 valueImpl = (ObjectReferenceImpl) vm.objectMirror(heap.newOop(handle));
263 handle = null;
264 valueImpl = vm.arrayMirror((Array)heap.newOop(handle));
290 handle = values.oopHandleAt(ss);
291 valueImpl = (ObjectReferenceImpl) vm.objectMirror(heap.newOop(handle));
293 handle
[all...]
/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/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DSpace.java87 public OopHandle nextOopHandle(OopHandle handle, long size) { argument
88 return handle.addOffsetToAsOopHandle(size);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DCompiledICHolder.java49 CompiledICHolder(OopHandle handle, ObjectHeap heap) { argument
50 super(handle, heap);
H A DInstance.java50 Instance(OopHandle handle, ObjectHeap heap) { argument
51 super(handle, heap);
H A DInstanceMirrorKlass.java51 InstanceMirrorKlass(OopHandle handle, ObjectHeap heap) { argument
52 super(handle, heap);
H A DObjArray.java49 ObjArray(OopHandle handle, ObjectHeap heap) { argument
50 super(handle, heap);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DThreadLocalAllocBuffer.java79 public OopHandle nextOopHandle(OopHandle handle, long size) { argument
80 return handle.addOffsetToAsOopHandle(size);
H A DJNIHandleBlock.java69 /* the next handle block is valid only if the current block is full */
105 containing the JNI handle or null if this handle block and its
106 successors did not contain it (or if the handle was deleted). */
119 handle in this block, or -1 if the handle was not contained in
146 OopHandle handle = oopAddr.getOopHandleAt(0);
147 if (VM.getVM().getUniverse().isInReserved(handle) && !VM.getVM().getJNIHandles().isDeletedHandle(handle)) {
148 /* the oop handle i
[all...]
/openjdk7/jdk/src/share/classes/sun/font/
H A DPhysicalFont.java61 handle = new Font2DHandle(this);
67 handle = new Font2DHandle(this);
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_md.h74 void md_unload_library(void *handle);
75 void * md_find_library_entry(void *handle, const char *name);
/openjdk7/jdk/src/windows/native/com/sun/media/sound/
H A DPLATFORM_API_WinOS_Ports.c47 HMIXER handle; member in struct:tag_PortInfo
88 int getControlInfo(HMIXER handle, MIXERLINE* line, MIXERLINECONTROLS* controls);
230 void printMixerLineControls(HMIXER handle, MIXERLINE* mixerLine) { argument
234 if (getControlInfo(handle, mixerLine, &controls)) {
246 TRACE5(" PortInfo %p: handle=%p, mixerIndex=%d, dstLineCount=%d, dstLines=%p, ", info, (void*) info->handle, info->mixerIndex, info->dstLineCount, info->dstLines);
256 int getMixerLineByDestination(HMIXER handle, DWORD dstIndex, MIXERLINE* mixerLine) { argument
259 if (mixerGetLineInfo((HMIXEROBJ) handle, mixerLine,
269 int getMixerLineByType(HMIXER handle, DWORD linetype, MIXERLINE* mixerLine) { argument
272 if (mixerGetLineInfo((HMIXEROBJ) handle, mixerLin
282 getMixerLineBySource(HMIXER handle, DWORD dstIndex, DWORD srcIndex, MIXERLINE* mixerLine) argument
296 getControlInfo(HMIXER handle, MIXERLINE* line, MIXERLINECONTROLS* controls) argument
327 lineHasControls(HMIXER handle, MIXERLINE* line, MIXERLINECONTROLS* controls) argument
367 getDestinationCount(HMIXER handle) argument
380 HMIXER handle; local
570 getControlCount(HMIXER handle, MIXERLINE* line, INT32* muxCount) argument
[all...]
/openjdk7/jdk/src/share/native/com/sun/media/sound/
H A DDirectAudioDevice.c48 void* handle; member in struct:__anon638
508 info->handle =DAUDIO_Open((int) mixerIndex, (INT32) deviceID, (int) isSource,
512 if (!info->handle) {
540 if (info && info->handle) {
541 DAUDIO_Start(info->handle, (int) isSource);
556 if (info && info->handle) {
557 DAUDIO_Stop(info->handle, (int) isSource);
572 if (info && info->handle) {
573 DAUDIO_Close(info->handle, (int) isSource);
604 if (info && info->handle) {
[all...]
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
H A DWindowsAsynchronousServerSocketChannelImpl.java50 private final long handle; field in class:WindowsAsynchronousServerSocketChannelImpl
81 this.handle = h;
96 closesocket0(handle);
114 * Task to initiate accept operation and to handle result.
147 updateAcceptContext(handle, channel.handle());
185 int n = accept0(handle, channel.handle(), overlapped, dataBuffer);
/openjdk7/jdk/src/share/back/
H A Dtransport.c85 findTransportOnLoad(void *handle) argument
90 if (handle == NULL) {
94 dbgsysFindLibraryEntry(handle, "jdwpTransport_OnLoad");
102 void *handle; local
122 handle = dbgsysLoadLibrary(libname, buf, sizeof(buf));
123 return handle;
135 void *handle; local
156 handle = loadTransportLibrary(libdir, name);
157 if (handle == NULL) {
170 handle
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DdtraceJSDT.cpp83 int handle = pd_activate((void*)probes, local
85 if (handle < 0) {
90 probes->set_helper_handle(handle);
/openjdk7/jdk/test/com/sun/jdi/
H A DDoubleAgentTest.java53 static Thread handle(InputStream in) { method in class:DoubleAgentTest.IOHandler
132 Thread t1 = IOHandler.handle(process.getInputStream());
133 Thread t2 = IOHandler.handle(process.getErrorStream());

Completed in 82 milliseconds

1234567891011>>