Searched refs:libName (Results 1 - 16 of 16) sorted by relevance

/external/qemu/android/utils/
H A Ddll.c67 char* libName = (char*) libraryName; local
72 libName = append_string(libraryName, ".dll");
77 result = (ADynamicLibrary*) LoadLibrary( libName );
83 if (libName != libraryName) {
84 free(libName);
132 char* libName = (char*) libraryName; local
143 libName = append_string(libraryName, SO_EXTENSION);
148 result = dlopen( libName, RTLD_LAZY );
154 if (libName != (char*)libraryName) {
155 free(libName);
[all...]
/external/libffi/testsuite/
H A Drun-all-tests24 libName="libffi-host"
82 libFile=`find out/host/${HOST_OS}-${HOST_ARCH} -name "${libName}.a" | head -1`
85 libFile="${libDir}/${libName}.a"
88 echo "could not find ${libName}" 1>&2
104 # -L"$libDir" -l"$libName"
/external/icu4c/common/
H A Dicuplugimp.h30 * @param libName library name to load
36 uplug_openLibrary(const char *libName, UErrorCode *status);
H A Dicuplug.c42 char libName[UPLUG_NAME_MAX]; /**< library name */ member in struct:UPlugData
109 * @param libName libname to search for
112 static int32_t searchForLibraryName(const char *libName) { argument
116 if(!uprv_strcmp(libName, libraryList[i].name)) {
151 uplug_openLibrary(const char *libName, UErrorCode *status) { argument
157 libEntry = searchForLibraryName(libName);
170 libraryList[libEntry].lib = uprv_dl_open(libName, status);
172 DBG((stderr, "uplug_openLibrary(%s,%s) libEntry %d, lib %p\n", libName, u_errorName(*status), libEntry, lib));
180 DBG((stderr, "uplug_openLibrary(%s,%s) libEntry %d, lib %p\n", libName, u_errorName(*status), libEntry, lib));
186 uprv_strncpy(libraryList[libEntry].name,libName,UPLUG_NAME_MA
539 uplug_initErrorPlug(const char *libName, const char *sym, const char *config, const char *nameOrError, UErrorCode loadStatus, UErrorCode *status) argument
574 uplug_initPlugFromLibrary(const char *libName, const char *sym, const char *config, UErrorCode *status) argument
609 uplug_loadPlugFromLibrary(const char *libName, const char *sym, const char *config, UErrorCode *status) argument
[all...]
H A Dputilimp.h294 U_INTERNAL void * U_EXPORT2 uprv_dl_open(const char *libName, UErrorCode *status);
H A Dputil.c2094 uprv_dl_open(const char *libName, UErrorCode *status) { argument
2097 ret = dlopen(libName, RTLD_NOW|RTLD_GLOBAL);
2129 uprv_dl_open(const char *libName, UErrorCode *status) { argument
2157 uprv_dl_open(const char *libName, UErrorCode *status) { argument
2162 lib = LoadLibrary(libName);
2209 uprv_dl_open(const char *libName, UErrorCode *status) { argument
/external/icu4c/tools/pkgdata/
H A Dpkgtypes.h95 * @param libName Name of the .lib, etc file
98 void pkg_sttc_writeReadme(struct UPKGOptions_ *opt, const char *libName, UErrorCode *status);
124 const char *libName; /* name for library (default: shortName) */ member in struct:UPKGOptions_
H A Dpkgdata.cpp122 static void createFileNames(UPKGOptions *o, const char mode, const char *version_major, const char *version, const char *libName, const UBool reverseExt);
377 o.libName = options[LIBNAME].value;
379 o.libName = o.shortName;
631 /* Using the base libName and version number, generate the library file names. */
632 createFileNames(o, mode, version_major, o->version, o->libName, reverseExt);
816 * Given the base libName and version numbers, generate the libary file names and store it in libFileNames.
819 static void createFileNames(UPKGOptions *o, const char mode, const char *version_major, const char *version, const char *libName, UBool reverseExt) { argument
822 libName);
831 libName,
834 libName,
[all...]
/external/qemu/android/
H A Dmain-emulator.c57 static char* getSharedLibraryPath(const char* progName, const char* libName);
244 getSharedLibraryPath(const char* progName, const char* libName) argument
258 if (probePathForFile(progDir, libName)) {
267 if (p < end && probePathForFile(temp, libName)) {
285 if (p < end && probePathForFile(temp, libName)) {
/external/v8/tools/
H A Dtickprocessor.js570 libName, libStart, libEnd, processorFunc) {
571 this.loadSymbols(libName);
611 CppEntriesProvider.prototype.loadSymbols = function(libName) {
629 UnixCppEntriesProvider.prototype.loadSymbols = function(libName) {
633 os.system(this.nmExec, ['-C', '-n', '-S', libName], -1, -1),
634 os.system(this.nmExec, ['-C', '-n', '-S', '-D', libName], -1, -1)
676 MacCppEntriesProvider.prototype.loadSymbols = function(libName) {
679 this.symbols = [os.system(this.nmExec, ['-n', '-f', libName], -1, -1), ''];
709 WindowsCppEntriesProvider.prototype.loadSymbols = function(libName) {
710 var fileNameFields = libName
[all...]
/external/v8/test/mjsunit/tools/
H A Dtickprocessor.js68 UnixCppEntriesProvider.prototype.loadSymbols = function(libName) {
98 UnixCppEntriesProvider.prototype.loadSymbols = function(libName) {
132 MacCppEntriesProvider.prototype.loadSymbols = function(libName) {
162 MacCppEntriesProvider.prototype.loadSymbols = function(libName) {
192 WindowsCppEntriesProvider.prototype.loadSymbols = function(libName) {
/external/icu4c/common/unicode/
H A Dicuplug.h349 * @param libName DLL name to load
357 uplug_loadPlugFromLibrary(const char *libName, const char *sym, const char *config, UErrorCode *status);
/external/qemu/distrib/sdl-1.2.12/src/timer/macos/
H A DFastTimes.c83 static Ptr FindFunctionInSharedLib(StringPtr libName, StringPtr funcName);
336 static Ptr FindFunctionInSharedLib(StringPtr libName, StringPtr funcName) { argument
345 if (/* error = */ GetSharedLibrary(libName, kCompiledCFragArch,
/external/webkit/Tools/Scripts/
H A Dbuild-webkit486 foreach my $libName (@librariesToCopy) {
487 my $srcLib = "WebKitLibraries/" . $libName;
488 my $lib = "$productDir/" . $libName;
/external/webkit/Source/WebKit/android/jni/
H A DWebViewCore.h473 jclass getPluginClass(const WTF::String& libName, const char* className);
H A DWebViewCore.cpp3660 jclass WebViewCore::getPluginClass(const WTF::String& libName, const char* className) argument
3667 jstring libString = wtfStringToJstring(env, libName);

Completed in 340 milliseconds