HomeSort by relevance Sort by last modified time
    Searched defs:stopped (Results 1 - 25 of 168) sorted by null

1 2 3 4 5 6 7

  /external/libxcam/xcore/
xcam_thread.cpp 70 thread->stopped ();
87 Thread::stopped () function in class:XCam::Thread
89 XCAM_LOG_DEBUG ("Thread(%s) stopped", XCAM_STR(_name));
thread_pool.cpp 39 virtual void stopped ();
55 UserThread::stopped () function in class:XCam::UserThread
57 XCAM_LOG_DEBUG ("thread(%s, %p) stopped", XCAM_STR(get_name ()), this);
xcam_analyzer.h 49 virtual void stopped () { function in class:XCam::AnalyzerThread
  /external/autotest/client/cros/
dhcp_test_server.py 88 def stopped(self): member in class:DhcpTestServer
291 while not self.stopped:
  /system/core/init/
ueventd_test.cpp 166 std::atomic_bool stopped = false; local
172 while (!stopped) {
196 stopped = true;
  /device/generic/goldfish/wifi/wifi_hal/
wifi_hal.cpp 88 bool stopped = false; local
94 auto callback = [&mutex, &stopped, &condition] {
96 stopped = true;
103 while (!stopped) {
  /external/autotest/client/site_tests/graphics_WebGLAquarium/
sampler.py 66 def stopped(self): member in class:Sampler
67 """Check if sampler is stopped."""
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_timedwait/
2-5.c 78 int stopped; /* # of threads which are terminated */ member in struct:_td
148 data.stopped++;
302 data.stopped = 0;
338 loc_stopped = data.stopped;
  /frameworks/base/core/java/android/content/pm/
PackageUserState.java 46 public boolean stopped; field in class:PackageUserState
82 stopped = o.stopped;
197 if (stopped != oldState.stopped) {
  /external/libxcam/modules/ocl/
cl_bayer_basic_handler.cpp 63 virtual void stopped ();
107 CLBayer3AStatsThread::stopped () function in class:XCam::CLBayer3AStatsThread
159 XCAM_LOG_DEBUG ("copy 3a stats failed, maybe handler stopped");
  /frameworks/support/lifecycle/common/src/test/java/androidx/lifecycle/
ReflectiveGenericLifecycleObserverTest.java 144 verify(obj).stopped();
168 void stopped() {} method in class:ReflectiveGenericLifecycleObserverTest.AllMethodsListener
  /packages/apps/Dialer/java/com/android/voicemail/impl/transcribe/
TranscriptionService.java 58 private boolean stopped; field in class:TranscriptionService
164 stopped = true;
196 if (stopped) {
197 LogUtil.i("TranscriptionService.checkForWork", "stopped");
241 if (stopped) {
242 LogUtil.i("TranscriptionService.Callback.onWorkCompleted", "stopped");
  /prebuilts/go/darwin-x86/src/syscall/
syscall_bsd.go 75 // 0x7F (stopped), or a signal number that caused an exit.
88 stopped = 0x7F
100 func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&mask != 0 }
104 if sig == stopped || sig == 0 {
112 func (w WaitStatus) Stopped() bool { return w&mask == stopped && Signal(w>>shift) != SIGSTOP }
114 func (w WaitStatus) Continued() bool { return w&mask == stopped && Signal(w>>shift) == SIGSTOP }
117 if !w.Stopped() {
87 stopped = 0x7F const
syscall_solaris.go 203 // 0x7F (stopped), or a signal number that caused an exit.
216 stopped = 0x7F
228 func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&mask != 0 }
232 if sig == stopped || sig == 0 {
240 func (w WaitStatus) Stopped() bool { return w&mask == stopped && Signal(w>>shift) != SIGSTOP }
242 func (w WaitStatus) Continued() bool { return w&mask == stopped && Signal(w>>shift) == SIGSTOP }
245 if !w.Stopped() {
215 stopped = 0x7F const
  /prebuilts/go/linux-x86/src/syscall/
syscall_bsd.go 75 // 0x7F (stopped), or a signal number that caused an exit.
88 stopped = 0x7F
100 func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&mask != 0 }
104 if sig == stopped || sig == 0 {
112 func (w WaitStatus) Stopped() bool { return w&mask == stopped && Signal(w>>shift) != SIGSTOP }
114 func (w WaitStatus) Continued() bool { return w&mask == stopped && Signal(w>>shift) == SIGSTOP }
117 if !w.Stopped() {
87 stopped = 0x7F const
syscall_solaris.go 203 // 0x7F (stopped), or a signal number that caused an exit.
216 stopped = 0x7F
228 func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&mask != 0 }
232 if sig == stopped || sig == 0 {
240 func (w WaitStatus) Stopped() bool { return w&mask == stopped && Signal(w>>shift) != SIGSTOP }
242 func (w WaitStatus) Continued() bool { return w&mask == stopped && Signal(w>>shift) == SIGSTOP }
245 if !w.Stopped() {
215 stopped = 0x7F const
  /external/autotest/client/tests/signaltest/src/
signaltest.c 100 int stopped = 0; local
176 if (!stopped && tracelimit && (diff > tracelimit)) {
177 stopped++;
  /external/libopus/src/
mlp_train.c 38 int stopped = 0; variable
42 stopped = 1;
395 if (stopped)
  /external/nos/host/android/manual_tests/
test_citadel.c 633 static int stopped; variable
636 stopped = 1;
646 stopped = 0;
668 } while (prev == curr && !stopped);
682 } while (prev == curr && !stopped);
944 debug(1, "We stopped citadeld earlier, so start it up again\n");
  /external/valgrind/coregrind/
vgdb-invoker-ptrace.c 243 /* Wait till the process pid is reported as stopped with signal_expected.
246 Returns True when process is in stopped state with signal_expected.
248 to be stopped.
331 /* Stops the given pid, wait for the process to be stopped.
350 /* Attaches to given pid, wait for the process to be stopped.
796 Bool stopped; local
    [all...]
  /frameworks/opt/net/voip/src/java/com/android/server/sip/
SipWakeupTimer.java 75 private boolean stopped() { method in class:SipWakeupTimer
77 if (DBG) log("Timer stopped");
152 if (stopped()) return;
178 if (stopped() || mEventQueue.isEmpty()) return;
208 if (stopped() || mEventQueue.isEmpty()) return;
256 if (stopped() || mEventQueue.isEmpty()) return;
  /packages/apps/Messaging/src/android/support/v7/mms/
MmsService.java 425 Boolean stopped = null; local
428 stopped = stopSelfResult(mLastStartId);
431 logServiceStop(stopped);
437 * @param stopped Not empty if service stop is performed: true if really stopped, false
440 private void logServiceStop(final Boolean stopped) {
441 if (stopped != null) {
442 if (stopped) {
443 Log.i(TAG, "Service successfully stopped");
  /external/autotest/client/tests/cyclictest/src/
cyclictest.c 209 int stopped = 0; local
322 if (!stopped && tracelimit && (diff > tracelimit)) {
323 stopped++;
  /external/guava/guava/src/com/google/common/util/concurrent/
ServiceManager.java 92 * public void stopped() {}
120 * service failure and to ensure that when the JVM is shutting down all the services are stopped.
133 private static final Callback<Listener> STOPPED_CALLBACK = new Callback<Listener>("stopped()") {
135 listener.stopped();
164 public void stopped() {} method in class:ServiceManager.Listener
282 // This can happen if the service has already been started or stopped (e.g. by another
348 * @throws TimeoutException if not all of the services have stopped within the deadline
565 + "services have not stopped: "
  /frameworks/base/media/jni/soundpool/
SoundPool.cpp 980 bool stopped; local
983 stopped = doStop_l();
986 if (stopped) {
    [all...]

Completed in 1839 milliseconds

1 2 3 4 5 6 7