/* * Copyright (C) 2021 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "src/profiling/symbolizer/breakpad_symbolizer.h" #include <optional> #include "perfetto/base/build_config.h" #include "perfetto/ext/base/file_utils.h" #include "perfetto/ext/base/string_view.h" #include "perfetto/ext/base/string_writer.h" #include "src/profiling/symbolizer/breakpad_parser.h" namespace perfetto { namespace profiling { namespace { // Returns the file path for a breakpad symbol file with the given |build_id|. std::string MakeFilePath(const std::string& build_id, const std::string& symbol_dir_path) { … } } // namespace BreakpadSymbolizer::BreakpadSymbolizer(const std::string& symbol_dir_path) : … { … } std::vector<std::vector<SymbolizedFrame>> BreakpadSymbolizer::Symbolize( const std::string&, const std::string& build_id, uint64_t, const std::vector<uint64_t>& address) { … } } // namespace profiling } // namespace perfetto