Home | History | Annotate | Download | only in ndk-depends

Lines Matching defs:libname

917 // Returns true if |libname| is the name of an Android system library.
918 bool IsAndroidSystemLib(const String& libname) {
936 if (!libname.compare(kAndroidSystemLibs[n]))
942 // Returns true if |libname| is the name of an NDK-compatible shared
945 bool IsAndroidNdkCompatibleLib(const String& libname) {
946 return libname.size() > 6 &&
947 !libname.compare(0, 3, _T("lib")) &&
948 !libname.compare(libname.size() - 3, 3, _T(".so"));
951 // Try to find a library named |libname| in |search_paths|
954 bool FindLibraryPath(const String& libname,
958 LOG2(_T(" looking for library: %s\n"), libname.c_str());
967 file_path.append(libname);
1019 const String& libname,
1023 DLOG(_T("UPDATE libname=%s path=%s\n"), libname.c_str(), libpath.c_str());
1025 if (!libname.empty() && deps.find(libname) != deps.end()) {
1027 panic(_T("INTERNAL: Library already in graph: %s"), libname.c_str());
1033 String soname = libname;
1039 soname = libname;
1040 else if (soname != libname) {
1080 String libname = queue.front();
1084 DependencyGraph::iterator iter = deps.find(libname);
1092 if (FindLibraryPath(libname, lib_search_path, &libpath)) {
1093 UpdateDependencies(libname, libpath, deps, queue);
1097 if (IsAndroidSystemLib(libname)) {
1098 LOG(_T("Android system library: %s\n"), libname.c_str());
1100 node.Set(LibNode::NODE_SYSTEM, libname);
1101 deps[libname] = node;
1107 libname.c_str());
1110 deps[libname] = node;
1121 const String& libname = iter->first;
1139 libname.c_str(),
1170 const String& libname = needed_libs[n];
1171 VisitorMap::iterator lib_iter = visitors.find(libname);
1175 visitors[libname] = 1;
1426 const String& libname = needed_libs[i];
1427 const std::vector<String>& libdeps = deps[libname].needed_libs;
1431 _tprintf(_T(" \"%s\" -> \"%s\"\n"), libname.c_str(), libdeps[n].c_str());