Home
last modified time | relevance | path

Searched refs:prefix (Results 1 – 25 of 44) sorted by relevance

12

/art/disassembler/
Ddisassembler_x86.cc173 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 …]
Ddisassembler_x86.h40 bool byte_operand, bool byte_second_operand, uint8_t* prefix, bool load,
/art/runtime/
Dhidden_api_test.cc269 std::string prefix("L"); in TEST_F() local
270 ASSERT_TRUE(MemberSignature(class1_field1_).DoesPrefixMatch(prefix)); in TEST_F()
271 ASSERT_TRUE(MemberSignature(class1_field12_).DoesPrefixMatch(prefix)); in TEST_F()
272 ASSERT_TRUE(MemberSignature(class1_init_).DoesPrefixMatch(prefix)); in TEST_F()
273 ASSERT_TRUE(MemberSignature(class1_method1_).DoesPrefixMatch(prefix)); in TEST_F()
274 ASSERT_TRUE(MemberSignature(class1_method1_i_).DoesPrefixMatch(prefix)); in TEST_F()
275 ASSERT_TRUE(MemberSignature(class12_field1_).DoesPrefixMatch(prefix)); in TEST_F()
276 ASSERT_TRUE(MemberSignature(class12_method1_).DoesPrefixMatch(prefix)); in TEST_F()
277 ASSERT_TRUE(MemberSignature(class1_method12_).DoesPrefixMatch(prefix)); in TEST_F()
278 ASSERT_TRUE(MemberSignature(class2_field1_).DoesPrefixMatch(prefix)); in TEST_F()
[all …]
Dnative_stack_dump.cc82 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 …]
Daot_class_linker.cc212 std::string prefix = 'L' + package + '/'; in SetUpdatableBootClassPackages() local
213 std::replace(prefix.begin(), prefix.end(), '.', '/'); in SetUpdatableBootClassPackages()
214 prefixes.push_back(std::move(prefix)); in SetUpdatableBootClassPackages()
238 for (const std::string& prefix : updatable_boot_class_path_descriptor_prefixes_) { in IsUpdatableBootClassPathDescriptor() local
239 if (StartsWith(descriptor_sv, prefix)) { in IsUpdatableBootClassPathDescriptor()
Dnative_stack_dump.h36 const char* prefix = "",
Dhidden_api.cc211 bool MemberSignature::DoesPrefixMatch(const std::string& prefix) const { in DoesPrefixMatch()
214 size_t count = std::min(prefix.length() - pos, strlen(part)); in DoesPrefixMatch()
215 if (prefix.compare(pos, count, part, 0, count) == 0) { in DoesPrefixMatch()
223 return pos == prefix.length(); in DoesPrefixMatch()
Dentrypoints_order_test.cc48 #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/
Dparser.py25 def __extractLine(prefix, line, arch = None, debuggable = False): argument
37 prefix + arch_specifier + dbg_specifier + r":"
47 def __preprocessLineForStart(prefix, line, targetArch): argument
55 if prefix in line:
73 def __processLine(line, lineNo, prefix, fileName, targetArch): argument
87 sline = __preprocessLineForStart(prefix + "-START", line, targetArch)
89 startLine = __extractLine(prefix + "-START", sline, arch, debuggable)
94 plainLine = __extractLine(prefix, line)
99 nextLine = __extractLine(prefix + "-NEXT", line)
104 dagLine = __extractLine(prefix + "-DAG", line)
[all …]
/art/libartbase/base/
Dstring_view_cpp20.h30 inline bool StartsWith(std::string_view sv, std::string_view prefix) { in StartsWith() argument
31 return sv.substr(0u, prefix.size()) == prefix; in StartsWith()
Dhex_dump.h32 HexDump(const void* address, size_t byte_count, bool show_actual_addresses, const char* prefix) in HexDump() argument
34 prefix_(prefix) { in HexDump()
Dcommon_art_test.cc409 std::string prefix(host ? GetAndroidRoot() : ""); in GetDexFileName() local
413 return StringPrintf("%s%s/javalib/%s.jar", prefix.c_str(), apexPath, jar_prefix.c_str()); in GetDexFileName()
453 std::string prefix = GetAndroidBuildTop(); in GetLibCoreDexLocations() local
455 CHECK_GT(location.size(), prefix.size()); in GetLibCoreDexLocations()
456 CHECK_EQ(location.compare(0u, prefix.size(), prefix), 0) in GetLibCoreDexLocations()
457 << " prefix=" << prefix << " location=" << location; in GetLibCoreDexLocations()
458 location.erase(0u, prefix.size()); in GetLibCoreDexLocations()
541 std::string prefix(IsHost() ? GetAndroidRoot() : ""); in GetCoreFileLocation() local
542 return StringPrintf("%s%s/javalib/boot.%s", prefix.c_str(), kAndroidArtApexDefaultPath, suffix); in GetCoreFileLocation()
Dbit_vector.cc329 void BitVector::Dump(std::ostream& os, const char *prefix) const { in Dump()
331 DumpHelper(prefix, buffer); in Dump()
335 void BitVector::DumpHelper(const char* prefix, std::ostringstream& buffer) const { in DumpHelper() argument
337 if (prefix != nullptr) { in DumpHelper()
338 buffer << prefix; in DumpHelper()
Dbit_vector.h260 void Dump(std::ostream& os, const char* prefix) const;
269 void DumpHelper(const char* prefix, std::ostringstream& buffer) const;
/art/tools/jfuzz/
Djfuzz.cc321 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/golem/
Denv65 local prefix="$2"
68 echo >&$out_fd "${prefix}${target}"
/art/tools/signal_dumper/
Dsignal_dumper.cc192 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/test/1971-multi-force-early-return/src/art/
DTest1971.java58 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/tools/
Ddex2oat_wrapper75 # 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"
Dart558 local prefix="$1"
567 result+="${separator}${prefix}/apex/${apex}/javalib/${module}.jar"
/art/test/005-annotations/src/android/test/anno/
DTestAnnotations.java32 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/
Dutf_test.cc180 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/
Dliveness_test.cc38 const char* prefix) { in DumpBitVector() argument
39 buffer << prefix; in DumpBitVector()
/art/
DCPPLINT.cfg20 # Use 'ART_' as the cpp header guard prefix (e.g. #ifndef ART_PATH_TO_FILE_H_).
/art/test/testrunner/
Denv.py72 ART_HOST_TEST_DIR = tempfile.mkdtemp(prefix = 'test-art-')

12