/art/runtime/ |
thread_list.cc | 68 // Whether we should try to dump the native stack of unattached threads. See commit ed8b723 for 151 suspend_all_historam_.PrintConfidenceIntervals(os, 0.99, data); // Dump time to suspend. 155 Dump(os, dump_native_stack); 196 // Dump checkpoint timeout in milliseconds. Larger amount on the target, since the device could be 200 // A closure used by Thread::Dump. 217 thread->Dump(local_os, dump_native_stack_, backtrace_map_.get()); 234 << "Unexpected time out during dump checkpoint."; 245 // Whether we should dump the native stack. 249 void ThreadList::Dump(std::ostream& os, bool dump_native_stack) { 259 // Use SOA to prevent deadlocks if multiple threads are calling Dump() at the same time [all...] |
/external/google-breakpad/src/client/linux/microdump_writer/ |
microdump_writer.cc | 88 bool Dump() { 220 // Dump the content of the stack, splicing it into chunks which size is 244 // Dump only the crashing thread. 293 // Dump information about the provided |mapping|. If |identifier| is non-NULL, 394 return writer.Dump();
|
/hardware/intel/img/hwcomposer/merrifield/common/base/ |
Hwcomposer.cpp | 18 #include <Dump.h> 375 bool Hwcomposer::dump(char *buff, int buff_len, int *cur_len) function in class:android::intel::Hwcomposer 379 Dump d(buff, buff_len); 381 // dump composer status 383 // dump device status 387 device->dump(d); 390 // dump plane manager status 392 mPlaneManager->dump(d); 394 // dump buffer manager status 396 mBufferManager->dump(d) [all...] |
/hardware/intel/img/hwcomposer/moorefield_hdmi/common/base/ |
Hwcomposer.cpp | 18 #include <common/utils/Dump.h> 363 bool Hwcomposer::dump(char *buff, int buff_len, int * /* cur_len */) function in class:android::intel::Hwcomposer 367 Dump d(buff, buff_len); 369 // dump composer status 371 // dump device status 375 device->dump(d); 378 // dump plane manager status 380 mPlaneManager->dump(d); 382 // dump buffer manager status 384 mBufferManager->dump(d) [all...] |
/hardware/qcom/display/msm8998/sdm/libs/hwc2/ |
hwc_display.h | 59 void Dump(std::ostringstream* os); 116 virtual std::string Dump(void);
|
/hardware/qcom/display/sdm845/sdm/libs/hwc2/ |
hwc_display.h | 59 void Dump(std::ostringstream* os); 116 virtual std::string Dump(void);
|
/system/connectivity/wificond/ |
server.cpp | 54 constexpr const char* kPermissionDump = "android.permission.DUMP"; 172 status_t Server::dump(int fd, const Vector<String16>& /*args*/) { function in class:android::wificond::Server 176 << ") is not permitted to dump wificond state"; 191 iface->Dump(&ss); 195 iface->Dump(&ss); 199 PLOG(ERROR) << "Failed to dump state to fd " << fd;
|
/art/runtime/verifier/ |
reg_type_test.cc | 420 TEST_F(RegTypeReferenceTest, Dump) { 421 // Tests types for proper Dump messages. 435 EXPECT_EQ(expected, unresolved_ref.Dump()); 437 EXPECT_EQ(expected, resolved_ref.Dump()); 439 EXPECT_EQ(expected, resolved_unintialiesd.Dump()); 441 EXPECT_EQ(expected, unresolved_unintialized.Dump()); 443 EXPECT_EQ(expected, unresolved_merged.Dump()); [all...] |
method_verifier.h | 143 // Dump the failures encountered by the verifier. 146 // Dump the state of the verifier, namely each instruction, what flags are set on it, register 148 void Dump(std::ostream& os) REQUIRES_SHARED(Locks::mutator_lock_); 149 void Dump(VariableIndentationOutputStream* vios) REQUIRES_SHARED(Locks::mutator_lock_); [all...] |
/prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/ |
gen.go | 24 // dump("addrescapes", n); 102 Dump("MOVE", n) 108 Dump("n", n) 190 Dump("tempname", Curfn)
|
/prebuilts/go/linux-x86/src/cmd/compile/internal/gc/ |
gen.go | 24 // dump("addrescapes", n); 102 Dump("MOVE", n) 108 Dump("n", n) 190 Dump("tempname", Curfn)
|
/art/runtime/gc/allocator/ |
rosalloc.cc | [all...] |
/art/runtime/base/ |
mutex.cc | 209 mutex->Dump(os); 217 mutex->Dump(os); 556 void Mutex::Dump(std::ostream& os) const { 566 mu.Dump(os); 798 void ReaderWriterMutex::Dump(std::ostream& os) const { 812 mu.Dump(os); 817 mu.Dump(os); [all...] |
/external/drm_hwcomposer/ |
drmdisplaycompositor.cpp | 148 void SquashState::Dump(std::ostringstream *out) const { 156 region.rect.Dump(out); [all...] |
/external/llvm/tools/llvm-bcanalyzer/ |
llvm-bcanalyzer.cpp | 16 // --dump - Dump low-level bitcode structure in readable format 26 // the bitcode file (-dump option). 52 static cl::opt<bool> Dump("dump", cl::desc("Dump low level bitcode trace")); 63 cl::desc("Emit numeric info in dump even if" 485 bool DumpRecords = Dump; 487 if (Dump) outs() << Indent << "<BLOCKINFO_BLOCK/>\n"; 490 // It's not really interesting to dump the contents of the blockinfo block [all...] |
/hardware/qcom/display/sdm845/libgralloc1/ |
gr_device_impl.cpp | 126 return reinterpret_cast<gralloc1_function_pointer_t>(Dump); 179 gralloc1_error_t GrallocImpl::Dump(gralloc1_device_t *device, uint32_t *out_size, 191 os << "QTI gralloc dump:" << std::endl; 194 dev->buf_mgr_->Dump(&os);
|
/prebuilts/go/darwin-x86/src/runtime/ |
heapdump.go | 21 stopTheWorld("write heap dump") 55 var dumpfd uintptr // fd to write the dump to. 112 // dump a uint64 in a varint format parseable by encoding/binary 134 // dump varint uint64 length followed by memory contents 152 // dump information for a type 175 // Might not have been dumped yet. Dump it and 182 // dump the type 201 // dump an object 235 // dump kinds & offsets of interesting fields in bv 264 // Dump any types we will need to resolve Efaces [all...] |
/prebuilts/go/linux-x86/src/runtime/ |
heapdump.go | 21 stopTheWorld("write heap dump") 55 var dumpfd uintptr // fd to write the dump to. 112 // dump a uint64 in a varint format parseable by encoding/binary 134 // dump varint uint64 length followed by memory contents 152 // dump information for a type 175 // Might not have been dumped yet. Dump it and 182 // dump the type 201 // dump an object 235 // dump kinds & offsets of interesting fields in bv 264 // Dump any types we will need to resolve Efaces [all...] |
/build/make/core/ |
dumpvar.mk | 104 # Dump mulitple variables to "<var>=<value>" pairs, one per line. 111 .PHONY: dump-many-vars 112 dump-many-vars :
|
/hardware/intel/img/hwcomposer/moorefield_hdmi/ |
Android.mk | 56 common/utils/Dump.cpp
|
/hardware/qcom/display/msm8996/libgralloc1/ |
gr_device_impl.cpp | 123 return reinterpret_cast<gralloc1_function_pointer_t>(Dump); 176 gralloc1_error_t GrallocImpl::Dump(gralloc1_device_t *device, uint32_t *out_size, 182 // nothing to dump
|
/prebuilts/go/darwin-x86/src/encoding/hex/ |
hex_test.go | 145 out := []byte(Dump(in[:]))
|
/prebuilts/go/linux-x86/src/encoding/hex/ |
hex_test.go | 145 out := []byte(Dump(in[:]))
|
/system/extras/simpleperf/ |
record.h | 197 void Dump(size_t indent) const; 244 void Dump(size_t indent = 0) const;
|
/art/compiler/ |
cfi_test.h | 72 disasm->Dump(stream, base, base + actual_asm.size());
|