/art/runtime/native/ |
D | dalvik_system_VMDebug.cc | 323 std::string output = std::to_string(heap->GetGcCount()); in VMDebug_getRuntimeStatInternal() 327 std::string output = std::to_string(NsToMs(heap->GetGcTime())); in VMDebug_getRuntimeStatInternal() 331 std::string output = std::to_string(heap->GetBytesAllocatedEver()); in VMDebug_getRuntimeStatInternal() 335 std::string output = std::to_string(heap->GetBytesFreedEver()); in VMDebug_getRuntimeStatInternal() 339 std::string output = std::to_string(heap->GetBlockingGcCount()); in VMDebug_getRuntimeStatInternal() 343 std::string output = std::to_string(NsToMs(heap->GetBlockingGcTime())); in VMDebug_getRuntimeStatInternal() 357 std::string output = std::to_string(heap->GetObjectsAllocated()); in VMDebug_getRuntimeStatInternal() 361 std::string output = std::to_string(heap->GetTotalTimeWaitingForGC()); in VMDebug_getRuntimeStatInternal() 365 std::string output = std::to_string(heap->GetPreOomeGcCount()); in VMDebug_getRuntimeStatInternal() 405 std::to_string(heap->GetGcCount()))) { in VMDebug_getRuntimeStatsInternal() [all …]
|
/art/libprofile/profile/ |
D | profile_test_helper.h | 162 builder.AddType("LSharedType" + std::to_string(shared_type_index) + ";"); 165 builder.AddType("LFiller" + std::to_string(i) + ";"); 175 std::string return_type = "LSharedType" + std::to_string(return_type_index) + ";"; 176 std::string arg_type = "LSharedType" + std::to_string(arg_type_index) + ";"; 178 builder.AddMethod(class_descriptor, signature, "m" + std::to_string(method_name_index));
|
D | profile_compilation_info_test.cc | 184 dex_files.push_back(BuildDex(std::to_string(i), i, "LC;", kMaxMethodIds)); in SizeStressTest() 263 std::string descriptor = "LX" + std::to_string(type_index) + ";"; in TEST_F() 281 std::string descriptor = "LX" + std::to_string(type_index) + ";"; in TEST_F() 747 std::string location = std::to_string(i); in TEST_F() 760 std::string location = std::to_string(i); in TEST_F()
|
/art/imgdiag/ |
D | imgdiag_test.cc | 89 "--image-diff-pid=" + std::to_string(image_diff_pid), in Exec() 90 "--zygote-diff-pid=" + std::to_string(image_diff_pid), in Exec()
|
/art/dex2oat/ |
D | dex2oat_cts_test.cc | 78 args.emplace_back("--oat-fd=" + std::to_string(oat_file->Fd())); in TEST_F() 83 args.emplace_back("--output-vdex-fd=" + std::to_string(vdex_file->Fd())); in TEST_F()
|
D | dex2oat_test.cc | 85 args.push_back("--oat-fd=" + std::to_string(oat_file->Fd())); 645 copy.push_back("--app-image-fd=" + std::to_string(app_image_file->Fd())); 1094 std::to_string(dex_files[0]->GetLocationChecksum()) + "]"; in TEST_F() 1935 {"--app-image-fd=" + std::to_string(app_image_file.GetFd())}, in TEST_F() 2226 expected_stored_context += "!classes" + std::to_string(index) + ".dex"; in TEST_F() 2228 expected_stored_context += "*" + std::to_string(dex_file->GetLocationChecksum()); in TEST_F()
|
/art/profman/ |
D | profile_assistant_test.cc | 180 argv_str.push_back("--profile-file-fd=" + std::to_string(profiles_fd[k])); in ProcessProfiles() 182 argv_str.push_back("--reference-profile-file-fd=" + std::to_string(reference_profile_fd)); in ProcessProfiles() 243 argv_str.push_back("--dump-output-to-fd=" + std::to_string(GetFd(output_file))); in RunProfman() 981 args.push_back("--class-threshold=" + std::to_string(kDirtyThreshold)); in TEST_F() 982 args.push_back("--clean-class-threshold=" + std::to_string(kCleanThreshold)); in TEST_F() 983 args.push_back("--method-threshold=" + std::to_string(kMethodThreshold)); in TEST_F() 984 args.push_back("--preloaded-class-threshold=" + std::to_string(kPreloadedThreshold)); in TEST_F() 986 "--special-package=" + kSpecialPackage + ":" + std::to_string(kSpecialThreshold)); in TEST_F() 1078 args.push_back("--class-threshold=" + std::to_string(kDirtyThreshold)); in TEST_F() 1079 args.push_back("--clean-class-threshold=" + std::to_string(kCleanThreshold)); in TEST_F() [all …]
|
D | profile_assistant.cc | 118 *error += " (index=" + std::to_string(i) + ")"; in Init() 132 *error += " (index=" + std::to_string(i) + ")"; in Init()
|
/art/cmdline/ |
D | memory_representation.h | 52 str = "Memory<" + std::to_string(kDivisor) + '>'; in Name()
|
D | cmdline_parser.h | 676 + std::to_string(size_t(i + min_tokens) - arguments_list.Size()) + in Parse() 684 "matched " + std::to_string(best_match_size) in Parse() 685 + " but wanted " + std::to_string(num_tokens.first)); in Parse()
|
D | cmdline_types.h | 123 + std::to_string(Divisor)); 199 str = "Memory with granularity of " + std::to_string(Divisor) + " bytes";
|
/art/compiler/jit/ |
D | jit_logger.cc | 43 std::string pid_str = std::to_string(getpid()); in OpenPerfMapLog() 250 std::string pid_str = std::to_string(getpid()); in OpenJitDumpLog()
|
/art/dexlayout/ |
D | dexdiag_test.cc | 89 exec_argv.push_back(std::to_string(this_pid)); in Exec()
|
D | dex_visualize.cc | 43 return prefix + ((dex_file_index > 0) ? std::to_string(dex_file_index + 1) : "") + suffix; in MultidexName()
|
/art/tools/jvmti-agents/ti-alloc-sample/ |
D | ti_alloc_sample.cc | 263 stream->Write(header + std::to_string(next_index_) + "," + key + "\n"); in Intern() 266 return std::to_string(map_[key]); in Intern()
|
/art/cmdline/detail/ |
D | cmdline_parse_argument_detail.h | 404 + " at token " + std::to_string(idx)); in ParseArgument() 417 + " at token " + std::to_string(idx)); in ParseArgument()
|
/art/runtime/ |
D | common_runtime_test.cc | 493 argv.push_back("--image-fd=" + std::to_string(art_file->Fd())); in CompileBootImage() 494 argv.push_back("--output-vdex-fd=" + std::to_string(vdex_file->Fd())); in CompileBootImage() 495 argv.push_back("--oat-fd=" + std::to_string(oat_file->Fd())); in CompileBootImage()
|
D | image.cc | 418 *error_msg = "Failed to flush image file " + image_file->GetPath() + ": " + std::to_string(err); in WriteData()
|
D | runtime_common.cc | 268 std::string reg_name = "x" + std::to_string(i); in Dump()
|
/art/libartbase/base/ |
D | common_art_test.cc | 586 std::to_string(dex_files[0]->GetLocationChecksum()); in CreateClassPathWithChecksums() 589 std::to_string(dex_files[i]->GetLocationChecksum()); in CreateClassPathWithChecksums()
|
/art/odrefresh/ |
D | odrefresh.cc | 490 bcp_fds.push_back(std::to_string(jar_file->Fd())); in AddBootClasspathFds() 507 args.emplace_back("--cache-info-fd=" + std::to_string(cache_info_file->Fd())); in AddCacheInfoFd() 548 bcp_image_fds.push_back(std::to_string(image_file->Fd())); in AddCompiledBootClasspathFdsIfAny() 558 bcp_oat_fds.push_back(std::to_string(oat_file->Fd())); in AddCompiledBootClasspathFdsIfAny() 568 bcp_vdex_fds.push_back(std::to_string(vdex_file->Fd())); in AddCompiledBootClasspathFdsIfAny() 818 SetProperty("service.bootanim.progress", std::to_string(value)); in ReportNextBootAnimationProgress()
|
/art/dexoptanalyzer/ |
D | dexoptanalyzer_test.cc | 52 std::to_string(static_cast<int>(profile_analysis_result))); in Analyze()
|
/art/runtime/jni/ |
D | java_vm_ext.cc | 981 jmethodID to_string = env->GetMethodID(local_class.get(), in LoadNativeLibrary() local 984 DCHECK(to_string != nullptr); in LoadNativeLibrary() 986 env->CallObjectMethod(local_ref.get(), to_string)); in LoadNativeLibrary()
|
/art/test/004-JniTest/ |
D | jni_test.cc | 752 jmethodID to_string = env_->GetMethodID( in TestCalls() local 754 jstring exception_string = (jstring) env_->CallObjectMethod(thrown, to_string); in TestCalls()
|
/art/compiler/optimizing/ |
D | nodes_vector.h | 50 return "ALIGN(" + std::to_string(base_) + "," + std::to_string(offset_) + ")"; in ToString()
|