Searched defs:thread_count (Results 1 - 13 of 13) sorted by relevance

/art/test/925-threadgroups/
H A Dthreadgroups.cc91 jint thread_count; local
97 &thread_count,
111 return CreateObjectArray(env, thread_count, "java/lang/Thread", inner_callback);
/art/compiler/jit/
H A Djit_compiler.cc147 /* thread_count */ 1,
154 size_t thread_count = compiler_driver_->GetThreadCount(); local
156 DCHECK_EQ(thread_count, 1u)
/art/test/911-get-stack-trace/
H A Dstack_trace.cc145 jint thread_count; local
148 jvmtiError result = jvmti_env->GetAllStackTraces(max, &stack_infos, &thread_count);
166 jobjectArray ret = CreateObjectArray(env, thread_count, "[Ljava/lang/Object;", callback);
173 jint thread_count = env->GetArrayLength(jthreads); local
174 std::unique_ptr<jthread[]> threads(new jthread[thread_count]);
175 for (jint i = 0; i != thread_count; ++i) {
181 jvmtiError result = jvmti_env->GetThreadListStackTraces(thread_count,
202 jobjectArray ret = CreateObjectArray(env, thread_count, "[Ljava/lang/Object;", callback);
/art/runtime/native/
H A Dorg_apache_harmony_dalvik_ddmc_DdmVmInternal.cc148 uint16_t thread_count = 0; local
149 thread_list->ForEach(ThreadCountCallback, &thread_count);
153 JDWP::Append2BE(bytes, thread_count);
/art/test/931-agent-thread/
H A Dagent_thread.cc74 jint thread_count; local
76 jvmtiError threads_result = jenv->GetAllThreads(&thread_count, &threads);
79 for (jint i = 0; i != thread_count; ++i) {
/art/runtime/
H A Dthread_pool.cc184 const size_t thread_count = GetThreadCount(); local
186 const size_t active_threads = thread_count - waiting_count_;
/art/test/924-threads/
H A Dthreads.cc151 jint thread_count; local
154 jvmtiError result = jvmti_env->GetAllThreads(&thread_count, &threads);
162 jobjectArray ret = CreateObjectArray(env, thread_count, "java/lang/Thread", callback);
/art/test/ti-agent/
H A Djni_binder.cc197 jint thread_count; local
199 CheckJvmtiError(jvmti_env, jvmti_env->GetAllThreads(&thread_count, &threads));
203 for (jint t = 0; t != thread_count; ++t) {
/art/openjdkjvmti/
H A Dti_stack.cc473 jint thread_count,
480 if (thread_count < 0) {
483 if (thread_count == 0) {
534 for (jint i = 0; i != thread_count; ++i) {
596 size_t rounded_stack_info_size = art::RoundUp(sizeof(jvmtiStackInfo) * thread_count,
609 for (size_t i = 0; i < static_cast<size_t>(thread_count); ++i) {
472 GetThreadListStackTraces(jvmtiEnv* env, jint thread_count, const jthread* thread_list, jint max_frame_count, jvmtiStackInfo** stack_info_ptr) argument
H A DOpenjdkJvmTi.cc299 jint thread_count,
305 thread_count,
298 GetThreadListStackTraces(jvmtiEnv* env, jint thread_count, const jthread* thread_list, jint max_frame_count, jvmtiStackInfo** stack_info_ptr) argument
/art/runtime/gc/collector/
H A Dmark_sweep.cc881 size_t thread_count = GetThreadCount(paused); local
883 if (kParallelCardScan && thread_count > 1) {
894 const size_t mark_stack_tasks = GetHeap()->GetContinuousSpaces().size() * thread_count;
912 const size_t card_delta = RoundUp(address_range / thread_count + 1,
948 thread_pool->SetMaxActiveWorkers(thread_count - 1);
1033 size_t thread_count = GetThreadCount(false); local
1034 const bool parallel = kParallelRecursiveMark && thread_count > 1;
1052 const size_t n = thread_count * 2;
1066 thread_pool->SetMaxActiveWorkers(thread_count - 1);
1391 void MarkSweep::ProcessMarkStackParallel(size_t thread_count) { argument
1416 size_t thread_count = GetThreadCount(paused); local
[all...]
/art/compiler/driver/
H A Dcompiler_driver.cc269 size_t thread_count,
286 parallel_thread_count_(thread_count),
1831 size_t thread_count,
1845 context.ForAll(0, dex_file.NumTypeIds(), &visitor, thread_count);
1850 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
2147 size_t thread_count,
2159 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
2213 size_t thread_count,
2223 context.ForAll(0, dex_file.NumClassDefs(), &visitor, thread_count);
2692 size_t thread_count,
260 CompilerDriver( const CompilerOptions* compiler_options, VerificationResults* verification_results, Compiler::Kind compiler_kind, InstructionSet instruction_set, const InstructionSetFeatures* instruction_set_features, std::unordered_set<std::string>* image_classes, std::unordered_set<std::string>* compiled_classes, std::unordered_set<std::string>* compiled_methods, size_t thread_count, int swap_fd, const ProfileCompilationInfo* profile_compilation_info) argument
1827 ResolveDexFile(jobject class_loader, const DexFile& dex_file, const std::vector<const DexFile*>& dex_files, ThreadPool* thread_pool, size_t thread_count, TimingLogger* timings) argument
2143 VerifyDexFile(jobject class_loader, const DexFile& dex_file, const std::vector<const DexFile*>& dex_files, ThreadPool* thread_pool, size_t thread_count, TimingLogger* timings) argument
2209 SetVerifiedDexFile(jobject class_loader, const DexFile& dex_file, const std::vector<const DexFile*>& dex_files, ThreadPool* thread_pool, size_t thread_count, TimingLogger* timings) argument
2687 CompileDexFile(CompilerDriver* driver, jobject class_loader, const DexFile& dex_file, const std::vector<const DexFile*>& dex_files, ThreadPool* thread_pool, size_t thread_count, TimingLogger* timings, const char* timing_name, CompileFn compile_fn) argument
[all...]
/art/openjdkjvmti/include/
H A Djvmti.h1521 jint thread_count,
1914 jvmtiError GetThreadListStackTraces(jint thread_count, argument
1918 return functions->GetThreadListStackTraces(this, thread_count, thread_list, max_frame_count, stack_info_ptr);

Completed in 386 milliseconds