Searched refs:Path (Results 1 – 6 of 6) sorted by relevance
/system/core/libcutils/ |
D | canned_fs_config.c | 33 } 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/ |
D | sample_tree_test.cpp | 38 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()
|
D | cmd_report.cpp | 170 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()
|
D | dso.h | 65 const std::string& Path() const { in Path() function
|
D | sample_tree.cpp | 114 if (!dso_filter_.empty() && dso_filter_.find(value.map->dso->Path()) == dso_filter_.end()) { in IsFilteredOut()
|
D | cmd_record.cpp | 839 hit_kernel_modules_.insert(map->dso->Path()); in CollectHitFileInfo() 841 hit_user_files_.insert(map->dso->Path()); in CollectHitFileInfo()
|