Searched refs:handle (Results 251 - 275 of 370) sorted by relevance

<<1112131415

/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/test/java/util/zip/ZipFile/
H A DDeleteTempJar.java68 public void handle(HttpExchange e) {
/openjdk7/jdk/test/javax/security/auth/login/LoginContext/
H A DDefaultHandlerImpl.java48 public void handle(Callback[] callbacks) method in class:DefaultHandlerImpl
/openjdk7/jdk/test/javax/security/sasl/Sasl/
H A DPassSysProps.java54 public void handle(Callback[] callbacks) {
/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/test/sun/net/www/protocol/http/
H A DB6369510.java105 public void handle(HttpExchange t) throws IOException { method in class:B6369510.MyHandler
H A DB6518816.java143 public void handle(HttpExchange t) throws IOException { method in class:B6518816.MyHandler
H A DB6641309.java106 public void handle(HttpExchange t) throws IOException { method in class:B6641309.MyHandler
H A DB6660405.java147 public void handle(HttpExchange t) throws IOException { method in class:B6660405.MyHandler
H A DBasicLongCredentials.java96 public void handle (HttpExchange t) throws IOException { method in class:BasicLongCredentials.Handler
/openjdk7/jdk/src/share/sample/nio/server/
H A DRequestHandler.java125 public void handle(SelectionKey sk) throws IOException { method in class:RequestHandler
/openjdk7/jdk/test/sun/security/krb5/auto/
H A DOkAsDelegateXRealm.java144 public void handle(Callback[] callbacks) method in class:OkAsDelegateXRealm
/openjdk7/hotspot/src/os/windows/launcher/
H A Djava_md.c202 * gamma launcher is simpler in that it doesn't handle VM flavors, data
282 HINSTANCE handle; local
320 if ((handle = LoadLibrary(tmpbuf)) == 0) {
327 PreJVMStart = (PREJVMSTART)GetProcAddress(handle, "preJVMStart");
332 FreeLibrary(handle);
339 FreeLibrary(handle);
439 HINSTANCE handle;
449 if ((handle = LoadLibrary(jvmpath)) == 0) {
456 (void *)GetProcAddress(handle, "JNI_CreateJavaVM");
458 (void *)GetProcAddress(handle, "JNI_GetDefaultJavaVMInitArg
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DSystemDictionary.java143 private static Oop newOop(OopHandle handle) { argument
144 return VM.getVM().getObjectHeap().newOop(handle);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DKlass.java71 Klass(OopHandle handle, ObjectHeap heap) { argument
72 super(handle, heap);
/openjdk7/jdk/src/windows/native/java/io/
H A DWinNTFileSystem_md.c61 HMODULE handle; local
70 (LPCWSTR)&CreateFileW, &handle) != 0)
73 GetProcAddress(handle, "GetFinalPathNameByHandleW");
613 HANDLE handle; local
658 /* Open handle to the first file */
659 handle = FindFirstFileW(search_path, &find_data);
661 if (handle == INVALID_HANDLE_VALUE) {
699 } while (FindNextFileW(handle, &find_data));
703 FindClose(handle);
/openjdk7/jdk/src/macosx/bin/
H A Djava_md_macosx.c761 // The handle is good for both the launcher and the libosxapp.dylib
762 void * handle = dlopen(NULL, RTLD_LAZY | RTLD_GLOBAL); local
763 if (handle) {
767 (JLI_GetJavaVMInstance_t)dlsym(handle,
777 (OSXAPP_SetJavaVM_t)dlsym(handle, "OSXAPP_SetJavaVM");
785 dlclose(handle);
/openjdk7/hotspot/agent/src/os/solaris/proc/
H A Dsaproc.cpp101 // libthread.so dlopen handle, thread agent ptr and function pointers
294 void * handle = NULL; local
299 handle = dlopen(alt_path, mode);
300 if (_libsaproc_debug && handle) {
304 if (handle == NULL && strrchr(name, '/')) {
307 handle = dlopen(alt_path, mode);
308 if (_libsaproc_debug && handle) {
313 if (handle == NULL) {
314 handle = dlopen(name, mode);
317 printf("libsaproc DEBUG: pathmap_dlopen %s return 0x%x\n", name, handle);
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DHSDB.java1020 OopHandle handle = addr.getOopHandleAt(0);
1021 addAnnotation(addr, handle);
1029 OopHandle handle = addr.getCompOopHandleAt(0);
1030 addAnnotation(addr, handle);
1033 public void addAnnotation(Address addr, OopHandle handle) {
1036 if (handle != null) {
1044 if (heap.getGen(i).isIn(handle)) {
1059 if (heap.permGen().isIn(handle)) {
1066 if (heap.youngGen().isIn(handle)) {
1069 } else if (heap.oldGen().isIn(handle)) {
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DDTMDefaultBaseTraversers.java519 * implemented by derived classes, and must be robust enough to handle any
613 * Get the subtree root identity from the handle that was passed in by
617 * @param handle handle to the root context.
620 protected int getSubtreeRoot(int handle) argument
622 return makeNodeIdentity(handle);
644 * implemented by derived classes, and must be robust enough to handle any
719 return makeNodeHandle(current); // make handle.
755 return makeNodeHandle(current); // make handle.
825 return makeNodeHandle(current); // make handle
1628 getSubtreeRoot(int handle) argument
1700 getSubtreeRoot(int handle) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/ntlm/
H A DNTLMClient.java47 * handle can provide domain info for authentication, optional
146 cbh.handle(new Callback[] {dcb, ncb, pcb});
H A DNTLMServer.java148 cbh.handle(new Callback[] { rcb, ncb, pcb });
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp964 // library handle for calling objc_registerThreadWithCollector()
1372 // SuSE 7.2, Debian) can not handle alternate signal stack correctly
1611 void* handle = dlopen("librt.so.1", RTLD_LAZY); local
1612 if (handle == NULL) {
1613 handle = dlopen("librt.so", RTLD_LAZY);
1616 if (handle) {
1618 (int(*)(clockid_t, struct timespec*))dlsym(handle, "clock_getres");
1620 (int(*)(clockid_t, struct timespec*))dlsym(handle, "clock_gettime");
1638 dlclose(handle);
1764 // sure it is async-safe and can handle partiall
2289 dll_lookup(void* handle, const char* name) argument
2316 void *handle; local
3028 libnuma_dlsym(void* handle, const char *name) argument
3042 void *handle = dlopen("libnuma.so.1", RTLD_LAZY); local
[all...]
/openjdk7/jdk/test/com/sun/net/httpserver/
H A DFileServerHandler.java66 public void handle (HttpExchange t) method in class:FileServerHandler
H A DTest3.java74 public void handle (HttpExchange t) method in class:Test3.Handler

Completed in 102 milliseconds

<<1112131415