Home
last modified time | relevance | path

Searched refs:Path (Results 1 – 6 of 6) sorted by relevance

/system/core/libcutils/
Dcanned_fs_config.c33 } Path; typedef
35 static Path* canned_data = NULL;
40 return strcmp(((Path*)a)->path, ((Path*)b)->path); in path_compare()
54 canned_data = (Path*) realloc(canned_data, canned_alloc * sizeof(Path)); in load_canned_fs_config()
56 Path* p = canned_data + canned_used; in load_canned_fs_config()
77 qsort(canned_data, canned_used, sizeof(Path), path_compare); in load_canned_fs_config()
87 Path key; in canned_fs_config()
91 Path* p = (Path*) bsearch(&key, canned_data, canned_used, sizeof(Path), path_compare); in canned_fs_config()
/system/extras/simpleperf/
Dsample_tree_test.cpp38 ASSERT_EQ(expected.dso_name, sample.map->dso->Path()); in SampleMatchExpectation()
63 if (sample1.map->dso->Path() != sample2.map->dso->Path()) { in CompareSampleFunction()
64 return sample1.map->dso->Path() > sample2.map->dso->Path() ? 1 : -1; in CompareSampleFunction()
Dcmd_report.cpp170 return strcmp(sample1.map->dso->Path().c_str(), sample2.map->dso->Path().c_str()); in Compare()
174 return sample.map->dso->Path(); in Show()
198 return strcmp(sample1.branch_from.map->dso->Path().c_str(), in Compare()
199 sample2.branch_from.map->dso->Path().c_str()); in Compare()
203 return sample.branch_from.map->dso->Path(); in Show()
Ddso.h65 const std::string& Path() const { in Path() function
Dsample_tree.cpp114 if (!dso_filter_.empty() && dso_filter_.find(value.map->dso->Path()) == dso_filter_.end()) { in IsFilteredOut()
Dcmd_record.cpp839 hit_kernel_modules_.insert(map->dso->Path()); in CollectHitFileInfo()
841 hit_user_files_.insert(map->dso->Path()); in CollectHitFileInfo()