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

1 2 3 4 5 6 7 8 91011

  /hardware/intel/img/hwcomposer/merrifield/common/utils/
Dump.h 22 class Dump {
24 Dump(char *buf, int len);
25 ~Dump();
Dump.cpp 19 #include <Dump.h>
24 Dump::Dump(char *buf, int len)
31 Dump::~Dump()
36 void Dump::append(const char *fmt, ...)
  /hardware/intel/img/hwcomposer/moorefield_hdmi/common/utils/
Dump.h 22 class Dump {
24 Dump(char *buf, int len);
25 ~Dump();
Dump.cpp 19 #include <common/utils/Dump.h>
24 Dump::Dump(char *buf, int len)
31 Dump::~Dump()
36 void Dump::append(const char *fmt, ...)
  /system/core/toolbox/
generate-input.h-labels.py 75 def Dump(struct_name, values):
82 Dump("input_prop_labels", input_prop_list)
83 Dump("ev_labels", ev_list)
84 Dump("syn_labels", syn_list)
85 Dump("key_labels", key_list)
86 Dump("rel_labels", rel_list)
87 Dump("abs_labels", abs_list)
88 Dump("sw_labels", sw_list)
89 Dump("msc_labels", msc_list)
90 Dump("led_labels", led_list
    [all...]
  /art/runtime/base/
dumpable.h 26 // A convenience to allow any class with a "Dump(std::ostream& os)" member function
37 void Dump(std::ostream& os) const {
38 value_.Dump(os);
49 rhs.Dump(os);
hex_dump.h 26 // Prints a hex dump in this format:
37 void Dump(std::ostream& os) const;
49 rhs.Dump(os);
  /external/google-breakpad/src/processor/
synth_minidump.h 39 // that eventually gets appended to the minidump. Dump, Memory,
45 // using google_breakpad::SynthMinidump::Dump;
49 // Dump minidump(MD_NORMAL, kLittleEndian);
74 // flexibility in how we put the dump together: minidump pieces can
77 // been placed by the time we call dump.GetContents to obtain the
81 // The dump.Add(thing) functions append THINGS's contents to the
84 // - dump.Add(thing) invokes thing->Finish, which tells *thing the
89 // of list or directory, then dump.Add(THING) automatically creates
97 // the dump. For example, although the Thread constructor takes
99 // dump on the caller's behalf. Rather, the caller is responsible fo
    [all...]
synth_minidump.cc 40 Section::Section(const Dump &dump)
41 : test_assembler::Section(dump.endianness()) { }
55 SystemInfo::SystemInfo(const Dump &dump,
58 : Stream(dump, MD_SYSTEM_INFO_STREAM) {
114 String::String(const Dump &dump, const string &contents) : Section(dump) {
129 Context::Context(const Dump &dump, const MDRawContextX86 &context
    [all...]
synth_minidump_unittest.cc 45 using google_breakpad::SynthMinidump::Dump;
59 Dump dump(0);
60 Section section(dump);
69 Dump dump(0, kBigEndian);
70 Section section1(dump), section2(dump);
82 Dump dump(0, kLittleEndian)
    [all...]
  /art/disassembler/
disassembler_mips.h 35 size_t Dump(std::ostream& os, const uint8_t* begin) OVERRIDE;
36 void Dump(std::ostream& os, const uint8_t* begin, const uint8_t* end) OVERRIDE;
disassembler_arm.h 31 size_t Dump(std::ostream& os, const uint8_t* begin) OVERRIDE;
32 void Dump(std::ostream& os, const uint8_t* begin, const uint8_t* end) OVERRIDE;
disassembler_x86.h 32 size_t Dump(std::ostream& os, const uint8_t* begin) OVERRIDE;
33 void Dump(std::ostream& os, const uint8_t* begin, const uint8_t* end) OVERRIDE;
disassembler.h 68 // Dump a single instruction returning the length of that instruction.
69 virtual size_t Dump(std::ostream& os, const uint8_t* begin) = 0;
70 // Dump instructions within a range.
71 virtual void Dump(std::ostream& os, const uint8_t* begin, const uint8_t* end) = 0;
disassembler_arm64.h 74 size_t Dump(std::ostream& os, const uint8_t* begin) OVERRIDE;
75 void Dump(std::ostream& os, const uint8_t* begin, const uint8_t* end) OVERRIDE;
  /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,
45 dump.dump(lpw, prefix);
55 public interface Dump {
56 void dump(PrintWriter pw, String prefix); method in interface:DumpUtils.Dump
  /art/runtime/
stack_map.cc 92 void StackMapEncoding::Dump(VariableIndentationOutputStream* vios) const {
104 void InlineInfoEncoding::Dump(VariableIndentationOutputStream* vios) const {
115 void CodeInfo::Dump(VariableIndentationOutputStream* vios,
126 encoding.stack_map_encoding.Dump(vios);
128 encoding.inline_info_encoding.Dump(vios);
131 GetDexRegisterLocationCatalog(encoding).Dump(vios, *this);
136 stack_map.Dump(vios,
144 // TODO: Dump the stack map's inline information? We need to know more from the caller:
148 void DexRegisterLocationCatalog::Dump(VariableIndentationOutputStream* vios,
163 void DexRegisterMap::Dump(VariableIndentationOutputStream* vios
    [all...]
reference_table.h 50 void Dump(std::ostream& os) SHARED_REQUIRES(Locks::mutator_lock_);
58 static void Dump(std::ostream& os, Table& entries)
60 friend class IndirectReferenceTable; // For Dump.
jni_env_ext-inl.h 35 locals.Dump(LOG(WARNING) << "Warning: more than 16 JNI local references: "
reference_table_test.cc 40 rt.Dump(oss);
53 // Add o1 and check we have 1 element and can dump.
58 rt.Dump(oss);
69 rt.Dump(oss);
88 rt.Dump(oss);
97 rt.Dump(oss);
  /art/runtime/gc/
reference_queue_test.cc 62 TEST_F(ReferenceQueueTest, Dump) {
68 queue.Dump(LOG(INFO));
82 queue.Dump(LOG(INFO));
84 queue.Dump(LOG(INFO));
  /external/drm_hwcomposer/
drmcompositor.h 41 void Dump(std::ostringstream *out) const;
51 // mutable for Dump() propagation
  /external/skia/src/animator/
SkDump.h 20 DECLARE_MEMBER_INFO(Dump);
  /external/skia/src/core/
SkTypefaceCache.h 74 static void Dump();

Completed in 786 milliseconds

1 2 3 4 5 6 7 8 91011