Searched defs:running (Results 1 - 25 of 125) sorted by relevance

12345

/external/linux-kselftest/tools/testing/selftests/powerpc/pmu/
H A Devent.h22 u64 running; member in struct:event::__anon12191
/external/curl/tests/libtest/
H A Dlib502.c39 int running; local
61 multi_perform(m, &running);
65 if(!running)
H A Dlib503.c43 int running; local
71 multi_perform(m, &running);
75 if(!running)
H A Dlib504.c43 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);
H A Dlib525.c41 int running; local
123 multi_perform(m, &running);
127 if(!running)
H A Dlib526.c57 int running; local
92 multi_perform(m, &running);
96 if(!running) {
H A Dlib530.c36 int running; local
82 multi_perform(m, &running);
86 if(!running) {
H A Dlib533.c38 int running; local
66 multi_perform(m, &running);
70 if(!running) {
H A Dlib564.c36 int running; local
64 multi_perform(m, &running);
68 if(!running)
H A Dlib573.c40 int running = 1; local
68 while(running) {
76 multi_perform(m, &running);
80 if(!running)
H A Dlib1506.c36 int running; local
100 multi_perform(m, &running);
104 if(!running)
H A Dlib591.c43 int running; local
99 multi_perform(multi, &running);
103 if(!running)
H A Dlib597.c56 int running; local
100 multi_perform(multi, &running);
104 if(!running)
H A Dlib555.c82 int running=1; local
117 while(running) {
125 multi_perform(m, &running);
133 if(!running)
/external/libchrome/base/
H A Drun_loop.h45 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/
H A Dfpu_preempt.c42 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;
H A Dvmx_preempt.c42 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;
H A Dfpu_signal.c40 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;
/external/syslinux/gpxe/src/include/gpxe/
H A Dretry.h24 /** 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/
H A Dyield.c14 static volatile int alive, running; variable
24 running++;
39 running++;
66 while(running < 2)
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/util/
H A DLooperExecutor.java28 private boolean running = false; field in class:LooperExecutor
44 if (running) {
47 running = true;
57 running = false;
64 if (!running) {
67 running = false;
84 if (!running) {
/external/webrtc/webrtc/modules/audio_coding/neteq/
H A Dpost_decode_vad.h54 bool running() const { return running_; } function in class:webrtc::PostDecodeVad
/external/zxing/qr_scanner/src/com/google/zxing/client/android/
H A DDecodeHandler.java40 private boolean running = true; field in class:DecodeHandler
50 if (!running) {
56 running = false;
/external/autotest/client/profilers/powertop/src/
H A Dsuggestions.c104 int value, running = 0; local
124 running += ptr->weight;
126 running += 50;
127 if (running > value) {
/external/compiler-rt/test/tsan/
H A Ddebugging.cc23 unsigned long *os_id, int *running,
94 int running; local
98 __tsan_get_report_thread(report, 0, &tid, &os_id, &running, &name, &parent_tid, trace, 16);
102 __tsan_get_report_thread(report, 1, &tid, &os_id, &running, &name, &parent_tid, trace, 16);

Completed in 852 milliseconds

12345