Searched refs:libname (Results 1 – 8 of 8) sorted by relevance
/ndk/build/tools/ |
D | builder-funcs.sh | 319 lib=$_BUILD_DSTDIR/$libname 328 builder_log "${_BUILD_PREFIX}Archive: $libname" 340 fail_panic "Could not archive ${_BUILD_PREFIX}$libname objects!" 350 lib=$_BUILD_DSTDIR/$libname 359 builder_log "${_BUILD_PREFIX}Archive: $libname" 362 fail_panic "Could not archive ${_BUILD_PREFIX}$libname objects!" 379 lib=$_BUILD_DSTDIR/$libname 385 builder_log "${_BUILD_PREFIX}SharedLibrary: $libname" 404 fail_panic "Could not create ${_BUILD_PREFIX}shared library $libname" 416 lib=$_BUILD_DSTDIR/$libname [all …]
|
/ndk/sources/host-tools/ndk-depends/ |
D | ndk-depends.cc | 918 bool IsAndroidSystemLib(const String& libname) { in IsAndroidSystemLib() argument 936 if (!libname.compare(kAndroidSystemLibs[n])) in IsAndroidSystemLib() 945 bool IsAndroidNdkCompatibleLib(const String& libname) { in IsAndroidNdkCompatibleLib() argument 946 return libname.size() > 6 && in IsAndroidNdkCompatibleLib() 947 !libname.compare(0, 3, _T("lib")) && in IsAndroidNdkCompatibleLib() 948 !libname.compare(libname.size() - 3, 3, _T(".so")); in IsAndroidNdkCompatibleLib() 954 bool FindLibraryPath(const String& libname, in FindLibraryPath() argument 958 LOG2(_T(" looking for library: %s\n"), libname.c_str()); in FindLibraryPath() 967 file_path.append(libname); in FindLibraryPath() 1019 const String& libname, in UpdateDependencies() argument [all …]
|
/ndk/tests/abcc/jni/device/ |
D | Abcc_device.cpp | 223 std::string libname = "lib" + deplib.substr(2) + ".so"; in copyRuntime() local 224 std::string libpath = mSysroot + "/usr/lib/" + libname; in copyRuntime() 228 LOGV("Copy runtime library: %s", libname.c_str()); in copyRuntime() 229 runCmd("cp -f " + libpath + " " + mWorkingDir + "/" + libname); in copyRuntime()
|
/ndk/tests/abcc/jni/host/ |
D | Abcc_host.cpp | 50 const std::string HostBitcodeCompiler::getRuntimePath(const std::string &libname) { in getRuntimePath() argument 51 if (mRuntimePath.count(libname)) { in getRuntimePath() 52 return mRuntimePath.find(libname)->second; in getRuntimePath()
|
D | Abcc_host.h | 61 const std::string getRuntimePath(const std::string &libname);
|
/ndk/sources/host-tools/make-3.81/ |
D | read.c | 2403 char *libname; in parse_file_seq() local 2407 libname = (char *) alloca (paren - n->name + 1); in parse_file_seq() 2408 bcopy (n->name, libname, paren - n->name); in parse_file_seq() 2409 libname[paren - n->name] = '\0'; in parse_file_seq() 2424 name = concat (libname, paren, ")"); in parse_file_seq() 2445 name = concat (libname, new1->name, ""); in parse_file_seq() 2457 name = concat (libname, new1->name, ")"); in parse_file_seq()
|
D | remake.c | 1471 char *libname = &(*lib)[2]; /* Name without the `-l'. */ in library_search() local 1518 p4 = variable_buffer_output (p4, libname, strlen (libname)); in library_search()
|
/ndk/sources/host-tools/make-3.81/config/ |
D | lib-link.m4 | 11 dnl AC_LIB_LINKFLAGS(name [, dependencies]) searches for libname and 42 dnl searches for libname and the libraries corresponding to explicit and 122 dnl AC_LIB_LINKFLAGS_BODY(name [, dependencies]) searches for libname and
|