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

1 2 3 4 5 6 7 8 91011

  /external/linux-kselftest/tools/testing/selftests/powerpc/pmu/
event.h 22 u64 running; member in struct:event::__anon24821
  /external/curl/tests/libtest/
lib502.c 39 int running; local
61 multi_perform(m, &running);
65 if(!running)
lib503.c 43 int running; local
71 multi_perform(m, &running);
75 if(!running)
lib504.c 43 int running; local
51 /* The point here is that there must not be anything running on the given
71 multi_perform(m, &running);
75 if(!running) {
79 fprintf(stderr, "Expected: not running\n");
86 fprintf(stderr, "running == %d\n", running);
lib525.c 41 int running; local
123 multi_perform(m, &running);
127 if(!running)
lib526.c 57 int running; local
92 multi_perform(m, &running);
96 if(!running) {
lib530.c 36 int running; local
82 multi_perform(m, &running);
86 if(!running) {
lib533.c 38 int running; local
66 multi_perform(m, &running);
70 if(!running) {
lib555.c 82 int running=1; local
117 while(running) {
125 multi_perform(m, &running);
133 if(!running)
lib564.c 36 int running; local
64 multi_perform(m, &running);
68 if(!running)
lib573.c 40 int running = 1; local
68 while(running) {
76 multi_perform(m, &running);
80 if(!running)
lib1506.c 36 int running; local
100 multi_perform(m, &running);
104 if(!running)
lib591.c 43 int running; local
99 multi_perform(multi, &running);
103 if(!running)
lib597.c 56 int running; local
100 multi_perform(multi, &running);
104 if(!running)
  /external/libchrome/base/
run_loop.h 45 bool running() const { return running_; } function in class:base::RunLoop
54 // QuitWhenIdle() after the RunLoop has already finished running has no
59 // running, the target may NEVER terminate. It is very easy to livelock (run
  /external/linux-kselftest/tools/testing/selftests/powerpc/math/
fpu_preempt.c 42 int running; variable
44 extern void preempt_fpu(double *darray, int *threads_starting, int *running);
54 preempt_fpu(darray, &threads_starting, &running);
68 running = true;
89 * r5 will have loaded the value of running.
91 running = 0;
vmx_preempt.c 42 int running; variable
44 extern void preempt_vmx(vector int *varray, int *threads_starting, int *running);
55 preempt_vmx(varray, &threads_starting, &running);
68 running = true;
89 * r5 will have loaded the value of running.
91 running = 0;
fpu_signal.c 40 int running; variable
42 extern long preempt_fpu(double *darray, int *threads_starting, int *running);
74 rc = preempt_fpu(darray, &threads_starting, &running);
89 running = true;
112 running = 0;
vmx_signal.c 42 int running; variable
92 rc = preempt_vmx(varray, &threads_starting, &running);
107 running = true;
133 running = 0;
  /external/syslinux/gpxe/src/include/gpxe/
retry.h 24 /** Timer is currently running */
25 unsigned int running; member in struct:retry_timer
64 * This starts the timer running with a zero timeout value.
71 * Test to see if timer is currently running
74 * @ret running Non-zero if timer is running
78 return ( timer->running );
  /external/valgrind/none/tests/x86/
yield.c 14 static volatile int alive, running; variable
24 running++;
39 running++;
66 while(running < 2)
  /external/webrtc/webrtc/modules/audio_coding/neteq/
post_decode_vad.h 54 bool running() const { return running_; } function in class:webrtc::PostDecodeVad
  /external/autotest/client/profilers/powertop/src/
suggestions.c 104 int value, running = 0; local
124 running += ptr->weight;
126 running += 50;
127 if (running > value) {
  /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_self/
stress.c 19 * Therefore, it never returns the same value for 2 different running threads.
112 /* Signaled when all threads are running */
117 pthread_t running[NSCENAR]; variable
137 running[me] = pthread_self();
139 /* Signal we're running */
244 /* Now wait that all threads are running */
246 if (status[sc] == 0) { /* The new thread is running */
273 if (status[sc] != 0) /* The new thread is running */
276 if (pthread_equal(creation[sc], running[sc]) == 0) {
281 running[sc])
    [all...]
  /external/autotest/client/cros/
hostapd_server.py 138 def running(self): function
139 """Tests whether the hostapd process is still running.
141 @return True if the hostapd process is still running, False otherwise.

Completed in 721 milliseconds

1 2 3 4 5 6 7 8 91011