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

1 2 3 4 5 6 7

  /art/runtime/
disassembler.h 34 // Dump a single instruction returning the length of that instruction.
35 virtual size_t Dump(std::ostream& os, const uint8_t* begin) = 0;
36 // Dump instructions within a range.
37 virtual void Dump(std::ostream& os, const uint8_t* begin, const uint8_t* end) = 0;
disassembler_mips.h 30 virtual size_t Dump(std::ostream& os, const uint8_t* begin);
31 virtual void Dump(std::ostream& os, const uint8_t* begin, const uint8_t* end);
disassembler_x86.h 29 virtual size_t Dump(std::ostream& os, const uint8_t* begin);
30 virtual void Dump(std::ostream& os, const uint8_t* begin, const uint8_t* end);
throw_location.cc 27 std::string ThrowLocation::Dump() const {
disassembler_arm.h 31 virtual size_t Dump(std::ostream& os, const uint8_t* begin);
32 virtual void Dump(std::ostream& os, const uint8_t* begin, const uint8_t* end);
reference_table.h 48 void Dump(std::ostream& os) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
54 static void Dump(std::ostream& os, const Table& entries)
56 friend class IndirectReferenceTable; // For Dump.
reference_table_test.cc 35 rt.Dump(oss);
48 // Add o1 and check we have 1 element and can dump.
53 rt.Dump(oss);
64 rt.Dump(oss);
83 rt.Dump(oss);
92 rt.Dump(oss);
throw_location.h 63 std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
  /art/runtime/gc/space/
space.cc 28 void Space::Dump(std::ostream& os) const {
33 space.Dump(os);
  /external/javassist/src/main/javassist/tools/
Dump.java 23 * Dump is a tool for viewing the class definition in the given
24 * class file. Unlike the JDK javap tool, Dump works even if
28 * <ul><pre>% java javassist.tools.Dump foo.class</pre></ul>
33 public class Dump {
34 private Dump() {}
43 System.err.println("Usage: java Dump <class file name>");
  /frameworks/base/core/java/com/android/internal/util/
DumpUtils.java 38 public static void dumpAsync(Handler handler, final Dump dump, PrintWriter pw, long timeout) {
44 dump.dump(lpw);
54 public interface Dump {
55 void dump(PrintWriter pw); method in interface:DumpUtils.Dump
  /external/v8/src/
disassembler.h 39 static void Dump(FILE* f, byte* begin, byte* end);
  /external/chromium_org/chrome/renderer/
page_load_histograms.h 24 // Dump all page load histograms appropriate for the given frame.
26 // This method will only dump once-per-instance, so it is safe to call
43 void Dump(WebKit::WebFrame* frame);
  /external/chromium_org/third_party/skia/src/animator/
SkDump.h 20 DECLARE_MEMBER_INFO(Dump);
  /external/chromium_org/v8/src/
disassembler.h 39 static void Dump(FILE* f, byte* begin, byte* end);
  /external/skia/src/animator/
SkDump.h 20 DECLARE_MEMBER_INFO(Dump);
  /art/runtime/gc/accounting/
mod_union_table.h 77 virtual void Dump(std::ostream& os) = 0;
113 void Dump(std::ostream& os);
144 void Dump(std::ostream& os);
heap_bitmap.cc 53 << "Bitmap " << bitmap->Dump() << " overlaps with existing bitmap " << cur_bitmap->Dump();
  /art/runtime/verifier/
reg_type.cc 84 std::string PreciseConstType::Dump() const {
101 std::string BooleanType::Dump() const {
105 std::string ConflictType::Dump() const {
109 std::string ByteType::Dump() const {
113 std::string ShortType::Dump() const {
117 std::string CharType::Dump() const {
121 std::string FloatType::Dump() const {
125 std::string LongLoType::Dump() const {
129 std::string LongHiType::Dump() const {
133 std::string DoubleLoType::Dump() const
    [all...]
reg_type.h 223 virtual std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) = 0;
301 std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
331 std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
373 std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
392 std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
412 std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
431 std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
450 std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
469 std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
491 std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
    [all...]
  /art/runtime/mirror/
throwable.h 38 std::string Dump() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
throwable.cc 51 std::string Throwable::Dump() const {
80 result += cause->Dump();
  /external/chromium_org/third_party/skia/src/core/
SkTypefaceCache.h 75 static void Dump();
  /external/skia/src/core/
SkTypefaceCache.h 75 static void Dump();
  /art/runtime/base/
timing_logger.h 42 void Dump(std::ostream& os) LOCKS_EXCLUDED(lock_);
94 void Dump(std::ostream& os) const;

Completed in 1371 milliseconds

1 2 3 4 5 6 7