Searched refs:should_log (Results 1 – 3 of 3) sorted by relevance
/system/core/debuggerd/libdebuggerd/ |
D | tombstone_proto_to_text.cpp | 42 using CallbackType = std::function<void(const std::string& line, bool should_log)>; 75 const Thread& thread, bool should_log) { in print_thread_header() argument 79 CB(should_log, "Cmdline: %s", android::base::Join(tombstone.command_line(), " ").c_str()); in print_thread_header() 81 CB(should_log, "pid: %d, tid: %d, name: %s >>> %s <<<", tombstone.pid(), thread.id(), in print_thread_header() 83 CB(should_log, "uid: %d", tombstone.uid()); in print_thread_header() 85 CB(should_log, "tagged_addr_ctrl: %016" PRIx64, thread.tagged_addr_ctrl()); in print_thread_header() 90 std::vector<std::pair<std::string, uint64_t>> row, bool should_log) { in print_register_row() argument 96 callback(output, should_log); in print_register_row() 100 const Thread& thread, bool should_log) { in print_thread_registers() argument 137 print_register_row(callback, word_size, current_row, should_log); in print_thread_registers() [all …]
|
D | tombstone.cpp | 632 tombstone_proto_to_text(tombstone, [&log](const std::string& line, bool should_log) { in engrave_tombstone() argument 633 _LOG(&log, should_log ? logtype::HEADER : logtype::LOGS, "%s\n", line.c_str()); in engrave_tombstone()
|
/system/core/debuggerd/libdebuggerd/include/libdebuggerd/ |
D | tombstone.h | 69 std::function<void(const std::string& line, bool should_log)> callback);
|