Searched refs:started (Results 1 - 24 of 24) sorted by relevance

/art/test/1905-suspend-native/
H A Dnative_suspend.cc34 std::atomic<bool> started(false);
38 started.store(true);
43 return started.load();
/art/test/1944-sudden-exit/src/art/
H A DTest1944.java26 public static void fib(Semaphore started) { argument
27 started.release();
45 final Semaphore started = new Semaphore(-(num_threads - 1));
54 threads[i] = new Thread(() -> { fib(started); });
60 started.acquire();
61 System.out.println("All threads started");
/art/test/1908-suspend-native-resume-self/
H A Dnative_suspend_resume.cc34 std::atomic<bool> started(false);
42 started.store(true);
51 return started.load();
/art/runtime/
H A Dexperimental_flags.h67 bool started = false; local
69 stream << (started ? "|" : "") << "kMethodHandles";
70 started = true;
72 if (!started) {
H A Druntime_callbacks_test.cc148 bool started = runtime_->Start(); local
149 ASSERT_TRUE(started);
345 // The runtime needs to be started for the signal handler.
349 bool started = runtime_->Start(); local
350 ASSERT_TRUE(started);
421 bool started = runtime_->Start(); local
422 ASSERT_TRUE(started);
502 bool started = runtime_->Start(); local
503 ASSERT_TRUE(started);
H A Dthread_pool_test.cc86 // Check that no threads started prematurely.
202 // To create peers, the runtime needs to be started.
204 bool started = runtime_->Start(); local
205 ASSERT_TRUE(started);
H A Dreflection_test.cc131 bool started = runtime_->Start(); local
132 CHECK(started);
531 bool started = runtime_->Start(); local
532 CHECK(started);
H A Dhidden_api_test.cc36 bool started = runtime_->Start(); variable
37 CHECK(started); variable
H A Djni_internal_test.cc636 bool started = runtime_->Start(); local
637 CHECK(started);
1858 bool started = runtime_->Start(); \
1859 ASSERT_TRUE(started); \
1906 bool started = runtime_->Start(); local
1907 ASSERT_TRUE(started);
2278 bool started = runtime_->Start(); local
2279 ASSERT_TRUE(started);
H A Djava_vm_ext.cc1161 bool started = runtime->Start(); local
1162 if (!started) {
/art/test/1920-suspend-native-monitor/
H A Dnative_suspend_monitor.cc36 std::atomic<bool> started(false);
52 started.store(true);
60 return started.load();
74 started.store(false);
/art/test/1921-suspend-native-recursive-monitor/
H A Dnative_suspend_recursive_monitor.cc36 std::atomic<bool> started(false);
55 started.store(true);
66 return started.load();
81 started.store(false);
/art/test/1930-monitor-info/src/art/
H A DMonitors.java126 private volatile boolean started = false; field in class:Monitors.LockController
188 started = true;
233 started = false;
255 } while (!started ||
265 } while (!started ||
/art/test/1931-monitor-events/src/art/
H A DMonitors.java126 private volatile boolean started = false; field in class:Monitors.LockController
188 started = true;
233 started = false;
255 } while (!started ||
265 } while (!started ||
/art/test/1932-monitor-events-misc/src/art/
H A DMonitors.java126 private volatile boolean started = false; field in class:Monitors.LockController
188 started = true;
233 started = false;
255 } while (!started ||
265 } while (!started ||
/art/test/1933-monitor-current-contended/src/art/
H A DMonitors.java126 private volatile boolean started = false; field in class:Monitors.LockController
188 started = true;
233 started = false;
255 } while (!started ||
265 } while (!started ||
/art/test/1934-jvmti-signal-thread/src/art/
H A DMonitors.java126 private volatile boolean started = false; field in class:Monitors.LockController
188 started = true;
233 started = false;
255 } while (!started ||
265 } while (!started ||
/art/test/924-threads/
H A Dthreads.cc39 std::atomic<bool> started; member in struct:art::Test924Threads::WaiterStruct
52 s->started = false;
60 while (!s->started) { }
73 s->started = true;
/art/compiler/
H A Dexception_test.cc174 bool started = runtime_->Start(); local
175 CHECK(started);
/art/openjdkjvmti/
H A Dti_thread.cc84 if (!started) {
85 // Runtime isn't started. We only expect at most the signal handler or JIT threads to be
86 // started here.
107 bool started = false; member in struct:openjdkjvmti::ThreadCallback
115 gThreadCallback.started = runtime->IsStarted();
125 // We should have already started.
126 DCHECK(gThreadCallback.started);
127 // We moved to VMInit. Report the main thread as started (it was attached early, and must not be
133 // We must have started since it is now safe to cache our data;
134 gThreadCallback.started
568 bool started = started_field->GetBoolean(peer.Get()) != 0; local
[all...]
H A Dti_stack.cc616 // (Need to read the Java "started" field to know whether this is starting or terminated.)
619 art::ArtField* started_field = klass->FindDeclaredInstanceField("started", "Z");
621 bool started = started_field->GetBoolean(peer) != 0; local
626 stack_info[i].state = started ? kTerminatedState : kStartedState;
/art/runtime/arch/
H A Dstub_test.cc1772 bool started = runtime_->Start(); local
1773 CHECK(started);
1784 bool started = runtime_->Start(); local
1785 CHECK(started);
1796 bool started = runtime_->Start(); local
1797 CHECK(started);
1807 bool started = runtime_->Start(); local
1808 CHECK(started);
1818 bool started = runtime_->Start(); local
1819 CHECK(started);
[all...]
/art/compiler/driver/
H A Dcompiler_driver_test.cc60 bool started = runtime_->Start(); variable
61 CHECK(started); variable
/art/compiler/jni/
H A Djni_compiler_test.cc287 // Initialize class loader and compile method when runtime not started.
297 bool started = runtime_->Start(); local
298 CHECK(started);
1142 bool started = runtime_->Start(); local
1143 CHECK(started);

Completed in 367 milliseconds