HomeSort by relevance Sort by last modified time
    Searched refs:filenames_to_build_ids (Results 1 - 4 of 4) sorted by null

  /external/perf_data_converter/src/quipper/
perf_reader.h 61 // Note: If |filenames_to_build_ids| contains a mapping for a filename for
65 bool InjectBuildIDs(const std::map<string, string>& filenames_to_build_ids);
80 // Uses build id events to populate |filenames_to_build_ids|.
81 // Any existing data in |filenames_to_build_ids| will be lost.
85 std::map<string, string>* filenames_to_build_ids) const;
perf_parser.cc 375 std::map<string, string> filenames_to_build_ids; local
376 reader_->GetFilenamesToBuildIDs(&filenames_to_build_ids);
382 const auto it = filenames_to_build_ids.find(dso_info.name);
383 if (it != filenames_to_build_ids.end()) {
perf_reader.cc 387 const std::map<string, string>& filenames_to_build_ids) {
392 auto find_result = filenames_to_build_ids.find(build_id.filename());
393 if (find_result == filenames_to_build_ids.end()) continue;
421 for (it = filenames_to_build_ids.begin(); it != filenames_to_build_ids.end();
487 std::map<string, string>* filenames_to_build_ids) const {
488 filenames_to_build_ids->clear();
492 (*filenames_to_build_ids)[build_id.filename()] = build_id_string;
    [all...]
perf_parser_test.cc 60 std::map<string, string> *filenames_to_build_ids) {
67 (*filenames_to_build_ids)[filenames[i]] =
102 std::map<string, string> filenames_to_build_ids; local
103 CreateFilenameToBuildIDMap(filenames, seed, &filenames_to_build_ids);
104 ASSERT_TRUE(reader->InjectBuildIDs(filenames_to_build_ids));
108 for (it = filenames_to_build_ids.begin(); it != filenames_to_build_ids.end();
1407 std::map<string, string> filenames_to_build_ids; local
    [all...]

Completed in 481 milliseconds