/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 | 76 def Dump(struct_name, values): 83 Dump("input_prop_labels", input_prop_list) 84 Dump("ev_labels", ev_list) 85 Dump("syn_labels", syn_list) 86 Dump("key_labels", key_list) 87 Dump("rel_labels", rel_list) 88 Dump("abs_labels", abs_list) 89 Dump("sw_labels", sw_list) 90 Dump("msc_labels", msc_list) 91 Dump("led_labels", led_list [all...] |
/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/runtime/base/ |
dumpable.h | 27 // A convenience to allow any class with a "Dump(std::ostream& os)" member function 38 void Dump(std::ostream& os) const { 39 value_.Dump(os); 50 rhs.Dump(os); 59 void Dump(std::ostream& os) const REQUIRES_SHARED(Locks::mutator_lock_) { 60 value_.Dump(os);
|
hex_dump.h | 26 // Prints a hex dump in this format: 37 void Dump(std::ostream& os) const; 49 rhs.Dump(os);
|
dumpable-inl.h | 29 rhs.Dump(os);
|
/frameworks/base/libs/hwui/service/ |
GraphicsStatsService.h | 40 class Dump; 49 ANDROID_API static Dump* createDump(int outFd, DumpType type); 50 ANDROID_API static void addToDump(Dump* dump, const std::string& path, const std::string& package, 52 ANDROID_API static void addToDump(Dump* dump, const std::string& path); 53 ANDROID_API static void finishDump(Dump* dump);
|
/build/soong/androidmk/parser/ |
ast.go | 8 Dump() string 20 func (x *Assignment) Dump() string { 23 target = x.Target.Dump() + ": " 25 return target + x.Name.Dump() + " " + x.Type + " " + x.Value.Dump() 42 func (x *Comment) Dump() string { 56 func (x *Directive) Dump() string { 57 return x.Name + " " + x.Args.Dump() 75 func (x *Rule) Dump() string { 80 return "rule: " + x.Target.Dump() + ": " + x.Prerequisites.Dump() + recip [all...] |
/art/disassembler/ |
disassembler_arm.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_mips.h | 36 size_t Dump(std::ostream& os, const uint8_t* begin) OVERRIDE; 37 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;
|
/art/test/149-suspend-all-stress/ |
suspend_all.cc | 45 Runtime::Current()->GetThreadList()->Dump(LOG_STREAM(INFO)); 53 Runtime::Current()->GetThreadList()->Dump(LOG_STREAM(INFO));
|
/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>");
|
/art/runtime/ |
reference_table.h | 50 void Dump(std::ostream& os) REQUIRES_SHARED(Locks::mutator_lock_); 58 static void Dump(std::ostream& os, Table& entries) 60 friend class IndirectReferenceTable; // For Dump.
|
runtime_common.h | 42 void Dump(std::ostream& os) const { 53 void Dump(std::ostream& os) const {
|
jni_env_ext-inl.h | 35 locals.Dump(LOG_STREAM(WARNING) << "Warning: more than 16 JNI local references: "
|
/art/test/004-ThreadStress/ |
thread_stress.cc | 33 std::cout << soa.Decode<mirror::Throwable>(t)->Dump();
|
/device/linaro/bootloader/edk2/NetworkPkg/Application/IpsecConfig/ |
IpSecConfig.inf | 32 Dump.c
33 Dump.h
|
/external/skia/src/core/ |
SkTypefaceCache.h | 66 static void Dump();
|
/frameworks/base/services/core/jni/ |
com_android_server_GraphicsStatsService.cpp | 36 GraphicsStatsService::Dump* dump = GraphicsStatsService::createDump(fd, isProto local 38 return reinterpret_cast<jlong>(dump); 60 GraphicsStatsService::Dump* dump = reinterpret_cast<GraphicsStatsService::Dump*>(dumpPtr); local 61 LOG_ALWAYS_FATAL_IF(!dump, "null passed for dump pointer"); 64 GraphicsStatsService::addToDump(dump, path, package, versionCode, startTime, endTime, data); 71 GraphicsStatsService::Dump* dump = reinterpret_cast<GraphicsStatsService::Dump*>(dumpPtr) local 76 GraphicsStatsService::Dump* dump = reinterpret_cast<GraphicsStatsService::Dump*>(dumpPtr); local [all...] |