/art/disassembler/ |
D | disassembler_x86.cc | 173 uint8_t* prefix, bool load, RegFile src_reg_file, in DumpAddress() argument 239 prefix[2], load ? src_reg_file : dst_reg_file); in DumpAddress() 291 uint8_t prefix[4] = {0, 0, 0, 0}; in DumpInstruction() local 298 prefix[0] = *instr; in DumpInstruction() 307 prefix[1] = *instr; in DumpInstruction() 311 prefix[2] = *instr; in DumpInstruction() 315 prefix[3] = *instr; in DumpInstruction() 456 if (prefix[0] == 0xF2) { in DumpInstruction() 458 prefix[0] = 0; // clear prefix now it's served its purpose as part of the opcode in DumpInstruction() 459 } else if (prefix[0] == 0xF3) { in DumpInstruction() [all …]
|
D | disassembler_x86.h | 40 bool byte_operand, bool byte_second_operand, uint8_t* prefix, bool load,
|
/art/runtime/ |
D | hidden_api_test.cc | 397 std::string prefix("L"); in TEST_F() local 398 ASSERT_TRUE(MemberSignature(class1_field1_).DoesPrefixMatch(prefix)); in TEST_F() 399 ASSERT_TRUE(MemberSignature(class1_field12_).DoesPrefixMatch(prefix)); in TEST_F() 400 ASSERT_TRUE(MemberSignature(class1_init_).DoesPrefixMatch(prefix)); in TEST_F() 401 ASSERT_TRUE(MemberSignature(class1_method1_).DoesPrefixMatch(prefix)); in TEST_F() 402 ASSERT_TRUE(MemberSignature(class1_method1_i_).DoesPrefixMatch(prefix)); in TEST_F() 403 ASSERT_TRUE(MemberSignature(class12_field1_).DoesPrefixMatch(prefix)); in TEST_F() 404 ASSERT_TRUE(MemberSignature(class12_method1_).DoesPrefixMatch(prefix)); in TEST_F() 405 ASSERT_TRUE(MemberSignature(class1_method12_).DoesPrefixMatch(prefix)); in TEST_F() 406 ASSERT_TRUE(MemberSignature(class2_field1_).DoesPrefixMatch(prefix)); in TEST_F() [all …]
|
D | native_stack_dump.cc | 82 static inline void WritePrefix(std::ostream& os, const char* prefix, bool odd) { in WritePrefix() argument 83 if (prefix != nullptr) { in WritePrefix() 84 os << prefix; in WritePrefix() 155 const char* prefix, in Drain() argument 204 WritePrefix(os, prefix, (*pipe)->odd); in Drain() 233 const char* prefix, in Addr2line() argument 251 Drain(0, prefix, pipe, os); in Addr2line() 284 Drain(2U, prefix, pipe, os); in Addr2line() 321 const char* prefix, in DumpNativeStack() argument 336 os << prefix << "(backtrace::Unwind failed for thread " << tid in DumpNativeStack() [all …]
|
D | aot_class_linker.cc | 214 std::string prefix = 'L' + package + '/'; in SetUpdatableBootClassPackages() local 215 std::replace(prefix.begin(), prefix.end(), '.', '/'); in SetUpdatableBootClassPackages() 216 prefixes.push_back(std::move(prefix)); in SetUpdatableBootClassPackages() 240 for (const std::string& prefix : updatable_boot_class_path_descriptor_prefixes_) { in IsUpdatableBootClassPathDescriptor() local 241 if (StartsWith(descriptor_sv, prefix)) { in IsUpdatableBootClassPathDescriptor()
|
D | native_stack_dump.h | 36 const char* prefix = "",
|
D | hidden_api.cc | 217 bool MemberSignature::DoesPrefixMatch(const std::string& prefix) const { in DoesPrefixMatch() 220 size_t count = std::min(prefix.length() - pos, strlen(part)); in DoesPrefixMatch() 221 if (prefix.compare(pos, count, part, 0, count) == 0) { in DoesPrefixMatch() 229 return pos == prefix.length(); in DoesPrefixMatch()
|
D | entrypoints_order_test.cc | 48 #define EXPECT_OFFSET_DIFFP(type, prefix, first_field, second_field, diff) \ argument 49 EXPECT_OFFSET_DIFF(type, prefix . first_field, type, prefix . second_field, diff, /* NOLINT */ \ 50 type ## _ ## prefix ## _ ## first_field ## _ ## second_field)
|
/art/tools/checker/file_format/checker/ |
D | parser.py | 27 def _extract_line(prefix, line, arch=None, debuggable=False): argument 38 + r_ignore_whitespace + prefix + arch_specifier + dbg_specifier + ":") 49 def _preprocess_line_for_start(prefix, line, target_arch): argument 57 if prefix in line: 76 def _process_line(line, line_no, prefix, filename, target_arch): argument 90 sline = _preprocess_line_for_start(prefix + "-START", line, target_arch) 92 start_line = _extract_line(prefix + "-START", sline, arch, debuggable) 97 plain_line = _extract_line(prefix, line) 102 next_line = _extract_line(prefix + "-NEXT", line) 107 dag_line = _extract_line(prefix + "-DAG", line) [all …]
|
/art/libartbase/base/ |
D | string_view_cpp20.h | 30 inline bool StartsWith(std::string_view sv, std::string_view prefix) { in StartsWith() argument 31 return sv.substr(0u, prefix.size()) == prefix; in StartsWith()
|
D | hex_dump.h | 32 HexDump(const void* address, size_t byte_count, bool show_actual_addresses, const char* prefix) in HexDump() argument 34 prefix_(prefix) { in HexDump()
|
D | bit_vector.cc | 333 void BitVector::Dump(std::ostream& os, const char *prefix) const { in Dump() 335 DumpHelper(prefix, buffer); in Dump() 339 void BitVector::DumpHelper(const char* prefix, std::ostringstream& buffer) const { in DumpHelper() argument 341 if (prefix != nullptr) { in DumpHelper() 342 buffer << prefix; in DumpHelper()
|
D | common_art_test.cc | 430 std::string prefix(host ? GetAndroidRoot() : ""); in GetDexFileName() local 434 return StringPrintf("%s%s/javalib/%s.jar", prefix.c_str(), apexPath, jar_prefix.c_str()); in GetDexFileName() 474 std::string prefix = GetAndroidBuildTop(); in GetLibCoreDexLocations() local 476 CHECK_GT(location.size(), prefix.size()); in GetLibCoreDexLocations() 477 CHECK_EQ(location.compare(0u, prefix.size(), prefix), 0) in GetLibCoreDexLocations() 478 << " prefix=" << prefix << " location=" << location; in GetLibCoreDexLocations() 479 location.erase(0u, prefix.size()); in GetLibCoreDexLocations()
|
/art/tools/jfuzz/ |
D | jfuzz.cc | 321 const char* prefix = tp == kLong ? "Long" : "Integer"; in emitIntrinsic1() local 323 case 1: fprintf(out_, "%s.highestOneBit", prefix); break; in emitIntrinsic1() 324 case 2: fprintf(out_, "%s.lowestOneBit", prefix); break; in emitIntrinsic1() 325 case 3: fprintf(out_, "%s.numberOfLeadingZeros", prefix); break; in emitIntrinsic1() 326 case 4: fprintf(out_, "%s.numberOfTrailingZeros", prefix); break; in emitIntrinsic1() 327 case 5: fprintf(out_, "%s.bitCount", prefix); break; in emitIntrinsic1() 328 case 6: fprintf(out_, "%s.signum", prefix); break; in emitIntrinsic1() 329 case 7: fprintf(out_, "%s.reverse", prefix); break; in emitIntrinsic1() 330 case 8: fprintf(out_, "%s.reverseBytes", prefix); break; in emitIntrinsic1() 366 const char* prefix = tp == kLong ? "Long" : "Integer"; in emitIntrinsic2() local [all …]
|
/art/tools/signal_dumper/ |
D | signal_dumper.cc | 192 void WritePrefix(std::ostream& os, const char* prefix, bool odd) { in WritePrefix() argument 193 if (prefix != nullptr) { in WritePrefix() 194 os << prefix; in WritePrefix() 203 const char* prefix, in Drain() argument 252 WritePrefix(os, prefix, (*pipe)->odd); in Drain() 279 const char* prefix, in Addr2line() argument 292 Drain(0, prefix, pipe, os); in Addr2line() 324 Drain(2U, prefix, pipe, os); in Addr2line() 498 const char* prefix, in DumpThread() argument 509 LOG(ERROR) << prefix << "(failed to create Backtrace for thread " << tid << ")"; in DumpThread() [all …]
|
/art/tools/golem/ |
D | env | 65 local prefix="$2" 68 echo >&$out_fd "${prefix}${target}"
|
/art/test/1971-multi-force-early-return/src/art/ |
D | Test1971.java | 58 private static String safeDumpStackTrace(StackTraceElement st[], String prefix) { in safeDumpStackTrace() argument 63 prefix in safeDumpStackTrace() 71 os.println(prefix + "<Additional frames hidden>"); in safeDumpStackTrace()
|
/art/test/dexdump/ |
D | run-all-tests | 105 prefix=$(basename ${ALL_DEX_FILES_JAR} .jar) 107 new_output=${prefix}.${suffix}
|
/art/odrefresh/ |
D | odr_config.h | 95 const char* prefix = UseDebugBinaries() ? "dex2oatd" : "dex2oat"; in GetDex2Oat() local 109 return art_bin_dir_ + '/' + prefix + suffix; in GetDex2Oat()
|
/art/tools/ |
D | dex2oat_wrapper | 75 # It takes one optional argument which is the prefix to be inserted before each entry. 79 local prefix="$1" 88 result+="${separator}${prefix}/apex/${apex}/javalib/${module}.jar"
|
/art/test/005-annotations/src/android/test/anno/ |
D | TestAnnotations.java | 32 static private void printAnnotationArray(String prefix, Annotation[] arr) { in printAnnotationArray() argument 41 System.out.println(prefix + " " + a); in printAnnotationArray() 42 System.out.println(prefix + " " + a.annotationType()); in printAnnotationArray()
|
/art/libdexfile/dex/ |
D | utf_test.cc | 180 for (const auto& prefix : prefixes) { in TEST_F() local 181 const std::vector<uint16_t>& prefix_in = prefix.first; in TEST_F() 182 const std::vector<uint8_t>& prefix_out = prefix.second; in TEST_F()
|
/art/compiler/optimizing/ |
D | liveness_test.cc | 38 const char* prefix) { in DumpBitVector() argument 39 buffer << prefix; in DumpBitVector()
|
/art/ |
D | CPPLINT.cfg | 20 # Use 'ART_' as the cpp header guard prefix (e.g. #ifndef ART_PATH_TO_FILE_H_).
|
/art/test/testrunner/ |
D | env.py | 72 ART_HOST_TEST_DIR = tempfile.mkdtemp(prefix = 'test-art-')
|