null

Searched defs:library (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/make/tools/freetypecheck/
H A Dfreetypecheck.c80 FT_Library library; local
91 FT_Init_FreeType(&library);
92 FT_Library_Version(library, &major, &minor, &patch);
95 printf("Detected freetype library: %s\n", v);
97 printf("Failed: too old library.\n");
/openjdk7/jdk/src/windows/classes/sun/tools/attach/
H A DWindowsAttachProvider.java141 // For those processes that have loaded a library named "jvm.dll"
168 // indicates if a library of a given name has been loaded by a process
169 private static native boolean isLibraryLoadedByProcess(String library, argument
173 // native functions in this library
/openjdk7/jdk/src/share/native/sun/security/pkcs11/
H A Dj2secmod.h64 char *dllName; /* name of the shared library which implements
67 void *library; /* pointer to the library. opaque. used only by member in struct:SECMODModuleStr
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSF2Instrument.java44 long library = 0; field in class:SF2Instrument
97 return library;
100 public void setLibrary(long library) { argument
101 this.library = library;
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_init.c69 /* The only global variable, defined by this library */
1240 * agent library).
1886 /* Dynamic library loading */
1897 /* The library may be located in different ways, try both, but
1900 getSystemProperty("sun.boot.library.path", &boot_path);
1915 /* Lookup dynamic function pointer in shared library */
1917 lookup_library_symbol(void *library, char **symbols, int nsymbols) argument
1924 addr = md_find_library_entry(library, symbols[i]);
1933 "Cannot find library symbol '%s'", symbols[0]);
1968 getSystemProperty("sun.boot.library
[all...]
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DConfig.java114 // name of the PKCS#11 library
115 private String library; field in class:Config
171 // location of the NSS library files (libnss3.so, etc.)
224 return library;
231 return "SunPKCS11-" + name + " using library " + library;
389 } else if (word.equals("library")) {
390 library = parseLibrary(word);
468 if (library == null) {
469 throw new ConfigurationException("library mus
[all...]
/openjdk7/jdk/src/share/native/sun/font/
H A DfreetypeScaler.c61 FT_Library library; member in struct:__anon798
121 FT_Done_FreeType(scalerInfo->library);
271 We can consider sharing freetype library between different
280 error = FT_Init_FreeType(&scalerInfo->library);
303 error = FT_New_Memory_Face(scalerInfo->library,
332 error = FT_Open_Face(scalerInfo->library,
344 FT_Done_FreeType(scalerInfo->library);
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiExport.cpp2170 void* library; local
2182 // If the path is absolute we attempt to load the library. Otherwise we try to
2186 library = os::dll_load(agent, ebuf, sizeof ebuf);
2190 library = os::dll_load(buffer, ebuf, sizeof ebuf);
2191 if (library == NULL) {
2195 library = os::dll_load(buffer, ebuf, sizeof ebuf);
2199 // If the library was loaded then we attempt to invoke the Agent_OnAttach
2201 if (library != NULL) {
2208 CAST_TO_FN_PTR(OnAttachEntry_t, os::dll_lookup(library, on_attach_symbols[symbol_index]));
2213 // Agent_OnAttach missing - unload library
[all...]

Completed in 107 milliseconds