Searched refs:entry_path (Results 1 – 5 of 5) sorted by relevance
83 const std::string entry_path = path + "/" + entry_name; in DeleteDirectory() local85 DeleteDirectory(entry_path); in DeleteDirectory()87 unlink(entry_path.c_str()); in DeleteDirectory()
162 std::string entry_path = path + "/" + name; in GetAllModuleFiles() local163 if (IsRegularFile(entry_path) && android::base::EndsWith(name, ".ko")) { in GetAllModuleFiles()166 module_file_map->insert(std::make_pair(module_name, entry_path)); in GetAllModuleFiles()167 } else if (IsDir(entry_path)) { in GetAllModuleFiles()168 GetAllModuleFiles(entry_path, module_file_map); in GetAllModuleFiles()
550 std::string entry_path; in ReadDexFileDebugInfo() local551 if (ParseExtractedInMemoryPath(it->name, &zip_path, &entry_path)) { in ReadDexFileDebugInfo()552 file_path = GetUrlInApk(zip_path, entry_path); in ReadDexFileDebugInfo()
165 std::string entry_path = std::get<2>(tuple); in GetPathInSymFsDir() local167 return GetUrlInApk(add_symfs_prefix(apk_path), entry_path); in GetPathInSymFsDir()
347 entry_path = os.path.realpath(entry.dt_file.name)348 if entry_path == dt_entry_path: