Home
last modified time | relevance | path

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

123

/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.cc417 std::string prefix("L"); in TEST_F() local
418 ASSERT_TRUE(MemberSignature(class1_field1_).DoesPrefixMatch(prefix)); in TEST_F()
419 ASSERT_TRUE(MemberSignature(class1_field12_).DoesPrefixMatch(prefix)); in TEST_F()
420 ASSERT_TRUE(MemberSignature(class1_init_).DoesPrefixMatch(prefix)); in TEST_F()
421 ASSERT_TRUE(MemberSignature(class1_method1_).DoesPrefixMatch(prefix)); in TEST_F()
422 ASSERT_TRUE(MemberSignature(class1_method1_i_).DoesPrefixMatch(prefix)); in TEST_F()
423 ASSERT_TRUE(MemberSignature(class12_field1_).DoesPrefixMatch(prefix)); in TEST_F()
424 ASSERT_TRUE(MemberSignature(class12_method1_).DoesPrefixMatch(prefix)); in TEST_F()
425 ASSERT_TRUE(MemberSignature(class1_method12_).DoesPrefixMatch(prefix)); in TEST_F()
426 ASSERT_TRUE(MemberSignature(class2_field1_).DoesPrefixMatch(prefix)); in TEST_F()
[all …]
Dnative_stack_dump.cc84 static inline void WritePrefix(std::ostream& os, const char* prefix, bool odd) { in WritePrefix() argument
85 if (prefix != nullptr) { in WritePrefix()
86 os << prefix; in WritePrefix()
157 const char* prefix, in Drain() argument
206 WritePrefix(os, prefix, (*pipe)->odd); in Drain()
235 const char* prefix, in Addr2line() argument
253 Drain(0, prefix, pipe, os); in Addr2line()
286 Drain(2U, prefix, pipe, os); in Addr2line()
321 const char* prefix, in DumpNativeStack() argument
326 DumpNativeStack(os, unwinder, tid, prefix, current_method, ucontext_ptr, skip_frames); in DumpNativeStack()
[all …]
Dnative_stack_dump.h41 const char* prefix = "",
50 const char* prefix = "",
/art/tools/checker/file_format/checker/
Dparser.py27 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/
Dstring_view_cpp20.h27 inline bool StartsWith(std::string_view sv, std::string_view prefix) { in StartsWith() argument
29 return sv.substr(0u, prefix.size()) == prefix; in StartsWith()
31 return sv.starts_with(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()
Dtesting.cc30 std::string prefix(host ? GetAndroidRoot() : ""); in GetDexFileName() local
36 "%s%s/javalib/%s.jar", prefix.c_str(), apexPath, jar_prefix.c_str()); in GetDexFileName()
Dbit_vector.cc333 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()
Dcommon_art_test.cc464 std::string prefix = GetAndroidBuildTop(); in GetLibCoreDexLocations() local
466 CHECK_GT(location.size(), prefix.size()); in GetLibCoreDexLocations()
467 CHECK_EQ(location.compare(0u, prefix.size(), prefix), 0) in GetLibCoreDexLocations()
468 << " prefix=" << prefix << " location=" << location; in GetLibCoreDexLocations()
469 location.erase(0u, prefix.size()); in GetLibCoreDexLocations()
/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/libartservice/service/java/com/android/server/art/model/
DArtFlags.java89 @IntDef(flag = true, prefix = "FLAG_", value = {
113 @IntDef(flag = true, prefix = "FLAG_", value = {
186 @IntDef(prefix = "PRIORITY_", value = {
212 @IntDef(prefix = "SCHEDULE_", value = {
/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()
509 const char* prefix) { in DumpThread() argument
519 LOG(ERROR) << prefix << "(Unwind failed for thread " << tid << ": " in DumpThread()
[all …]
/art/odrefresh/
Dodrefresh_main.cc116 bool ArgumentMatches(std::string_view argument, std::string_view prefix, std::string* value) { in ArgumentMatches() argument
117 if (android::base::StartsWith(argument, prefix)) { in ArgumentMatches()
118 *value = std::string(argument.substr(prefix.size())); in ArgumentMatches()
203 for (const char* prefix : kCheckedSystemPropertyPrefixes) { in GetSystemProperties() local
204 if (StartsWith(name, prefix) && !art::ContainsElement(kIgnoredSystemProperties, name)) { in GetSystemProperties()
Dodr_config.h171 const char* prefix = UseDebugBinaries() ? "dex2oatd" : "dex2oat"; in GetDex2Oat() local
185 return art_bin_dir_ + '/' + prefix + suffix; in GetDex2Oat()
/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/test/dexdump/
Drun-all-tests105 prefix=$(basename ${ALL_DEX_FILES_JAR} .jar)
107 new_output=${prefix}.${suffix}
/art/libartservice/service/java/com/android/server/art/
DReasonMapping.java90 @StringDef(prefix = "REASON_", value = {
106 @StringDef(prefix = "REASON_", value = {
/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"
/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.cc39 const char* prefix) { in DumpBitVector() argument
40 buffer << prefix; in DumpBitVector()
/art/
DCPPLINT.cfg20 # Use 'ART_' as the cpp header guard prefix (e.g. #ifndef ART_PATH_TO_FILE_H_).

123