Home
last modified time | relevance | path

Searched refs:stopped (Results 1 – 25 of 324) sorted by relevance

12345678910>>...13

/external/llvm-project/lldb/test/Shell/Reproducer/Functionalities/
DTestStepping.test27 # CHECK: Process {{.*}} stopped
31 # CHECK: Process {{.*}} stopped
35 # CHECK: Process {{.*}} stopped
39 # CHECK: Process {{.*}} stopped
51 # CHECK: Process {{.*}} stopped
55 # CHECK: Process {{.*}} stopped
59 # CHECK: Process {{.*}} stopped
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/flow/
DCallbackFlowTest.kt18 var stopped = false variable in kotlinx.coroutines.flow.CallbackFlowTest.CallbackApi
24 while (!stopped) { in start()
31 stopped = true in stop()
72 assertTrue(api.stopped) in <lambda>()
107 assertTrue(api.stopped) in <lambda>()
/external/autotest/server/cros/res_resource_monitor/
Dtop_test_data.txt2 Tasks: 368 total, 1 running, 367 sleeping, 0 stopped, 0 zombie
19 Tasks: 369 total, 1 running, 368 sleeping, 0 stopped, 0 zombie
32 Tasks: 369 total, 1 running, 368 sleeping, 0 stopped, 0 zombie
38 Tasks: 363 total, 1 running, 362 sleeping, 0 stopped, 0 zombie
44 Tasks: 363 total, 1 running, 362 sleeping, 0 stopped, 0 zombie
Dtop_field_order_changed.txt2 Tasks: 368 total, 1 running, 367 sleeping, 0 stopped, 0 zombie
12 Tasks: 369 total, 1 running, 368 sleeping, 0 stopped, 0 zombie
23 Tasks: 369 total, 1 running, 368 sleeping, 0 stopped, 0 zombie
Dtop_whitespace_ridden.txt2 Tasks: 368 total, 1 running, 367 sleeping, 0 stopped, 0 zombie
19 Tasks: 369 total, 1 running, 368 sleeping, 0 stopped, 0 zombie
65 Tasks: 369 total, 1 running, 368 sleeping, 0 stopped, 0 zombie
/external/autotest/client/profilers/cros_perf/
Dcros_perf.py68 self.stopped = threading.Event()
92 while not self.stopped.wait(sleep_time):
101 self.stopped.wait(self.duration)
125 self.stopped.set()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowTextToSpeech.java30 private boolean stopped = true; field in ShadowTextToSpeech
58 stopped = false; in speak()
98 stopped = true; in stop()
128 return stopped; in isStopped()
/external/swiftshader/third_party/marl/src/
Dtrace.cpp76 stopped = true; in Trace()
89 if (stopped) { in nameThread()
103 if (stopped) { in beginEvent()
118 if (stopped) { in endEvent()
127 if (stopped) { in beginAsyncEvent()
143 if (stopped) { in endAsyncEvent()
/external/autotest/client/profilers/screenshot/
Dscreenshot.py41 self.stopped = threading.Event()
50 while not self.stopped.wait(sleep_time):
82 self.stopped.set()
/external/webrtc/rtc_base/deprecated/
Dsignal_thread_unittest.cc99 int stopped, in ExpectState() argument
104 EXPECT_EQ(stopped, thread_stopped_); in ExpectState()
111 int stopped, in ExpectStateWait() argument
117 EXPECT_EQ_WAIT(stopped, thread_stopped_, timeout); in ExpectStateWait()
/external/llvm-project/lldb/test/API/api/multiple-debuggers/
Dmulti-process-driver.cpp43 bool stopped = false; in wait_for_stop_event() local
44 while (!stopped) in wait_for_stop_event()
55 stopped = true; in wait_for_stop_event()
59 return stopped; in wait_for_stop_event()
/external/testng/src/main/java/org/testng/internal/
DDefaultMethodSelectorContext.java29 public void setStopped(boolean stopped) { in setStopped() argument
30 m_isStopped = stopped; in setStopped()
/external/webrtc/pc/
Drtp_receiver.cc54 bool stopped) { in MaybeAttachFrameDecryptorToMediaChannel() argument
55 if (media_channel && frame_decryptor && ssrc.has_value() && !stopped) { in MaybeAttachFrameDecryptorToMediaChannel()
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_timedwait/
D2-5.c72 int stopped; /* # of threads which are terminated */ member
142 data.stopped++; in threaded()
296 data.stopped = 0; in main()
332 loc_stopped = data.stopped; in main()
/external/llvm-project/lldb/test/Shell/ScriptInterpreter/Lua/
Dbreakpoint_oneline_callback.test14 # CHECK: Process {{[0-9]+}} stopped
18 # CHECK: Process {{[0-9]+}} stopped
/external/llvm-project/lldb/test/Shell/Register/
Dx86-multithread-read.test7 # CHECK: Process {{[0-9]+}} stopped
15 # CHECK: Process {{[0-9]+}} stopped
Dx86-multithread-write.test8 # CHECK: Process {{[0-9]+}} stopped
20 # CHECK: Process {{[0-9]+}} stopped
/external/chromium-trace/catapult/systrace/profile_chrome/
Dfake_agent_2.py15 self.stopped = False
26 self.stopped = True
Dfake_agent_1.py15 self.stopped = False
27 self.stopped = True
/external/openscreen/cast/cast_core/api/v2/
Dcore_application_service.proto74 STOPPED = 2; // Notified that application has stopped or failed to
79 // Reason why the application was stopped. Only valid when |state| is STOPPED.
82 APPLICATION_REQUEST = 1; // Receiver application stopped itself.
83 IDLE_TIMEOUT = 2; // Runtime stopped an idle application.
/external/rust/crates/criterion/tests/
Dcriterion_tests.rs565 stopped: Rc<Cell<u32>>, field
574 self.stopped.set(self.stopped.get() + 1); in stop_profiling()
582 let stopped = Rc::new(Cell::new(0u32)); in test_profiler_called() localVariable
585 stopped: stopped.clone(), in test_profiler_called()
593 assert_eq!(1, stopped.get()); in test_profiler_called()
/external/llvm-project/lldb/test/Shell/Reproducer/
DTestMultipleTargets.test11 # CHECK: Process [[TARGET0:[0-9]+]] stopped
14 # CHECK: Process [[TARGET1:[0-9]+]] stopped
/external/openscreen/cast/cast_core/api/runtime/
Druntime_service.proto28 // application is stopped.
72 // If stop application was successful, the application ID that was stopped.
74 // If stop application was successful, the Cast session ID that was stopped.
/external/grpc-grpc-java/cronet/src/main/java/io/grpc/cronet/
DCronetClientTransport.java74 private boolean stopped; field in CronetClientTransport
242 if (goAway && !stopped && streams.size() == 0) {
243 stopped = true;
/external/strace/
DREADME-linux-ptrace21 After attachment, each tracee can be in two states: running or stopped.
23 There are many kinds of states when tracee is stopped, and in ptrace
27 In this document, any stopped state in which tracee is ready to accept
72 Tracer cannot assume that ptrace-stopped tracee exists. There are many
73 scenarios when tracee may die while stopped (such as SIGKILL).
76 exists but is not ptrace-stopped (for commands which require stopped
78 Tracer needs to keep track of stopped/running state, and interpret
99 Ptrace-stopped tracees are reported as returns with pid > 0 and
183 group-stopped process. This side effect happens before
234 effectively ignored: tracee doesn't remain stopped, it runs. If tracer
[all …]

12345678910>>...13