HomeSort by relevance Sort by last modified time
    Searched defs:libName (Results 1 - 25 of 83) sorted by null

1 2 3 4

  /sdk/emulator/opengl/host/libs/libOpenglRender/
EGLDispatch.cpp 28 const char *libName = getenv("ANDROID_EGL_LIB");
29 if (!libName) libName = DEFAULT_EGL_LIB;
31 osUtils::dynLibrary *lib = osUtils::dynLibrary::open(libName);
33 printf("Failed to open %s\n", libName);
GL2Dispatch.cpp 35 const char *libName = getenv("ANDROID_GLESv2_LIB");
36 if (!libName) libName = DEFAULT_GLES_V2_LIB;
41 s_gles2_lib = osUtils::dynLibrary::open(libName);
GLDispatch.cpp 34 const char *libName = getenv("ANDROID_GLESv1_LIB");
35 if (!libName) libName = DEFAULT_GLES_CM_LIB;
37 s_gles_lib = osUtils::dynLibrary::open(libName);
  /external/qemu/android/utils/
dll.c 42 char* libName = (char*) libraryName;
47 libName = append_string(libraryName, ".dll");
52 result = (ADynamicLibrary*) LoadLibrary( libName );
58 if (libName != libraryName) {
59 free(libName);
107 char* libName = (char*) libraryName;
118 libName = append_string(libraryName, SO_EXTENSION);
123 result = dlopen( libName, RTLD_LAZY );
129 if (libName != (char*)libraryName) {
130 free(libName);
    [all...]
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/core/
Exynos_OMX_Component_Register.h 46 OMX_U8 libName[MAX_OMX_COMPONENT_LIBNAME_SIZE];
53 OMX_U8 libName[MAX_OMX_COMPONENT_LIBNAME_SIZE];
Exynos_OMX_Component_Register.c 53 char *libName;
73 libName = Exynos_OSAL_Malloc(MAX_OMX_COMPONENT_LIBNAME_SIZE);
80 Exynos_OSAL_Memset(libName, 0, MAX_OMX_COMPONENT_LIBNAME_SIZE);
81 Exynos_OSAL_Strcpy(libName, EXYNOS_OMX_INSTALL_PATH);
82 Exynos_OSAL_Strcat(libName, d->d_name);
83 Exynos_OSAL_Log(EXYNOS_LOG_TRACE, "Path & libName : %s", libName);
84 if ((soHandle = Exynos_OSAL_dlopen(libName, RTLD_NOW)) != NULL) {
104 Exynos_OSAL_Strcpy(componentList[totalCompNum].libName, libName);
    [all...]
  /frameworks/av/media/libstagefright/omx/
SoftOMXPlugin.cpp 81 AString libName = "libstagefright_soft_";
82 libName.append(kComponents[i].mLibNameSuffix);
83 libName.append(".so");
85 void *libHandle = dlopen(libName.c_str(), RTLD_NOW);
88 ALOGE("unable to dlopen %s", libName.c_str());
  /device/asus/flo/camera/mm-image-codec/qomx_core/
qomx_core.c 162 char libName[BUFF_SIZE] = {0};
  /device/lge/hammerhead/camera/mm-image-codec/qomx_core/
qomx_core.c 162 char libName[BUFF_SIZE] = {0};
  /device/moto/shamu/camera/mm-image-codec/qomx_core/
qomx_core.c 180 char libName[BUFF_SIZE] = {0};
  /development/tools/apkcheck/src/com/android/apkcheck/
ApkCheck.java 73 String libName = args[idx].substring(args[idx].indexOf('=')+1);
74 if ("BUILTIN".equals(libName)) {
79 if (!parseApiDescr(apiDescr, libName))
  /external/chromium_org/base/android/java/src/org/chromium/base/library_loader/
LibraryLoaderHelper.java 116 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) {
232 return "lib/" + Build.CPU_ABI + "/" + System.mapLibraryName(libName);
Linker.java 686 String libName = entry.getKey();
688 if (!nativeUseSharedRelro(libName, libInfo)) {
689 Log.w(TAG, "Could not use shared RELRO section for " + libName);
691 if (DEBUG) Log.i(TAG, "Using shared RELRO section for " + libName);
755 String libName = System.mapLibraryName(library);
760 if (sLoadedLibraries.containsKey(libName)) {
761 if (DEBUG) Log.i(TAG, "Not loading " + libName + " twice");
    [all...]
  /external/chromium_org/third_party/icu/source/tools/pkgdata/
pkgtypes.h 95 * @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) */
  /external/icu/icu4c/source/tools/pkgdata/
pkgtypes.h 95 * @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) */
  /external/chromium_org/third_party/icu/source/common/
icuplug.c 46 char libName[UPLUG_NAME_MAX]; /**< library name */
113 * @param libName libname to search for
116 static int32_t searchForLibraryName(const char *libName) {
120 if(!uprv_strcmp(libName, libraryList[i].name)) {
155 uplug_openLibrary(const char *libName, UErrorCode *status) {
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))
    [all...]
  /external/icu/icu4c/source/common/
icuplug.c 46 char libName[UPLUG_NAME_MAX]; /**< library name */
113 * @param libName libname to search for
116 static int32_t searchForLibraryName(const char *libName) {
120 if(!uprv_strcmp(libName, libraryList[i].name)) {
155 uplug_openLibrary(const char *libName, UErrorCode *status) {
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))
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
BuildHelper.java 413 String libName = file.getName();
417 libName);
423 libName));
442 throw new NativeLibInJarException(jarStatus, msg, libName, consoleStrings);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.filesystem_1.3.1.R36x_v20100727-0745.jar 
org.eclipse.equinox.launcher.jar 
org.eclipse.equinox.launcher_1.1.0.v20100507.jar 
org.eclipse.pde.core_3.6.1.v20100902_r361.jar 
  /external/llvm/lib/Target/Sparc/
SparcISelLowering.cpp     [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.launcher_1.3.0.v20130327-1440.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.launcher_1.3.0.v20130327-1440.jar 

Completed in 1391 milliseconds

1 2 3 4