Home
last modified time | relevance | path

Searched refs:debug_info (Results 1 – 25 of 100) sorted by relevance

1234

/external/chromium_org/sync/internal_api/
Ddebug_info_event_listener_unittest.cc18 const sync_pb::DebugEventInfo& debug_info = in TEST_F() local
20 ASSERT_TRUE(debug_info.has_singleton_event()); in TEST_F()
21 ASSERT_EQ(debug_info.singleton_event(), in TEST_F()
31 sync_pb::DebugInfo debug_info; in TEST_F() local
32 debug_info_event_listener.GetDebugInfo(&debug_info); in TEST_F()
34 ASSERT_TRUE(debug_info.events_dropped()); in TEST_F()
35 ASSERT_EQ(static_cast<int>(kMaxEntries), debug_info.events_size()); in TEST_F()
43 sync_pb::DebugInfo debug_info; in TEST_F() local
44 debug_info_event_listener.GetDebugInfo(&debug_info); in TEST_F()
46 ASSERT_EQ(debug_info.events_size(), 1); in TEST_F()
[all …]
Ddebug_info_event_listener.cc147 void DebugInfoEventListener::GetDebugInfo(sync_pb::DebugInfo* debug_info) { in GetDebugInfo() argument
154 sync_pb::DebugEventInfo* event_info = debug_info->add_events(); in GetDebugInfo()
158 debug_info->set_events_dropped(events_dropped_); in GetDebugInfo()
159 debug_info->set_cryptographer_ready(cryptographer_ready_); in GetDebugInfo()
160 debug_info->set_cryptographer_has_pending_keys( in GetDebugInfo()
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/
Ddwarf2-info.c271 yasm_section *debug_info = in yasm_dwarf2__generate_info() local
275 yasm_section_set_align(debug_info, 0, 0); in yasm_dwarf2__generate_info()
289 head = yasm_dwarf2__add_head(dbgfmt_dwarf2, debug_info, debug_abbrev, 1, 0); in yasm_dwarf2__generate_info()
296 dwarf2_append_expr(debug_info, in yasm_dwarf2__generate_info()
302 dwarf2_append_expr(debug_info, in yasm_dwarf2__generate_info()
314 dwarf2_append_expr(debug_info, in yasm_dwarf2__generate_info()
319 dwarf2_append_expr(debug_info, in yasm_dwarf2__generate_info()
329 dwarf2_append_str(debug_info, object->src_filename); in yasm_dwarf2__generate_info()
334 dwarf2_append_str(debug_info, buf); in yasm_dwarf2__generate_info()
340 dwarf2_append_str(debug_info, "yasm HEAD"); in yasm_dwarf2__generate_info()
[all …]
Ddwarf2-dbgfmt.c154 /*@null@*/ yasm_section *debug_info, *debug_line, *main_code; in dwarf2_dbgfmt_generate() local
167 debug_info = yasm_object_find_general(object, ".debug_info"); in dwarf2_dbgfmt_generate()
169 (!debug_info || yasm_section_bcs_first(debug_info) in dwarf2_dbgfmt_generate()
170 == yasm_section_bcs_last(debug_info))) { in dwarf2_dbgfmt_generate()
171 debug_info = yasm_dwarf2__generate_info(object, debug_line, main_code); in dwarf2_dbgfmt_generate()
172 yasm_dwarf2__generate_aranges(object, debug_info); in dwarf2_dbgfmt_generate()
Ddwarf2-dbgfmt.h120 yasm_section *debug_info);
124 yasm_section *debug_info);
Ddwarf2-aranges.c81 yasm_dwarf2__generate_aranges(yasm_object *object, yasm_section *debug_info) in yasm_dwarf2__generate_aranges() argument
96 head = yasm_dwarf2__add_head(dbgfmt_dwarf2, debug_aranges, debug_info, 1, in yasm_dwarf2__generate_aranges()
/external/llvm/lib/DebugInfo/
DDWARFCompileUnit.cpp23 bool DWARFCompileUnit::extract(DataExtractor debug_info, uint32_t *offset_ptr) { in extract() argument
28 if (debug_info.isValidOffset(*offset_ptr)) { in extract()
30 Length = debug_info.getU32(offset_ptr); in extract()
31 Version = debug_info.getU16(offset_ptr); in extract()
32 abbrOffset = debug_info.getU32(offset_ptr); in extract()
33 AddrSize = debug_info.getU8(offset_ptr); in extract()
35 bool lengthOK = debug_info.isValidOffset(getNextCompileUnitOffset()-1); in extract()
/external/oprofile/libpp/
Dcallgraph_container.h119 extra_images const & extra, bool debug_info,
147 bool debug_info, size_t pclass);
152 bool debug_info, bool merge_lib);
156 bool debug_info, bool merge_lib);
Dcallgraph_container.cpp130 image_name_id aid, bool debug_info) in call_data() argument
132 app(aid), debug(debug_info) {} in call_data()
396 extra_images const & extra, bool debug_info, double threshold, in populate() argument
402 profile_container pc(debug_info, false, extra_found_images); in populate()
418 i, pc, debug_info, merge_lib); in populate()
428 profile_container const & pc, bool debug_info, bool merge_lib) in populate() argument
438 pclass, pc, debug_info, merge_lib); in populate()
446 profile_container const & pc, bool debug_info, bool merge_lib) in populate() argument
496 debug_info, pclass); in populate()
504 profile_container const & pc, bool debug_info, size_t pclass) in add() argument
[all …]
Dprofile_container.h48 profile_container(bool debug_info, bool need_details,
180 bool debug_info; variable
/external/chromium_org/chrome/browser/history/
Dthumbnail_database.cc119 void DumpWithoutCrashing2000(const std::string& debug_info) { in DumpWithoutCrashing2000() argument
121 base::strlcpy(debug_buf, debug_info.c_str(), arraysize(debug_buf)); in DumpWithoutCrashing2000()
131 std::string debug_info; in ReportCorrupt() local
133 base::StringAppendF(&debug_info, "SQLITE_CORRUPT, integrity_check:\n"); in ReportCorrupt()
138 base::StringAppendF(&debug_info, "too big %" PRIuS "\n", startup_kb); in ReportCorrupt()
144 base::StringAppendF(&debug_info, "# %" PRIx64 " ms, %" PRIuS " records\n", in ReportCorrupt()
157 base::StringAppendF(&debug_info, "%s\n", messages[i].c_str()); in ReportCorrupt()
161 DumpWithoutCrashing2000(debug_info); in ReportCorrupt()
168 std::string debug_info; in ReportError() local
171 base::StringAppendF(&debug_info, "db error: %d/%s\n", in ReportError()
[all …]
/external/chromium_org/sync/engine/
Ddownload_unittest.cc292 sync_pb::DebugInfo debug_info; in TEST_F() local
293 download::CopyClientDebugInfo(debug_info_getter(), &debug_info); in TEST_F()
294 EXPECT_EQ(0, debug_info.events_size()); in TEST_F()
298 sync_pb::DebugInfo debug_info; in TEST_F() local
300 download::CopyClientDebugInfo(debug_info_getter(), &debug_info); in TEST_F()
301 EXPECT_EQ(1, debug_info.events_size()); in TEST_F()
302 download::CopyClientDebugInfo(debug_info_getter(), &debug_info); in TEST_F()
303 EXPECT_EQ(1, debug_info.events_size()); in TEST_F()
Ddownload.cc343 sync_pb::DebugInfo* debug_info = msg->mutable_debug_info(); in ExecuteDownloadUpdates() local
344 CopyClientDebugInfo(session->context()->debug_info_getter(), debug_info); in ExecuteDownloadUpdates()
419 sync_pb::DebugInfo* debug_info) { in CopyClientDebugInfo() argument
421 debug_info_getter->GetDebugInfo(debug_info); in CopyClientDebugInfo()
/external/llvm/test/DebugInfo/
Ddwarfdump-dump-flags.test5 ; DUMP_ALL: .debug_info
8 ; DUMP_INFO: .debug_info
11 ; DUMP_RANGES-NOT: .debug_info
/external/chromium_org/sync/test/sessions/
Dmock_debug_info_getter.cc16 void MockDebugInfoGetter::GetDebugInfo(sync_pb::DebugInfo* debug_info) { in GetDebugInfo() argument
17 debug_info->CopyFrom(debug_info_); in GetDebugInfo()
/external/v8/src/
Ddebug.cc105 BreakLocationIterator::BreakLocationIterator(Handle<DebugInfo> debug_info, in BreakLocationIterator() argument
107 debug_info_ = debug_info; in BreakLocationIterator()
702 BreakLocationIterator it(node->debug_info(), ALL_BREAK_LOCATIONS); in HandleWeakDebugInfo()
704 debug->RemoveDebugInfo(node->debug_info()); in HandleWeakDebugInfo()
715 DebugInfoListNode::DebugInfoListNode(DebugInfo* debug_info): next_(NULL) { in DebugInfoListNode() argument
719 (global_handles->Create(debug_info))); in DebugInfoListNode()
924 Handle<DebugInfo> debug_info = GetDebugInfo(shared); in Break() local
927 BreakLocationIterator break_location_iterator(debug_info, in Break()
1128 return !shared->debug_info()->IsUndefined(); in HasDebugInfo()
1136 return Handle<DebugInfo>(DebugInfo::cast(shared->debug_info())); in GetDebugInfo()
[all …]
/external/chromium_org/v8/src/
Ddebug.cc106 BreakLocationIterator::BreakLocationIterator(Handle<DebugInfo> debug_info, in BreakLocationIterator() argument
108 debug_info_ = debug_info; in BreakLocationIterator()
740 BreakLocationIterator it(node->debug_info(), ALL_BREAK_LOCATIONS); in HandleWeakDebugInfo()
742 debug->RemoveDebugInfo(node->debug_info()); in HandleWeakDebugInfo()
753 DebugInfoListNode::DebugInfoListNode(DebugInfo* debug_info): next_(NULL) { in DebugInfoListNode() argument
754 GlobalHandles* global_handles = debug_info->GetIsolate()->global_handles(); in DebugInfoListNode()
757 (global_handles->Create(debug_info))); in DebugInfoListNode()
972 Handle<DebugInfo> debug_info = GetDebugInfo(shared); in Break() local
975 BreakLocationIterator break_location_iterator(debug_info, in Break()
1177 return !shared->debug_info()->IsUndefined(); in HasDebugInfo()
[all …]
/external/oprofile/opjitconv/
Ddebug_line.c442 asection * line_section, * debug_info, * debug_abbrev; in init_debug_line_info() local
482 debug_info = create_section(abfd, ".debug_info", b_debug_info.size, 0, in init_debug_line_info()
484 if (!debug_info) in init_debug_line_info()
499 asection * line_section, * debug_info, * debug_abbrev; in finalize_debug_line_info() local
505 debug_info = bfd_get_section_by_name(abfd, ".debug_info"); in finalize_debug_line_info()
506 if (!debug_info) in finalize_debug_line_info()
515 fill_section_content(abfd, debug_info, b_debug_info.p, in finalize_debug_line_info()
/external/oprofile/libutil++/
Dop_bfd.cpp342 if (debug_info.cached()) in has_debug_info()
343 return debug_info.get(); in has_debug_info()
346 return debug_info.reset(false); in has_debug_info()
349 return debug_info.reset(true); in has_debug_info()
357 return debug_info.reset(true); in has_debug_info()
364 return debug_info.reset(false); in has_debug_info()
/external/oprofile/pp/
Dopreport_options.cpp38 bool debug_info; variable
95 popt::option(options::debug_info, "debug-info", 'g',
212 if (debug_info || accumulated) { in check_options()
294 if (debug_info) in handle_options()
/external/kernel-headers/original/asm-arm/
Dprocessor.h36 struct debug_info { struct
47 struct debug_info debug; argument
/external/chromium/chrome/browser/sync/syncable/
Ddirectory_backing_store.cc389 const syncable::AutofillMigrationDebugInfo& debug_info = in SaveChanges() local
397 debug_info.bookmarks_added_during_migration); in SaveChanges()
399 debug_info.autofill_migration_time); in SaveChanges()
401 debug_info.autofill_entries_added_during_migration); in SaveChanges()
403 debug_info.autofill_profile_added_during_migration); in SaveChanges()
600 syncable::AutofillMigrationDebugInfo& debug_info = in LoadInfo() local
602 debug_info.bookmarks_added_during_migration = in LoadInfo()
604 debug_info.autofill_migration_time = in LoadInfo()
606 debug_info.autofill_entries_added_during_migration = in LoadInfo()
608 debug_info.autofill_profile_added_during_migration = in LoadInfo()
/external/chromium_org/webkit/renderer/compositor_bindings/
Dweb_layer_impl.cc399 explicit TracedDebugInfo(blink::WebGraphicsLayerDebugInfo* debug_info) : in TracedDebugInfo() argument
400 debug_info_(debug_info) {} in TracedDebugInfo()
417 blink::WebGraphicsLayerDebugInfo* debug_info = in TakeDebugInfo() local
420 if (debug_info) in TakeDebugInfo()
421 return new TracedDebugInfo(debug_info); in TakeDebugInfo()
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/tests/pass64/
Ddwarf64_2loc.asm7 .section .debug_info
/external/chromium_org/chrome/browser/autocomplete/
Dautocomplete_result.cc197 const base::string16 debug_info = ASCIIToUTF16("fill_into_edit=") + in SortAndCull() local
202 DCHECK(default_match_->allowed_to_be_default_match) << debug_info; in SortAndCull()
206 DCHECK_NE(AutocompleteInput::URL, input.type()) << debug_info; in SortAndCull()
208 DCHECK_NE(AutocompleteInput::FORCED_QUERY, input.type()) << debug_info; in SortAndCull()

1234