HomeSort by relevance Sort by last modified time
    Searched refs:debug_info (Results 1 - 25 of 754) 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 147 void DebugInfoEventListener::GetDebugInfo(sync_pb::DebugInfo* debug_info) {
154 sync_pb::DebugEventInfo* event_info = debug_info->add_events();
158 debug_info->set_events_dropped(events_dropped_);
159 debug_info->set_cryptographer_ready(cryptographer_ready_);
160 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/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;
opreport_options.cpp 38 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)
295 xml_utils::add_option(DEBUG_INFO, true);
  /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/llvm/lib/DebugInfo/
DWARFCompileUnit.cpp 23 bool DWARFCompileUnit::extract(DataExtractor debug_info, uint32_t *offset_ptr) {
28 if (debug_info.isValidOffset(*offset_ptr)) {
30 Length = debug_info.getU32(offset_ptr);
31 Version = debug_info.getU16(offset_ptr);
32 abbrOffset = debug_info.getU32(offset_ptr);
33 AddrSize = debug_info.getU8(offset_ptr);
35 bool lengthOK = debug_info.isValidOffset(getNextCompileUnitOffset()-1);
  /external/chromium_org/sync/engine/
download_unittest.cc 292 sync_pb::DebugInfo debug_info; local
293 download::CopyClientDebugInfo(debug_info_getter(), &debug_info); local
294 EXPECT_EQ(0, debug_info.events_size());
298 sync_pb::DebugInfo debug_info; local
300 download::CopyClientDebugInfo(debug_info_getter(), &debug_info); local
301 EXPECT_EQ(1, debug_info.events_size());
302 download::CopyClientDebugInfo(debug_info_getter(), &debug_info); local
303 EXPECT_EQ(1, debug_info.events_size());
download.h 94 // debug_info. Defined here for testing.
97 sync_pb::DebugInfo* debug_info);
  /external/kernel-headers/original/asm-arm/
processor.h 36 struct debug_info { struct
47 struct debug_info debug;
  /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...]
  /prebuilts/gcc/darwin-x86/x86/i686-linux-android-4.6/i686-linux-android/lib/ldscripts/
elf_i386.xr 114 .debug_info 0 : { *(.debug_info .zdebug_info) }
elf_i386.xu 115 .debug_info 0 : { *(.debug_info .zdebug_info) }
  /prebuilts/gcc/darwin-x86/x86/i686-linux-android-4.7/i686-linux-android/lib/ldscripts/
elf_i386.xr 119 .debug_info 0 : { *(.debug_info) }
elf_i386.xu 120 .debug_info 0 : { *(.debug_info) }
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/lib/ldscripts/
elf_i386.xr 111 .debug_info 0 : { *(.debug_info .zdebug_info) }
elf_i386.xu 112 .debug_info 0 : { *(.debug_info .zdebug_info) }

Completed in 2181 milliseconds

1 2 3 4 5 6 7 8 91011>>