Searched refs:debug_info (Results 1 - 25 of 66) sorted by relevance

123

/external/chromium_org/sync/internal_api/
H A Ddebug_info_event_listener_unittest.cc18 const sync_pb::DebugEventInfo& debug_info = local
20 ASSERT_TRUE(debug_info.has_singleton_event());
21 ASSERT_EQ(debug_info.singleton_event(),
31 sync_pb::DebugInfo debug_info; local
32 debug_info_event_listener.GetDebugInfo(&debug_info);
34 ASSERT_TRUE(debug_info.events_dropped());
35 ASSERT_EQ(static_cast<int>(kMaxEntries), debug_info.events_size());
43 sync_pb::DebugInfo debug_info; local
44 debug_info_event_listener.GetDebugInfo(&debug_info);
46 ASSERT_EQ(debug_info
[all...]
H A Ddebug_info_event_listener.cc130 void DebugInfoEventListener::GetDebugInfo(sync_pb::DebugInfo* debug_info) { argument
137 sync_pb::DebugEventInfo* event_info = debug_info->add_events();
141 debug_info->set_events_dropped(events_dropped_);
142 debug_info->set_cryptographer_ready(cryptographer_ready_);
143 debug_info->set_cryptographer_has_pending_keys(
/external/llvm/lib/DebugInfo/
H A DDWARFTypeUnit.cpp16 bool DWARFTypeUnit::extractImpl(DataExtractor debug_info, argument
18 if (!DWARFUnit::extractImpl(debug_info, offset_ptr))
20 TypeHash = debug_info.getU64(offset_ptr);
21 TypeOffset = debug_info.getU32(offset_ptr);
H A DDWARFTypeUnit.h31 bool extractImpl(DataExtractor debug_info, uint32_t *offset_ptr) override;
H A DDWARFUnit.cpp54 bool DWARFUnit::extractImpl(DataExtractor debug_info, uint32_t *offset_ptr) { argument
55 Length = debug_info.getU32(offset_ptr);
56 Version = debug_info.getU16(offset_ptr);
57 uint64_t AbbrOffset = debug_info.getU32(offset_ptr);
58 AddrSize = debug_info.getU8(offset_ptr);
60 bool LengthOK = debug_info.isValidOffset(getNextUnitOffset() - 1);
74 bool DWARFUnit::extract(DataExtractor debug_info, uint32_t *offset_ptr) { argument
79 if (debug_info.isValidOffset(*offset_ptr)) {
80 if (extractImpl(debug_info, offset_ptr))
/external/chromium_org/sync/test/sessions/
H A Dmock_debug_info_getter.cc16 void MockDebugInfoGetter::GetDebugInfo(sync_pb::DebugInfo* debug_info) { argument
17 debug_info->CopyFrom(debug_info_);
H A Dmock_debug_info_getter.h25 virtual void GetDebugInfo(sync_pb::DebugInfo* debug_info) OVERRIDE;
/external/chromium_org/sync/sessions/
H A Ddebug_info_getter.h20 virtual void GetDebugInfo(sync_pb::DebugInfo* debug_info) = 0;
/external/oprofile/libpp/
H A Dcallgraph_container.h110 * @param debug_info true if we must record linenr information
119 extra_images const & extra, bool debug_info,
141 * @param debug_info record linenr debug information
147 bool debug_info, size_t pclass);
152 bool debug_info, bool merge_lib);
156 bool debug_info, bool merge_lib);
H A Dprofile_container.h42 * @param debug_info If true line numbers and source files are
48 profile_container(bool debug_info, bool need_details,
180 bool debug_info; member in class:profile_container
H A Dcallgraph_container.cpp130 image_name_id aid, bool debug_info)
132 app(aid), debug(debug_info) {}
396 extra_images const & extra, bool debug_info, double threshold,
402 profile_container pc(debug_info, false, extra_found_images);
418 i, pc, debug_info, merge_lib);
428 profile_container const & pc, bool debug_info, bool merge_lib)
438 pclass, pc, debug_info, merge_lib);
446 profile_container const & pc, bool debug_info, bool merge_lib)
496 debug_info, pclass);
504 profile_container const & pc, bool debug_info, size_
128 call_data(profile_container const & p, profile_t const & pr, op_bfd const & bfd, u32 boff, image_name_id iid, image_name_id aid, bool debug_info) argument
395 populate(list<inverted_profile> const & iprofiles, extra_images const & extra, bool debug_info, double threshold, bool merge_lib, string_filter const & sym_filter) argument
426 populate(list<image_set> const & lset, string const & app_image, size_t pclass, profile_container const & pc, bool debug_info, bool merge_lib) argument
444 populate(list<string> const & cg_files, string const & app_image, size_t pclass, profile_container const & pc, bool debug_info, bool merge_lib) argument
502 add(profile_t const & profile, op_bfd const & caller_bfd, bool caller_bfd_ok, op_bfd const & callee_bfd, string const & app_name, profile_container const & pc, bool debug_info, size_t pclass) argument
[all...]
/external/oprofile/pp/
H A Dopreport_options.h30 extern bool debug_info;
H A Dopreport_options.cpp38 bool debug_info; member in namespace:options
95 popt::option(options::debug_info, "debug-info", 'g',
212 if (debug_info || accumulated) {
294 if (debug_info)
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/
H A Ddwarf2-info.c271 yasm_section *debug_info = local
272 yasm_object_get_general(object, ".debug_info", 4, 0, 0, &new, 0);
275 yasm_section_set_align(debug_info, 0, 0);
289 head = yasm_dwarf2__add_head(dbgfmt_dwarf2, debug_info, debug_abbrev, 1, 0);
296 dwarf2_append_expr(debug_info,
302 dwarf2_append_expr(debug_info,
314 dwarf2_append_expr(debug_info,
319 dwarf2_append_expr(debug_info,
329 dwarf2_append_str(debug_info, object->src_filename);
334 dwarf2_append_str(debug_info, bu
[all...]
H A Ddwarf2-dbgfmt.h120 yasm_section *debug_info);
124 yasm_section *debug_info);
H A Ddwarf2-dbgfmt.c154 /*@null@*/ yasm_section *debug_info, *debug_line, *main_code; local
163 /* If we don't have a .debug_info (or it's empty), generate the minimal
164 * set of .debug_info, .debug_aranges, and .debug_abbrev so that the
167 debug_info = yasm_object_find_general(object, ".debug_info");
169 (!debug_info || yasm_section_bcs_first(debug_info)
170 == yasm_section_bcs_last(debug_info))) {
171 debug_info = yasm_dwarf2__generate_info(object, debug_line, main_code);
172 yasm_dwarf2__generate_aranges(object, debug_info);
[all...]
H A Ddwarf2-aranges.c81 yasm_dwarf2__generate_aranges(yasm_object *object, yasm_section *debug_info) argument
96 head = yasm_dwarf2__add_head(dbgfmt_dwarf2, debug_aranges, debug_info, 1,
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugAranges.cpp93 DWARFDebugInfo* debug_info = dwarf2Data->DebugInfo(); local
94 if (debug_info)
101 DWARFCompileUnit* cu = debug_info->GetCompileUnitAtIndex(cu_idx);
H A DDWARFDebugPubnames.cpp76 DWARFDebugInfo* debug_info = dwarf2Data->DebugInfo(); local
77 if (debug_info)
87 DWARFCompileUnit* cu = debug_info->GetCompileUnitAtIndex(cu_idx);
217 DWARFDebugInfo* debug_info = dwarf2Data->DebugInfo(); local
218 if (debug_info)
224 DWARFCompileUnit* cu = debug_info->GetCompileUnitAtIndex(cu_idx);
/external/llvm/test/MC/ELF/
H A Dcompression.s20 // CHECK: Contents of section .debug_info:
48 .section .debug_info,"",@progbits
/external/chromium_org/chrome/browser/history/
H A Dthumbnail_database.cc118 // Attempt to pass 2000 bytes of |debug_info| into a crash dump.
119 void DumpWithoutCrashing2000(const std::string& debug_info) { argument
121 base::strlcpy(debug_buf, debug_info.c_str(), arraysize(debug_buf));
131 std::string debug_info; local
133 base::StringAppendF(&debug_info, "SQLITE_CORRUPT, integrity_check:\n");
138 base::StringAppendF(&debug_info, "too big %" PRIuS "\n", startup_kb);
144 base::StringAppendF(&debug_info, "# %" PRIx64 " ms, %" PRIuS " records\n",
157 base::StringAppendF(&debug_info, "%s\n", messages[i].c_str());
161 DumpWithoutCrashing2000(debug_info);
168 std::string debug_info; local
[all...]
/external/oprofile/opjitconv/
H A Ddebug_line.c442 asection * line_section, * debug_info, * debug_abbrev; local
482 debug_info = create_section(abfd, ".debug_info", b_debug_info.size, 0,
484 if (!debug_info)
499 asection * line_section, * debug_info, * debug_abbrev; local
505 debug_info = bfd_get_section_by_name(abfd, ".debug_info");
506 if (!debug_info)
515 fill_section_content(abfd, debug_info, b_debug_info.p,
/external/oprofile/libutil++/
H A Dop_bfd.cpp342 if (debug_info.cached())
343 return debug_info.get();
346 return debug_info.reset(false);
349 return debug_info.reset(true);
357 return debug_info.reset(true);
364 return debug_info.reset(false);
/external/chromium_org/sync/engine/
H A Dcommit.cc97 sync_pb::DebugInfo* debug_info = message_.mutable_debug_info(); local
98 session->context()->debug_info_getter()->GetDebugInfo(debug_info);
H A Dget_updates_processor_unittest.cc500 sync_pb::DebugInfo debug_info; local
501 GetUpdatesProcessor::CopyClientDebugInfo(debug_info_getter(), &debug_info); local
502 EXPECT_EQ(0, debug_info.events_size());
506 sync_pb::DebugInfo debug_info; local
508 GetUpdatesProcessor::CopyClientDebugInfo(debug_info_getter(), &debug_info); local
509 EXPECT_EQ(1, debug_info.events_size());
510 GetUpdatesProcessor::CopyClientDebugInfo(debug_info_getter(), &debug_info); local
511 EXPECT_EQ(1, debug_info.events_size());

Completed in 371 milliseconds

123