Home
last modified time | relevance | path

Searched refs:to_string (Results 1 – 25 of 37) sorted by relevance

12

/art/runtime/native/
Ddalvik_system_VMDebug.cc325 std::string output = std::to_string(heap->GetGcCount()); in VMDebug_getRuntimeStatInternal()
329 std::string output = std::to_string(NsToMs(heap->GetGcTime())); in VMDebug_getRuntimeStatInternal()
333 std::string output = std::to_string(heap->GetBytesAllocatedEver()); in VMDebug_getRuntimeStatInternal()
337 std::string output = std::to_string(heap->GetBytesFreedEver()); in VMDebug_getRuntimeStatInternal()
341 std::string output = std::to_string(heap->GetBlockingGcCount()); in VMDebug_getRuntimeStatInternal()
345 std::string output = std::to_string(NsToMs(heap->GetBlockingGcTime())); in VMDebug_getRuntimeStatInternal()
359 std::string output = std::to_string(heap->GetObjectsAllocated()); in VMDebug_getRuntimeStatInternal()
363 std::string output = std::to_string(heap->GetTotalTimeWaitingForGC()); in VMDebug_getRuntimeStatInternal()
393 std::to_string(heap->GetGcCount()))) { in VMDebug_getRuntimeStatsInternal()
397 std::to_string(NsToMs(heap->GetGcTime())))) { in VMDebug_getRuntimeStatsInternal()
[all …]
/art/libprofile/profile/
Dprofile_test_helper.h162 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));
Dprofile_compilation_info_test.cc178 dex_files.push_back(BuildDex(std::to_string(i), i, "LC;", kMaxMethodIds)); in SizeStressTest()
257 std::string descriptor = "LX" + std::to_string(type_index) + ";"; in TEST_F()
275 std::string descriptor = "LX" + std::to_string(type_index) + ";"; in TEST_F()
735 std::string location = std::to_string(i); in TEST_F()
748 std::string location = std::to_string(i); in TEST_F()
/art/imgdiag/
Dimgdiag_test.cc89 "--image-diff-pid=" + std::to_string(image_diff_pid), in Exec()
90 "--zygote-diff-pid=" + std::to_string(image_diff_pid), in Exec()
/art/profman/
Dprofile_assistant_test.cc178 argv_str.push_back("--profile-file-fd=" + std::to_string(profiles_fd[k])); in ProcessProfiles()
180 argv_str.push_back("--reference-profile-file-fd=" + std::to_string(reference_profile_fd)); in ProcessProfiles()
241 argv_str.push_back("--dump-output-to-fd=" + std::to_string(GetFd(output_file))); in RunProfman()
982 args.push_back("--class-threshold=" + std::to_string(kDirtyThreshold)); in TEST_F()
983 args.push_back("--clean-class-threshold=" + std::to_string(kCleanThreshold)); in TEST_F()
984 args.push_back("--method-threshold=" + std::to_string(kMethodThreshold)); in TEST_F()
985 args.push_back("--preloaded-class-threshold=" + std::to_string(kPreloadedThreshold)); in TEST_F()
987 "--special-package=" + kSpecialPackage + ":" + std::to_string(kSpecialThreshold)); in TEST_F()
1079 args.push_back("--class-threshold=" + std::to_string(kDirtyThreshold)); in TEST_F()
1080 args.push_back("--clean-class-threshold=" + std::to_string(kCleanThreshold)); in TEST_F()
[all …]
Dprofile_assistant.cc120 *error += " (index=" + std::to_string(i) + ")"; in Init()
134 *error += " (index=" + std::to_string(i) + ")"; in Init()
/art/cmdline/
Dmemory_representation.h52 str = "Memory<" + std::to_string(kDivisor) + '>'; in Name()
Dcmdline_parser.h676 + 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()
Dcmdline_types.h123 + std::to_string(Divisor));
199 str = "Memory with granularity of " + std::to_string(Divisor) + " bytes";
/art/compiler/jit/
Djit_logger.cc43 std::string pid_str = std::to_string(getpid()); in OpenPerfMapLog()
250 std::string pid_str = std::to_string(getpid()); in OpenJitDumpLog()
/art/dexlayout/
Ddexdiag_test.cc91 exec_argv.push_back(std::to_string(this_pid)); in Exec()
Ddex_visualize.cc43 return prefix + ((dex_file_index > 0) ? std::to_string(dex_file_index + 1) : "") + suffix; in MultidexName()
/art/tools/jvmti-agents/ti-alloc-sample/
Dti_alloc_sample.cc263 stream->Write(header + std::to_string(next_index_) + "," + key + "\n"); in Intern()
266 return std::to_string(map_[key]); in Intern()
/art/cmdline/detail/
Dcmdline_parse_argument_detail.h407 + " at token " + std::to_string(idx)); in ParseArgument()
420 + " at token " + std::to_string(idx)); in ParseArgument()
/art/runtime/
Dcommon_runtime_test.cc468 argv.push_back("--image-fd=" + std::to_string(art_file->Fd())); in CompileBootImage()
469 argv.push_back("--output-vdex-fd=" + std::to_string(vdex_file->Fd())); in CompileBootImage()
470 argv.push_back("--oat-fd=" + std::to_string(oat_file->Fd())); in CompileBootImage()
Druntime_common.cc268 std::string reg_name = "x" + std::to_string(i); in Dump()
/art/libartbase/base/
Dcommon_art_test.cc591 std::to_string(dex_files[0]->GetLocationChecksum()); in CreateClassPathWithChecksums()
594 std::to_string(dex_files[i]->GetLocationChecksum()); in CreateClassPathWithChecksums()
Dhash_set_test.cc349 hash_set.insert(std::to_string(hash_set.size())); in TEST_F()
/art/dex2oat/
Ddex2oat_test.cc85 args.push_back("--oat-fd=" + std::to_string(oat_file->Fd()));
657 copy.push_back("--app-image-fd=" + std::to_string(app_image_file->Fd()));
995 dex_files[0]->GetLocation() + "*" + std::to_string(dex_files[0]->GetLocationChecksum()) + "]"; in TEST_F()
1895 { "--app-image-fd=" + std::to_string(app_image_file.GetFd()) }, in TEST_F()
2184 expected_stored_context += "!classes" + std::to_string(index) + ".dex"; in TEST_F()
2186 expected_stored_context += "*" + std::to_string(dex_file->GetLocationChecksum()); in TEST_F()
/art/runtime/jni/
Djava_vm_ext.cc953 jmethodID to_string = env->GetMethodID(local_class.get(), in LoadNativeLibrary() local
956 DCHECK(to_string != nullptr); in LoadNativeLibrary()
958 env->CallObjectMethod(local_ref.get(), to_string)); in LoadNativeLibrary()
/art/dexoptanalyzer/
Ddexoptanalyzer_test.cc52 std::to_string(static_cast<int>(profile_analysis_result))); in Analyze()
/art/test/004-JniTest/
Djni_test.cc752 jmethodID to_string = env_->GetMethodID( in TestCalls() local
754 jstring exception_string = (jstring) env_->CallObjectMethod(thrown, to_string); in TestCalls()
/art/compiler/optimizing/
Dinduction_var_analysis.cc1384 return std::to_string(fetch->AsIntConstant()->GetValue()); in FetchToString()
1386 return std::to_string(fetch->AsLongConstant()->GetValue()); in FetchToString()
1388 return std::to_string(fetch->GetId()) + ":" + fetch->DebugName(); in FetchToString()
Dnodes_vector.h50 return "ALIGN(" + std::to_string(base_) + "," + std::to_string(offset_) + ")"; in ToString()
/art/dex2oat/linker/arm/
Drelative_patcher_arm_base.cc263 info.custom_name = base_name + "_" + std::to_string(i); in GenerateThunkDebugInfo()

12