Home
last modified time | relevance | path

Searched refs:subdirs (Results 1 – 4 of 4) sorted by relevance

/system/extras/simpleperf/
Dutils.cpp103 std::vector<std::string>* subdirs) { in GetEntriesInDir() argument
107 if (subdirs != nullptr) { in GetEntriesInDir()
108 subdirs->clear(); in GetEntriesInDir()
121 if (subdirs != nullptr) { in GetEntriesInDir()
122 subdirs->push_back(entry->d_name); in GetEntriesInDir()
Denvironment.cpp187 std::vector<std::string> subdirs; in GetAllModuleFiles() local
188 GetEntriesInDir(path, &files, &subdirs); in GetAllModuleFiles()
196 for (auto& name : subdirs) { in GetAllModuleFiles()
280 std::vector<std::string> subdirs; in GetThreadsInProcess() local
281 GetEntriesInDir(task_dirname, nullptr, &subdirs); in GetThreadsInProcess()
282 for (const auto& name : subdirs) { in GetThreadsInProcess()
314 std::vector<std::string> subdirs; in GetThreadComms() local
315 GetEntriesInDir("/proc", nullptr, &subdirs); in GetThreadComms()
316 for (auto& name : subdirs) { in GetThreadComms()
Ddso.cpp98 std::vector<std::string> subdirs; in SetSymFsDir() local
99 GetEntriesInDir(symfs_dir, &files, &subdirs); in SetSymFsDir()
100 if (files.empty() && subdirs.empty()) { in SetSymFsDir()
Dutils.h116 std::vector<std::string>* subdirs);