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

1234567891011

/openjdk7/jdk/src/windows/classes/java/io/
H A DFileDescriptor.java31 * Instances of the file descriptor class serve as an opaque handle
46 private long handle; field in class:FileDescriptor
62 handle = -1;
82 public void setHandle(FileDescriptor obj, long handle) {
83 obj.handle = handle;
87 return obj.handle;
94 * A handle to the standard input stream. Usually, this file
103 * A handle to the standard output stream. Usually, this file
111 * A handle t
[all...]
/openjdk7/jdk/src/windows/native/com/sun/media/sound/
H A DPLATFORM_API_WinOS_Util.c35 void MIDI_SetStartTime(MidiDeviceHandle* handle) { argument
36 if (handle != NULL) {
37 handle->startTime = (INT64) timeGetTime();
43 INT64 MIDI_GetTimeStamp(MidiDeviceHandle* handle) { argument
45 if (handle == NULL) {
48 res = ((INT64) timeGetTime()) - handle->startTime;
84 int MIDI_WinCreateEmptyLongBufferQueue(MidiDeviceHandle* handle, int count) { argument
85 return MIDI_WinCreateLongBufferQueue(handle, count, 0, NULL);
88 int MIDI_WinCreateLongBufferQueue(MidiDeviceHandle* handle, int count, int size, UBYTE* preAllocatedMem) { argument
110 handle
124 MIDI_WinDestroyLongBufferQueue(MidiDeviceHandle* handle) argument
[all...]
/openjdk7/jdk/test/com/sun/net/httpserver/
H A DTest3.java74 public void handle (HttpExchange t) method in class:Test3.Handler
H A DTest4.java72 public void handle (HttpExchange t) method in class:Test4.Handler
H A DTest5.java73 public void handle (HttpExchange t) method in class:Test5.Handler
/openjdk7/jdk/test/com/sun/security/auth/module/LdapLoginModule/
H A DCheckConfigs.java116 public void handle(Callback[] callbacks) method in class:CheckConfigs.TestCallbackHandler
/openjdk7/jdk/test/java/awt/EventQueue/6638195/
H A Dbug6638195.java102 methodMap.put("handle", afterDispatchHandleArgument);
153 public void afterDispatch(AWTEvent event, Object handle) { argument
/openjdk7/jdk/src/share/classes/sun/security/ec/
H A DECKeyPairGenerator.java164 * The first handle points to the private key, the second to the public key.
170 * Extracts the encoded key data using the supplied handle.
172 private static native byte[] getEncodedBytes(long handle); argument
/openjdk7/jdk/src/share/classes/sun/tracing/dtrace/
H A DActivation.java62 * This holds the native handle.
79 private long handle; field in class:SystemResource
85 SystemResource(Activation activation, long handle) { argument
87 this.handle = handle;
93 JVM.dispose(handle);
95 handle = 0;
101 if (resource.handle != 0) {
/openjdk7/jdk/test/sun/net/www/http/ChunkedInputStream/
H A DChunkedEncodingTest.java104 public void handle(HttpExchange t) throws IOException { method in class:ChunkedEncodingTest.SimpleHandler
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXEmbeddedFrame.java37 long handle; field in class:XEmbeddedFrame
41 // handle should be a valid X Window.
42 public XEmbeddedFrame(long handle) { argument
43 this(handle, false);
47 public XEmbeddedFrame(long handle, boolean supportsXEmbed, boolean isTrayIconWindow) { argument
48 super(handle, supportsXEmbed);
54 this.handle = handle;
55 if (handle != 0) { // Has actual parent
72 public XEmbeddedFrame(long handle, boolea argument
[all...]
/openjdk7/jdk/test/sun/security/krb5/auto/
H A DOneKDC.java127 public void handle(Callback[] callbacks) { method in class:OneKDC.CallbackForClient
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/
H A DObjectKeyFactoryImpl.java58 ObjectKeyTemplate handle( int magic, int scid, method in interface:Handler
129 public ObjectKeyTemplate handle( int magic, int scid,
153 public ObjectKeyTemplate handle( int magic, int scid,
196 oktemp = handler.handle( magic, scid, is, osh ) ;
/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 DArray.java44 Array(OopHandle handle, ObjectHeap heap) { argument
45 super(handle, heap);
H A DCompiledICHolder.java49 CompiledICHolder(OopHandle handle, ObjectHeap heap) { argument
50 super(handle, heap);
H A DLocalVariableTableElement.java61 private OopHandle handle; field in class:LocalVariableTableElement
64 public LocalVariableTableElement(OopHandle handle, long offset) { argument
65 this.handle = handle;
70 return (int) handle.getCIntegerAt(offset + offsetOfStartBCI, 2, true);
74 return (int) handle.getCIntegerAt(offset + offsetOfLength, 2, true);
78 return (int) handle.getCIntegerAt(offset + offsetOfNameCPIndex, 2, true);
82 return (int) handle.getCIntegerAt(offset + offsetOfDescriptorCPIndex, 2, true);
86 return (int) handle.getCIntegerAt(offset + offsetOfSignatureCPIndex, 2, true);
90 return (int) handle
[all...]
H A DObjArrayKlass.java51 ObjArrayKlass(OopHandle handle, ObjectHeap heap) { argument
52 super(handle, heap);
H A DTypeArray.java49 TypeArray(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);
/openjdk7/jdk/src/share/classes/sun/font/
H A DFontManager.java100 * Creates a derived composite font from the specified font (handle).
104 * @param handle the original font (handle)
106 * @return the handle for the derived font
109 Font2DHandle handle);
108 getNewComposite(String family, int style, Font2DHandle handle) argument
/openjdk7/jdk/src/share/classes/com/sun/security/auth/callback/
H A DDialogCallbackHandler.java93 * @param callbacks the callbacks to handle
98 public void handle(Callback[] callbacks) method in class:DialogCallbackHandler
/openjdk7/jdk/src/macosx/native/com/sun/media/sound/
H A DPLATFORM_API_MacOSX_MidiOut.c65 INT32 MIDI_OUT_OpenDevice(INT32 deviceID, MidiDeviceHandle** handle) { argument
68 return MIDI_Utils_OpenDevice(MIDI_OUT, deviceID, (MacMidiDeviceHandle**) handle, 0, 0, 0);
71 INT32 MIDI_OUT_CloseDevice(MidiDeviceHandle* handle) { argument
83 return MIDI_Utils_CloseDevice((MacMidiDeviceHandle*) handle);
87 INT64 MIDI_OUT_GetTimeStamp(MidiDeviceHandle* handle) { argument
88 return MIDI_Utils_GetTimeStamp((MacMidiDeviceHandle*) handle);
92 INT32 MIDI_OUT_SendShortMessage(MidiDeviceHandle* handle, UINT32 packedMsg, UINT32 timestamp) { argument
96 if (!handle) {
97 ERROR0("< ERROR: MIDI_OUT_SendShortMessage: handle is NULL\n");
101 MacMidiDeviceHandle* macHandle = (MacMidiDeviceHandle*) handle;
183 MIDI_OUT_SendLongMessage(MidiDeviceHandle* handle, UBYTE* data, UINT32 size, UINT32 timestamp) argument
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DdtraceJSDT.hpp53 static void pd_dispose(int handle);
62 static void dispose(OpaqueProbes handle);
97 void set_helper_handle(int handle) { _helper_handle = handle; } argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/server/
H A DAbstractServerAsyncTransport.java130 protected void handle(final T connection) throws IOException { method in class:AbstractServerAsyncTransport

Completed in 89 milliseconds

1234567891011