Searched defs:lib (Results 76 - 100 of 100) sorted by relevance

1234

/external/openssl/crypto/err/
H A Derr.c125 static void err_load_strings(int lib, ERR_STRING_DATA *str);
182 {ERR_R_SYS_LIB ,"system lib"},
183 {ERR_R_BN_LIB ,"BN lib"},
184 {ERR_R_RSA_LIB ,"RSA lib"},
185 {ERR_R_DH_LIB ,"DH lib"},
186 {ERR_R_EVP_LIB ,"EVP lib"},
187 {ERR_R_BUF_LIB ,"BUF lib"},
188 {ERR_R_OBJ_LIB ,"OBJ lib"},
189 {ERR_R_PEM_LIB ,"PEM lib"},
190 {ERR_R_DSA_LIB ,"DSA lib"},
670 err_load_strings(int lib, ERR_STRING_DATA *str) argument
681 ERR_load_strings(int lib, ERR_STRING_DATA *str) argument
687 ERR_unload_strings(int lib, ERR_STRING_DATA *str) argument
706 ERR_put_error(int lib, int func, int reason, const char *file, int line) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/src/loadso/macosx/
H A DSDL_dlcompat.c29 * not conflict with the system lib on newer versions, we include dlcompat
209 const struct mach_header *lib; member in struct:dlstatus
358 * /usr/lib and /lib. Since both of the environments variables can contain a
371 stdpath = "/usr/local/lib:/lib:/usr/lib";
712 else if (dls->lib && dyld_NSIsSymbolNameDefinedInImage && dyld_NSLookupSymbolInImage)
714 if (dyld_NSIsSymbolNameDefinedInImage(dls->lib, symbol))
716 nssym = dyld_NSLookupSymbolInImage(dls->lib,
[all...]
/external/qemu/distrib/sdl-1.2.15/src/main/symbian/EKA2/
H A Dsdlexe.cpp493 RLibrary lib; local
494 User::LeaveIfError(lib.Load(_L("sdlexe.dll")));
495 TFileName name = lib.FileName();
496 lib.Close();
/external/wpa_supplicant_8/hostapd/src/eap_peer/
H A Dtncc.c406 TCHAR *lib = wpa_strdup_tchar(imc->path); local
407 if (lib == NULL)
409 imc->dlhandle = LoadLibrary(lib);
410 os_free(lib);
/external/wpa_supplicant_8/src/eap_peer/
H A Dtncc.c406 TCHAR *lib = wpa_strdup_tchar(imc->path); local
407 if (lib == NULL)
409 imc->dlhandle = LoadLibrary(lib);
410 os_free(lib);
/external/wpa_supplicant_8/wpa_supplicant/src/eap_peer/
H A Dtncc.c406 TCHAR *lib = wpa_strdup_tchar(imc->path); local
407 if (lib == NULL)
409 imc->dlhandle = LoadLibrary(lib);
410 os_free(lib);
/external/chromium_org/third_party/icu/source/common/
H A Dputil.cpp686 #define TZZONEINFO "/usr/share/lib/zoneinfo/"
687 #define TZZONEINFO2 "../usr/share/lib/zoneinfo/"
2175 uprv_dl_close(void *lib, UErrorCode *status) { argument
2177 dlclose(lib);
2181 uprv_dlsym_func(void *lib, const char* sym, UErrorCode *status) { argument
2188 uret.vp = dlsym(lib, sym);
2191 printf("dlerror on dlsym(%p,%s): %s\n", lib,sym, dlerror());
2210 uprv_dl_close(void *lib, UErrorCode *status) { argument
2218 uprv_dlsym_func(void *lib, const char* sym, UErrorCode *status) { argument
2233 HMODULE lib local
2247 uprv_dl_close(void *lib, UErrorCode *status) argument
2258 uprv_dlsym_func(void *lib, const char* sym, UErrorCode *status) argument
2291 uprv_dl_close(void *lib, UErrorCode *status) argument
2299 uprv_dlsym_func(void *lib, const char* sym, UErrorCode *status) argument
[all...]
/external/clang/bindings/python/clang/
H A Dcindex.py153 conf.lib.clang_disposeString(self)
158 return conf.lib.clang_getCString(res)
170 conf.lib.clang_getInstantiationLocation(self, byref(f), byref(l),
185 return conf.lib.clang_getLocation(tu, file, line, column)
195 return conf.lib.clang_getLocationForOffset(tu, file, offset)
218 return conf.lib.clang_equalLocations(self, other)
245 return conf.lib.clang_getRange(start, end)
253 return conf.lib.clang_getRangeStart(self)
261 return conf.lib.clang_getRangeEnd(self)
264 return conf.lib
3428 def lib(self): member in class:Config
[all...]
/external/icu/icu4c/source/common/
H A Dputil.cpp686 #define TZZONEINFO "/usr/share/lib/zoneinfo/"
687 #define TZZONEINFO2 "../usr/share/lib/zoneinfo/"
2176 uprv_dl_close(void *lib, UErrorCode *status) { argument
2178 dlclose(lib);
2182 uprv_dlsym_func(void *lib, const char* sym, UErrorCode *status) { argument
2189 uret.vp = dlsym(lib, sym);
2192 printf("dlerror on dlsym(%p,%s): %s\n", lib,sym, dlerror());
2211 uprv_dl_close(void *lib, UErrorCode *status) { argument
2219 uprv_dlsym_func(void *lib, const char* sym, UErrorCode *status) { argument
2234 HMODULE lib local
2248 uprv_dl_close(void *lib, UErrorCode *status) argument
2259 uprv_dlsym_func(void *lib, const char* sym, UErrorCode *status) argument
2292 uprv_dl_close(void *lib, UErrorCode *status) argument
2300 uprv_dlsym_func(void *lib, const char* sym, UErrorCode *status) argument
[all...]
/external/compiler-rt/lib/msan/tests/
H A Dmsan_test.cc2722 void *lib = dlopen(path, RTLD_LAZY); local
2723 ASSERT_NE((void*)0, lib);
2729 dlclose(lib);
2744 void *lib = dlopen(path, RTLD_LAZY); local
2745 if (lib == NULL) {
2747 ASSERT_TRUE(lib != NULL);
2749 void **(*get_dso_global)() = (void **(*)())dlsym(lib, "get_dso_global");
2755 dlclose(lib);
2762 void *lib = dlopen(path, RTLD_LAZY); local
2763 ASSERT_TRUE(lib
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.launcher.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.launcher_1.1.0.v20100507.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.launching_3.5.100.v20100526.jar ... .html java.policy.applet plugin.properties lib/ lib/launchingsupport.jar org/ org/eclipse/ org/eclipse/jdt ...
H A Dorg.eclipse.ant.core_3.2.200.v20100427.jar ... NOTICE about_files/asl-v20.txt plugin.properties lib/ lib/antsupportlib.jar org/ org/eclipse/ org/eclipse/ant ...
H A Dorg.eclipse.pde.core_3.6.1.v20100902_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.pde.api.tools_1.0.202.v20100820_r361.jar ... -tasks.properties scripts/api-tasks.xml lib/ lib/apitooling-ant.jar compare.xsl notsearched ...
H A Dorg.mortbay.jetty.server_6.1.23.v201004211559.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.apt.core_3.3.401.R36_v20100727-0110.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/libxml/src/
H A Drelaxng.c160 void *data; /* data lib or specific pointer */
975 xmlRelaxNGTypeLibraryPtr lib; local
977 lib = (xmlRelaxNGTypeLibraryPtr) define->data;
978 if ((lib != NULL) && (lib->freef != NULL))
979 lib->freef(lib->data, (void *) define->attrs);
2725 * @lib: the type library structure
2731 xmlRelaxNGFreeTypeLibrary(xmlRelaxNGTypeLibraryPtr lib, argument
2734 if (lib
2761 xmlRelaxNGTypeLibraryPtr lib; local
3525 xmlRelaxNGTypeLibraryPtr lib = NULL; local
3618 xmlRelaxNGTypeLibraryPtr lib; local
8583 xmlRelaxNGTypeLibraryPtr lib; local
8728 xmlRelaxNGTypeLibraryPtr lib; local
[all...]
/external/elfutils/0.153/src/
H A Dreadelf.c2929 GElf_Lib *lib = gelf_getlib (data, cnt, &lib_mem); local
2930 if (unlikely (lib == NULL))
2933 time_t t = (time_t) lib->l_time_stamp;
2939 cnt, elf_strptr (ebl->elf, shdr->sh_link, lib->l_name),
2942 (unsigned int) lib->l_checksum,
2943 (unsigned int) lib->l_version,
2944 (unsigned int) lib->l_flags);
/external/libxml2/
H A Drelaxng.c161 void *data; /* data lib or specific pointer */
976 xmlRelaxNGTypeLibraryPtr lib; local
978 lib = (xmlRelaxNGTypeLibraryPtr) define->data;
979 if ((lib != NULL) && (lib->freef != NULL))
980 lib->freef(lib->data, (void *) define->attrs);
2726 * @lib: the type library structure
2732 xmlRelaxNGFreeTypeLibrary(xmlRelaxNGTypeLibraryPtr lib, argument
2735 if (lib
2762 xmlRelaxNGTypeLibraryPtr lib; local
3526 xmlRelaxNGTypeLibraryPtr lib = NULL; local
3619 xmlRelaxNGTypeLibraryPtr lib; local
8584 xmlRelaxNGTypeLibraryPtr lib; local
8729 xmlRelaxNGTypeLibraryPtr lib; local
[all...]
/external/conscrypt/src/main/native/
H A Dorg_conscrypt_NativeCrypto.cpp1757 void *lib = dlopen("libjavacore.so", RTLD_NOW); local
1758 if (lib != NULL) {
1759 async_close_monitor_ctor = (acm_ctor_func) dlsym(lib, "_ZN24AsynchronousCloseMonitorC1Ei");
1760 async_close_monitor_dtor = (acm_dtor_func) dlsym(lib, "_ZN24AsynchronousCloseMonitorD1Ev");
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/external/owasp/sanitizer/tools/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...

Completed in 5715 milliseconds

1234