Searched defs:libName (Results 1 - 25 of 25) sorted by relevance

/external/qemu/android/utils/
H A Ddll.c42 char* libName = (char*) libraryName; local
47 libName = append_string(libraryName, ".dll");
52 result = (ADynamicLibrary*) LoadLibrary( libName );
58 if (libName != libraryName) {
59 free(libName);
107 char* libName = (char*) libraryName; local
118 libName = append_string(libraryName, SO_EXTENSION);
123 result = dlopen( libName, RTLD_LAZY );
129 if (libName != (char*)libraryName) {
130 free(libName);
[all...]
/external/chromium_org/base/android/java/src/org/chromium/base/library_loader/
H A DLibraryLoaderHelper.java116 String libName = System.mapLibraryName(library);
117 return new File(getWorkaroundLibDir(context), libName);
141 for (String libName : NativeLibraries.LIBRARIES) {
142 String jniNameInApk = getJniNameInApk(libName);
152 File outputFile = getWorkaroundLibFile(context, libName);
230 private static String getJniNameInApk(String libName) { argument
232 return "lib/" + Build.CPU_ABI + "/" + System.mapLibraryName(libName);
/external/chromium_org/components/cronet/android/java/src/org/chromium/net/
H A DHttpUrlRequestFactoryConfig.java30 public HttpUrlRequestFactoryConfig setLibraryName(String libName) { argument
31 return putString(UrlRequestContextConfig.NATIVE_LIBRARY_NAME, libName);
/external/qemu/distrib/sdl-1.2.15/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/chromium_org/third_party/icu/source/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.cpp78 static void createFileNames(UPKGOptions *o, const char mode, const char *version_major, const char *version, const char *libName, const UBool reverseExt, UBool noVersion);
365 o.libName = options[LIBNAME].value;
367 o.libName = o.shortName;
646 /* Using the base libName and version number, generate the library file names. */
647 createFileNames(o, mode, version_major, o->version == NULL ? "" : o->version, o->libName, reverseExt, noVersion);
855 * Given the base libName and version numbers, generate the libary file names and store it in libFileNames.
858 static void createFileNames(UPKGOptions *o, const char mode, const char *version_major, const char *version, const char *libName, UBool reverseExt, UBool noVersion) { argument
862 sprintf(libFileNames[LIB_FILE], "%s", libName);
866 libName);
871 libName);
[all...]
/external/icu/icu4c/source/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.cpp78 static void createFileNames(UPKGOptions *o, const char mode, const char *version_major, const char *version, const char *libName, const UBool reverseExt, UBool noVersion);
369 o.libName = options[LIBNAME].value;
371 o.libName = o.shortName;
656 /* Using the base libName and version number, generate the library file names. */
657 createFileNames(o, mode, version_major, o->version == NULL ? "" : o->version, o->libName, reverseExt, noVersion);
864 * Given the base libName and version numbers, generate the libary file names and store it in libFileNames.
867 static void createFileNames(UPKGOptions *o, const char mode, const char *version_major, const char *version, const char *libName, UBool reverseExt, UBool noVersion) { argument
871 sprintf(libFileNames[LIB_FILE], "%s", libName);
875 libName);
880 libName);
[all...]
/external/qemu/android/
H A Dmain-emulator.c62 static char* getSharedLibraryPath(const char* progName, const char* libName);
390 getSharedLibraryPath(const char* progName, const char* libName) argument
404 if (probePathForFile(progDir, libName)) {
413 if (p < end && probePathForFile(temp, libName)) {
431 if (p < end && probePathForFile(temp, libName)) {
/external/chromium_org/third_party/icu/source/common/
H A Dicuplug.c46 char libName[UPLUG_NAME_MAX]; /**< library name */ member in struct:UPlugData
113 * @param libName libname to search for
116 static int32_t searchForLibraryName(const char *libName) { argument
120 if(!uprv_strcmp(libName, libraryList[i].name)) {
155 uplug_openLibrary(const char *libName, UErrorCode *status) { argument
161 libEntry = searchForLibraryName(libName);
174 libraryList[libEntry].lib = uprv_dl_open(libName, status);
176 DBG((stderr, "uplug_openLibrary(%s,%s) libEntry %d, lib %p\n", libName, u_errorName(*status), libEntry, lib));
184 DBG((stderr, "uplug_openLibrary(%s,%s) libEntry %d, lib %p\n", libName, u_errorName(*status), libEntry, lib));
190 uprv_strncpy(libraryList[libEntry].name,libName,UPLUG_NAME_MA
544 uplug_initErrorPlug(const char *libName, const char *sym, const char *config, const char *nameOrError, UErrorCode loadStatus, UErrorCode *status) argument
576 uplug_initPlugFromLibrary(const char *libName, const char *sym, const char *config, UErrorCode *status) argument
607 uplug_loadPlugFromLibrary(const char *libName, const char *sym, const char *config, UErrorCode *status) argument
[all...]
H A Dputil.cpp2161 uprv_dl_open(const char *libName, UErrorCode *status) { argument
2164 ret = dlopen(libName, RTLD_NOW|RTLD_GLOBAL);
2167 printf("dlerror on dlopen(%s): %s\n", libName, dlerror());
2203 uprv_dl_open(const char *libName, UErrorCode *status) { argument
2232 uprv_dl_open(const char *libName, UErrorCode *status) { argument
2237 lib = LoadLibraryA(libName);
2284 uprv_dl_open(const char *libName, UErrorCode *status) { argument
/external/icu/icu4c/source/common/
H A Dicuplug.c46 char libName[UPLUG_NAME_MAX]; /**< library name */ member in struct:UPlugData
113 * @param libName libname to search for
116 static int32_t searchForLibraryName(const char *libName) { argument
120 if(!uprv_strcmp(libName, libraryList[i].name)) {
155 uplug_openLibrary(const char *libName, UErrorCode *status) { argument
161 libEntry = searchForLibraryName(libName);
174 libraryList[libEntry].lib = uprv_dl_open(libName, status);
176 DBG((stderr, "uplug_openLibrary(%s,%s) libEntry %d, lib %p\n", libName, u_errorName(*status), libEntry, lib));
184 DBG((stderr, "uplug_openLibrary(%s,%s) libEntry %d, lib %p\n", libName, u_errorName(*status), libEntry, lib));
190 uprv_strncpy(libraryList[libEntry].name,libName,UPLUG_NAME_MA
544 uplug_initErrorPlug(const char *libName, const char *sym, const char *config, const char *nameOrError, UErrorCode loadStatus, UErrorCode *status) argument
576 uplug_initPlugFromLibrary(const char *libName, const char *sym, const char *config, UErrorCode *status) argument
607 uplug_loadPlugFromLibrary(const char *libName, const char *sym, const char *config, UErrorCode *status) argument
[all...]
H A Dputil.cpp2162 uprv_dl_open(const char *libName, UErrorCode *status) { argument
2165 ret = dlopen(libName, RTLD_NOW|RTLD_GLOBAL);
2168 printf("dlerror on dlopen(%s): %s\n", libName, dlerror());
2204 uprv_dl_open(const char *libName, UErrorCode *status) { argument
2233 uprv_dl_open(const char *libName, UErrorCode *status) { argument
2238 lib = LoadLibraryA(libName);
2285 uprv_dl_open(const char *libName, UErrorCode *status) { argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.filesystem_1.3.1.R36x_v20100727-0745.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
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.pde.core_3.6.1.v20100902_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.1.R36x_v20100806.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.2.R36x_v20101103.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/llvm/lib/Target/Sparc/
H A DSparcISelLowering.cpp2196 const char *libName = TLI.getLibcallName(VT == MVT::i32 local
2199 return TLI.LowerF128Op(Op, DAG, libName, 1);
2227 const char *libName = TLI.getLibcallName(OpVT == MVT::i32 local
2230 return TLI.LowerF128Op(Op, DAG, libName, 1);
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 636 milliseconds