Searched refs:libname (Results 1 - 11 of 11) sorted by relevance

/openjdk7/jdk/src/share/classes/java/lang/
H A DRuntime.java807 * method is called with the <code>libname</code> as its argument.
825 * @param libname the name of the library.
830 * @exception NullPointerException if <code>libname</code> is
836 public void loadLibrary(String libname) { argument
837 loadLibrary0(Reflection.getCallerClass(), libname);
840 synchronized void loadLibrary0(Class fromClass, String libname) { argument
843 security.checkLink(libname);
845 if (libname.indexOf((int)File.separatorChar) != -1) {
847 "Directory separator should not appear in library name: " + libname);
849 ClassLoader.loadLibrary(fromClass, libname, fals
[all...]
H A DSystem.java1065 * Loads the system library specified by the <code>libname</code>
1075 * @param libname the name of the library.
1080 * @exception NullPointerException if <code>libname</code> is
1086 public static void loadLibrary(String libname) { argument
1087 Runtime.getRuntime().loadLibrary0(Reflection.getCallerClass(), libname);
1094 * @param libname the name of the library.
1096 * @exception NullPointerException if <code>libname</code> is
1102 public static native String mapLibraryName(String libname); argument
H A DClassLoader.java1707 * @param libname
1717 protected String findLibrary(String libname) { argument
/openjdk7/hotspot/agent/src/os/bsd/
H A Dlibproc_impl.h119 lib_info* add_lib_info(struct ps_prochandle* ph, const char* libname, uintptr_t base);
122 lib_info* add_lib_info_fd(struct ps_prochandle* ph, const char* libname, int fd,
H A Dlibproc_impl.c152 lib_info* add_lib_info(struct ps_prochandle* ph, const char* libname, uintptr_t base) { argument
153 return add_lib_info_fd(ph, libname, -1, base);
156 lib_info* add_lib_info_fd(struct ps_prochandle* ph, const char* libname, int fd, uintptr_t base) { argument
164 strncpy(newlib->name, libname, sizeof(newlib->name));
/openjdk7/hotspot/agent/src/os/linux/
H A Dlibproc_impl.h117 lib_info* add_lib_info(struct ps_prochandle* ph, const char* libname, uintptr_t base);
120 lib_info* add_lib_info_fd(struct ps_prochandle* ph, const char* libname, int fd,
H A Dlibproc_impl.c153 lib_info* add_lib_info(struct ps_prochandle* ph, const char* libname, uintptr_t base) { argument
154 return add_lib_info_fd(ph, libname, -1, base);
157 lib_info* add_lib_info_fd(struct ps_prochandle* ph, const char* libname, int fd, uintptr_t base) { argument
165 strncpy(newlib->name, libname, sizeof(newlib->name));
186 newlib->symtab = build_symtab(newlib->fd, libname);
/openjdk7/jdk/src/share/classes/javax/management/loading/
H A DMLet.java1015 * System.mapLibraryName}{@code (libname)}. Then the following names are
1028 * @param libname The library name.
1032 protected String findLibrary(String libname) { argument
1039 String nativelibname = System.mapLibraryName(libname);
1046 "Search " + libname + " in all JAR files");
1096 libname + " not found in any JAR file");
1098 "Search " + libname + " along the path " +
1156 private synchronized String loadLibraryAsResource(String libname) { argument
1159 libname.replace(File.separatorChar,'/'));
1165 libname
[all...]
/openjdk7/jdk/src/share/back/
H A Dtransport.c103 char libname[MAXPATHLEN+2]; local
119 dbgsysBuildLibName(libname, sizeof(libname), plibdir, name);
122 handle = dbgsysLoadLibrary(libname, buf, sizeof(buf));
/openjdk7/jdk/src/share/native/java/lang/
H A DSystem.c450 Java_java_lang_System_mapLibraryName(JNIEnv *env, jclass ign, jstring libname) argument
457 if (libname == NULL) {
461 len = (*env)->GetStringLength(env, libname);
467 (*env)->GetStringRegion(env, libname, 0, len, chars + prefix_len);
/openjdk7/jdk/test/demo/jvmti/
H A DDemoRun.java177 String libname = sdk_home
184 cmdLine += (cmd[i++] = "-agentpath:" + libname

Completed in 45 milliseconds