/art/runtime/ |
D | disassembler_x86.cc | 106 uint8_t prefix[4] = {0, 0, 0, 0}; in DumpInstruction() local 114 prefix[0] = *instr; in DumpInstruction() 123 prefix[1] = *instr; in DumpInstruction() 127 prefix[2] = *instr; in DumpInstruction() 131 prefix[3] = *instr; in DumpInstruction() 230 if (prefix[0] == 0xF2) { in DumpInstruction() 232 prefix[0] = 0; // clear prefix now it's served its purpose as part of the opcode in DumpInstruction() 233 } else if (prefix[0] == 0xF3) { in DumpInstruction() 235 prefix[0] = 0; // clear prefix now it's served its purpose as part of the opcode in DumpInstruction() 236 } else if (prefix[2] == 0x66) { in DumpInstruction() [all …]
|
D | utils.cc | 908 bool StartsWith(const std::string& s, const char* prefix) { in StartsWith() argument 909 return s.compare(0, strlen(prefix), prefix) == 0; in StartsWith() 1045 void DumpNativeStack(std::ostream& os, pid_t tid, const char* prefix, bool include_count) { in DumpNativeStack() argument 1054 os << prefix << "(unwind_backtrace_thread failed for thread " << tid << ")\n"; in DumpNativeStack() 1057 os << prefix << "(no native stack frames for thread " << tid << ")\n"; in DumpNativeStack() 1084 os << prefix; in DumpNativeStack() 1106 void DumpKernelStack(std::ostream& os, pid_t tid, const char* prefix, bool include_count) { in DumpKernelStack() argument 1115 os << prefix << "(couldn't read " << kernel_stack_filename << ")\n"; in DumpKernelStack() 1131 os << prefix; in DumpKernelStack()
|
D | utils.h | 180 bool StartsWith(const std::string& s, const char* prefix); 339 void DumpNativeStack(std::ostream& os, pid_t tid, const char* prefix = "", bool include_count = tru… 342 void DumpKernelStack(std::ostream& os, pid_t tid, const char* prefix = "", bool include_count = tru…
|
/art/jdwpspy/ |
D | Main.cpp | 23 void printHexDump2(const void* vaddr, size_t length, const char* prefix) in printHexDump2() argument 25 printHexDumpEx(stdout, vaddr, length, kHexDumpLocal, prefix); in printHexDump2() 34 HexDumpMode mode, const char* prefix) in printHexDumpEx() argument 95 fprintf(fp, "%s%s", prefix, out); in printHexDumpEx()
|
D | Net.cpp | 473 char prefix[3]; in dumpPacket() local 496 prefix[0] = srcName[0]; in dumpPacket() 497 prefix[1] = '>'; in dumpPacket() 499 prefix[0] = dstName[0]; in dumpPacket() 500 prefix[1] = '<'; in dumpPacket() 502 prefix[2] = '\0'; in dumpPacket() 509 prefix, dataLen, id, flags, cmdSet, cmd, min, sec); in dumpPacket() 510 printf("%s --> %s\n", prefix, getCommandName(cmdSet, cmd)); in dumpPacket() 515 prefix, dataLen, id, flags, error, ss.str().c_str(), min,sec); in dumpPacket() 518 printHexDump2(buf, dataLen, prefix); in dumpPacket() [all …]
|
D | Common.h | 94 void printHexDump2(const void* vaddr, size_t length, const char* prefix); 96 HexDumpMode mode, const char* prefix);
|
/art/test/004-annotations/src/android/test/anno/ |
D | TestAnnotations.java | 14 static private void printAnnotationArray(String prefix, Annotation[] arr) { in printAnnotationArray() argument 23 System.out.println(prefix + " " + a); in printAnnotationArray() 24 System.out.println(prefix + " " + a.annotationType()); in printAnnotationArray()
|
/art/build/ |
D | Android.oat.mk | 68 …-base=$(IMG_TARGET_BASE_ADDRESS) --instruction-set=$(TARGET_ARCH) --host-prefix=$(PRODUCT_OUT) --a… 100 …-base=$(IMG_TARGET_BASE_ADDRESS) --instruction-set=$(TARGET_ARCH) --host-prefix=$(PRODUCT_OUT) --a…
|
/art/compiler/dex/quick/x86/ |
D | target_x86.cc | 256 void X86Mir2Lir::DumpResourceMask(LIR *x86LIR, uint64_t mask, const char *prefix) { in DumpResourceMask() argument 293 LOG(INFO) << prefix << ": " << buf; in DumpResourceMask()
|
D | codegen_x86.h | 76 void DumpResourceMask(LIR* lir, uint64_t mask, const char* prefix);
|
D | assemble_x86.cc | 249 #define EXT_0F_ENCODING_MAP(opname, prefix, opcode, reg_def) \ argument 250 { kX86 ## opname ## RR, kRegReg, IS_BINARY_OP | reg_def | REG_USE01, { prefix, 0, 0x… 251 { kX86 ## opname ## RM, kRegMem, IS_LOAD | IS_TERTIARY_OP | reg_def | REG_USE01, { prefix, 0, 0x… 252 { kX86 ## opname ## RA, kRegArray, IS_LOAD | IS_QUIN_OP | reg_def | REG_USE012, { prefix, 0, 0x…
|
/art/compiler/dex/quick/mips/ |
D | target_mips.cc | 247 void MipsMir2Lir::DumpResourceMask(LIR *mips_lir, uint64_t mask, const char *prefix) { in DumpResourceMask() argument 287 LOG(INFO) << prefix << ": " << buf; in DumpResourceMask()
|
D | codegen_mips.h | 76 void DumpResourceMask(LIR* lir, uint64_t mask, const char* prefix);
|
/art/ |
D | Android.mk | 272 …-dex-file=$(PRODUCT_OUT)/$(1) --dex-location=/$(1) --oat-file=$$@ --host-prefix=$(PRODUCT_OUT) --i… 316 $(OATDUMP) --image=$(HOST_CORE_IMG_OUT) --output=/tmp/core.host.oatdump.txt --host-prefix=""
|
/art/test/ |
D | Android.mk | 115 …)/$$< --oat-file=$(PWD)/$$@ --instruction-set=$(HOST_ARCH) --host --host-prefix="" --android-root=…
|
/art/tools/ |
D | cpplint.py | 777 prefix = os.path.commonprefix([root_dir, project_dir]) 778 return fullname[len(prefix) + 1:] 792 prefix = os.path.commonprefix([root_dir, project_dir]) 795 return "art/" + fullname[len(prefix) + 1:] 3698 prefix = line[:matched.start()] 3699 if prefix.endswith('std::') or not prefix.endswith('::'):
|
/art/compiler/dex/quick/arm/ |
D | target_arm.cc | 443 void ArmMir2Lir::DumpResourceMask(LIR* arm_lir, uint64_t mask, const char* prefix) { in DumpResourceMask() argument 484 LOG(INFO) << prefix << ": " << buf; in DumpResourceMask()
|
D | codegen_arm.h | 75 void DumpResourceMask(LIR* lir, uint64_t mask, const char* prefix);
|
/art/compiler/dex/quick/ |
D | mir_to_lir.h | 574 virtual void DumpResourceMask(LIR* lir, uint64_t mask, const char* prefix) = 0;
|