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

1 2

  /development/tools/emulator/opengl/host/libs/libOpenglRender/
GL2Dispatch.cpp 41 const char *libName = getenv("ANDROID_GLESv2_LIB");
42 if (!libName) libName = DEFAULT_GLES_V2_LIB;
47 s_gles2_lib = osUtils::dynLibrary::open(libName);
EGLDispatch.cpp 34 const char *libName = getenv("ANDROID_EGL_LIB");
35 if (!libName) libName = DEFAULT_EGL_LIB;
37 osUtils::dynLibrary *lib = osUtils::dynLibrary::open(libName);
39 printf("Failed to open %s\n", libName);
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/heap/
NativeLibraryAllocationInfo.java 91 String libName = UNRESOLVED_LIBRARY_NAME;
96 libName = relevantStackCall.getLibraryName();
98 libName = UNKNOWN_LIBRARY_NAME;
102 addtoLibrary(allocationsByLibrary, libName, info);
125 String libName, NativeAllocationInfo info) {
126 NativeLibraryAllocationInfo libAllocationInfo = libraryAllocations.get(libName);
128 libAllocationInfo = new NativeLibraryAllocationInfo(libName);
129 libraryAllocations.put(libName, libAllocationInfo);
NativeSymbolResolverTask.java 249 String libName = new File(pathOnDevice).getName();
259 fullPath = p + File.separator + libName;
  /external/qemu/android/utils/
dll.c 67 char* libName = (char*) libraryName;
72 libName = append_string(libraryName, ".dll");
77 result = (ADynamicLibrary*) LoadLibrary( libName );
83 if (libName != libraryName) {
84 free(libName);
132 char* libName = (char*) libraryName;
143 libName = append_string(libraryName, SO_EXTENSION);
148 result = dlopen( libName, RTLD_LAZY );
154 if (libName != (char*)libraryName) {
155 free(libName);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
NativeLibInJarException.java 32 NativeLibInJarException(JarStatus status, String message, String libName,
36 mLibName = libName;
  /external/libffi/testsuite/
run-all-tests 24 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/
icuplugimp.h 30 * @param libName library name to load
36 uplug_openLibrary(const char *libName, UErrorCode *status);
icuplug.c 42 char libName[UPLUG_NAME_MAX]; /**< library name */
109 * @param libName libname to search for
112 static int32_t searchForLibraryName(const char *libName) {
116 if(!uprv_strcmp(libName, libraryList[i].name)) {
151 uplug_openLibrary(const char *libName, UErrorCode *status) {
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))
    [all...]
putilimp.h 294 U_INTERNAL void * U_EXPORT2 uprv_dl_open(const char *libName, UErrorCode *status);
  /frameworks/base/media/libstagefright/omx/
SoftOMXPlugin.cpp 68 AString libName = "libstagefright_soft_";
69 libName.append(kComponents[i].mLibNameSuffix);
70 libName.append(".so");
72 void *libHandle = dlopen(libName.c_str(), RTLD_NOW);
75 LOGE("unable to dlopen %s", libName.c_str());
  /external/icu4c/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) */
pkgdata.cpp 122 static void createFileNames(UPKGOptions *o, const char mode, const char *version_major, const char *version, const char *libName, const UBool reverseExt);
145 LIBNAME,
185 /*18*/ UOPTION_DEF( "libname", 'L', UOPT_REQUIRES_ARG),
376 if(options[LIBNAME].doesOccur) { /* get libname from shortname, or explicit -L parameter */
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)
    [all...]
  /dalvik/vm/
Native.h 64 char* dvmCreateSystemLibraryName(char* libName);
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
Addr2Line.java 119 String libName = library.getLibraryName();
122 if (libName != null) {
125 Addr2Line process = sProcessCache.get(libName);
137 sProcessCache.put(libName, process);
  /external/qemu/android/
main-emulator.c 57 static char* getSharedLibraryPath(const char* progName, const char* libName);
244 getSharedLibraryPath(const char* progName, const char* libName)
258 if (probePathForFile(progDir, libName)) {
267 if (p < end && probePathForFile(temp, libName)) {
285 if (p < end && probePathForFile(temp, libName)) {
  /development/tools/emulator/opengl/system/egl/
eglDisplay.h 58 EGLClient_glesInterface *loadGLESClientAPI(const char *libName,
eglDisplay.cpp 225 EGLClient_glesInterface *eglDisplay::loadGLESClientAPI(const char *libName,
229 void *lib = dlopen(libName, RTLD_NOW);
231 LOGE("Failed to dlopen %s", libName);
  /external/icu4c/common/unicode/
icuplug.h 349 * @param libName DLL name to load
357 uplug_loadPlugFromLibrary(const char *libName, const char *sym, const char *config, UErrorCode *status);
  /libcore/luni/src/main/java/java/lang/
SecurityManager.java 58 public void checkLink(String libName) { }
Runtime.java 349 * @param libName
354 public void loadLibrary(String libName) {
355 loadLibrary(libName, VMStack.getCallingClassLoader());
  /external/qemu/distrib/sdl-1.2.12/src/timer/macos/
FastTimes.c 83 static Ptr FindFunctionInSharedLib(StringPtr libName, StringPtr funcName);
336 static Ptr FindFunctionInSharedLib(StringPtr libName, StringPtr funcName) {
345 if (/* error = */ GetSharedLibrary(libName, kCompiledCFragArch,
  /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))
  /system/media/mca/filterfw/java/android/filterfw/core/
NativeProgram.java 161 private native boolean openNativeLibrary(String libName);
  /external/v8/tools/
tickprocessor.js 570 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.match(WindowsCppEntriesProvider.FILENAME_RE)
    [all...]

Completed in 1167 milliseconds

1 2