HomeSort by relevance Sort by last modified time
    Searched refs:debug_info (Results 1 - 25 of 1564) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/sync/internal_api/
debug_info_event_listener_unittest.cc 18 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.events_size(), 1)
    [all...]
debug_info_event_listener.cc 146 void DebugInfoEventListener::GetDebugInfo(sync_pb::DebugInfo* debug_info) {
153 sync_pb::DebugEventInfo* event_info = debug_info->add_events();
157 debug_info->set_events_dropped(events_dropped_);
158 debug_info->set_cryptographer_ready(cryptographer_ready_);
159 debug_info->set_cryptographer_has_pending_keys(
  /external/chromium_org/sync/sessions/
debug_info_getter.h 20 virtual void GetDebugInfo(sync_pb::DebugInfo* debug_info) = 0;
  /external/llvm/lib/DebugInfo/
DWARFTypeUnit.cpp 16 bool DWARFTypeUnit::extractImpl(DataExtractor debug_info,
18 if (!DWARFUnit::extractImpl(debug_info, offset_ptr))
20 TypeHash = debug_info.getU64(offset_ptr);
21 TypeOffset = debug_info.getU32(offset_ptr);
DWARFTypeUnit.h 31 bool extractImpl(DataExtractor debug_info, uint32_t *offset_ptr) override;
DWARFUnit.cpp 54 bool DWARFUnit::extractImpl(DataExtractor debug_info, uint32_t *offset_ptr) {
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) {
79 if (debug_info.isValidOffset(*offset_ptr)) {
80 if (extractImpl(debug_info, offset_ptr))
  /external/chromium_org/sync/test/sessions/
mock_debug_info_getter.cc 16 void MockDebugInfoGetter::GetDebugInfo(sync_pb::DebugInfo* debug_info) {
17 debug_info->CopyFrom(debug_info_);
mock_debug_info_getter.h 25 virtual void GetDebugInfo(sync_pb::DebugInfo* debug_info) OVERRIDE;
  /external/oprofile/libpp/
callgraph_container.h 110 * @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);
profile_container.h 42 * @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
callgraph_container.cpp 130 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_t pclass
    [all...]
  /external/oprofile/pp/
opreport_options.h 30 extern bool debug_info;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/lib/ldscripts/
i386pe.xr 103 .debug_info :
105 *(.debug_info) *(.gnu.linkonce.wi.*)
i386pe.xu 107 .debug_info :
109 *(.debug_info) *(.gnu.linkonce.wi.*)
i386pep.xr 107 .debug_info :
109 *(.debug_info) *(.gnu.linkonce.wi.*)
i386pep.xu 112 .debug_info :
114 *(.debug_info) *(.gnu.linkonce.wi.*)
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/
dwarf2-info.c 271 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, buf)
    [all...]
dwarf2-dbgfmt.h 120 yasm_section *debug_info);
124 yasm_section *debug_info);
dwarf2-dbgfmt.c 154 /*@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...]
dwarf2-aranges.c 81 yasm_dwarf2__generate_aranges(yasm_object *object, yasm_section *debug_info)
96 head = yasm_dwarf2__add_head(dbgfmt_dwarf2, debug_aranges, debug_info, 1,
  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFDebugAranges.cpp 93 DWARFDebugInfo* debug_info = dwarf2Data->DebugInfo(); local
94 if (debug_info)
101 DWARFCompileUnit* cu = debug_info->GetCompileUnitAtIndex(cu_idx);
DWARFDebugPubnames.cpp 76 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/
compression.s 20 // CHECK: Contents of section .debug_info:
48 .section .debug_info,"",@progbits
  /external/chromium_org/chrome/browser/history/
thumbnail_database.cc 118 // Attempt to pass 2000 bytes of |debug_info| into a crash dump.
119 void DumpWithoutCrashing2000(const std::string& debug_info) {
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/chromium_org/sync/engine/
get_updates_processor_unittest.cc 450 sync_pb::DebugInfo debug_info; local
451 GetUpdatesProcessor::CopyClientDebugInfo(debug_info_getter(), &debug_info); local
452 EXPECT_EQ(0, debug_info.events_size());
456 sync_pb::DebugInfo debug_info; local
458 GetUpdatesProcessor::CopyClientDebugInfo(debug_info_getter(), &debug_info); local
459 EXPECT_EQ(1, debug_info.events_size());
460 GetUpdatesProcessor::CopyClientDebugInfo(debug_info_getter(), &debug_info); local
461 EXPECT_EQ(1, debug_info.events_size());

Completed in 296 milliseconds

1 2 3 4 5 6 7 8 91011>>