Searched defs:prefix (Results 1 - 11 of 11) sorted by relevance

/art/runtime/base/
H A Dhex_dump.h32 HexDump(const void* address, size_t byte_count, bool show_actual_addresses, const char* prefix) argument
34 prefix_(prefix) {
H A Dbit_vector.cc397 void BitVector::Dump(std::ostream& os, const char *prefix) const {
399 DumpHelper(prefix, buffer);
417 void BitVector::DumpDot(FILE* file, const char* prefix, bool last_entry) const { argument
419 DumpHelper(prefix, buffer);
423 void BitVector::DumpIndicesDot(FILE* file, const char* prefix, bool last_entry) const { argument
425 DumpIndicesHelper(prefix, buffer);
429 void BitVector::DumpIndicesHelper(const char* prefix, std::ostringstream& buffer) const { argument
431 if (prefix != nullptr) {
432 buffer << prefix; local
442 void BitVector::DumpHelper(const char* prefix, st argument
445 buffer << prefix; local
[all...]
/art/test/005-annotations/src/android/test/anno/
H A DTestAnnotations.java14 static private void printAnnotationArray(String prefix, Annotation[] arr) { argument
23 System.out.println(prefix + " " + a);
24 System.out.println(prefix + " " + a.annotationType());
/art/compiler/optimizing/
H A Dliveness_test.cc33 const char* prefix) {
34 buffer << prefix; local
30 DumpBitVector(BitVector* vector, std::ostream& buffer, size_t count, const char* prefix) argument
/art/compiler/dex/
H A Dpass_driver_me.h131 // Create directory prefix.
132 std::string prefix = GetDumpCFGFolder(); local
133 prefix += passFolder;
134 prefix += "/";
136 c_unit->mir_graph->DumpCFG(prefix.c_str(), false);
/art/compiler/dex/quick/arm/
H A Dtarget_arm.cc491 void ArmMir2Lir::DumpResourceMask(LIR* arm_lir, const ResourceMask& mask, const char* prefix) { argument
533 LOG(INFO) << prefix << ": " << buf;
/art/compiler/dex/quick/mips/
H A Dtarget_mips.cc287 void MipsMir2Lir::DumpResourceMask(LIR *mips_lir, const ResourceMask& mask, const char *prefix) { argument
328 LOG(INFO) << prefix << ": " << buf;
/art/disassembler/
H A Ddisassembler_x86.cc159 uint8_t prefix[4] = {0, 0, 0, 0}; local
167 prefix[0] = *instr;
176 prefix[1] = *instr;
180 prefix[2] = *instr;
184 prefix[3] = *instr;
276 // In 32-bit mode (!supports_rex_) this is ARPL, with no REX prefix the functionality is the
309 if (prefix[0] == 0xF2) {
311 prefix[0] = 0; // clear prefix now it's served its purpose as part of the opcode
312 } else if (prefix[
[all...]
/art/compiler/dex/quick/arm64/
H A Dtarget_arm64.cc520 void Arm64Mir2Lir::DumpResourceMask(LIR* arm_lir, const ResourceMask& mask, const char* prefix) { argument
562 LOG(INFO) << prefix << ": " << buf;
/art/runtime/
H A Dutils.cc973 bool StartsWith(const std::string& s, const char* prefix) { argument
974 return s.compare(0, strlen(prefix), prefix) == 0;
1065 void DumpNativeStack(std::ostream& os, pid_t tid, const char* prefix, argument
1074 os << prefix << "(backtrace::Unwind failed for thread " << tid << ")\n";
1077 os << prefix << "(no native stack frames for thread " << tid << ")\n";
1089 // after the <RELATIVE_ADDR>. There can be any prefix data before the
1090 // #XX. <RELATIVE_ADDR> has to be a hex number but with no 0x prefix.
1091 os << prefix << StringPrintf("#%02zu pc ", it->num);
1123 void DumpKernelStack(std::ostream& os, pid_t tid, const char* prefix, boo argument
1149 os << prefix; local
[all...]
/art/compiler/dex/quick/x86/
H A Dtarget_x86.cc397 void X86Mir2Lir::DumpResourceMask(LIR *x86LIR, const ResourceMask& mask, const char *prefix) { argument
435 LOG(INFO) << prefix << ": " << buf;

Completed in 1308 milliseconds