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

12345

/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
98 multi_perform(m, &running);
102 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
116 while (running) {
124 multi_perform(m, &running);
132 if(!running)
/external/libchrome/base/
H A Drun_loop.h52 bool running() const { return running_; } function in class:base::RunLoop
58 // RunLoop has already finished running has no effect.
61 // targetted message loop. If a nested message loop continues running, the
/external/v8/test/mjsunit/
H A Ddebug-backtrace.js72 ParsedResponse.prototype.running = function() {
73 return this.response_.running;
123 assertFalse(response.running(), "expected not running");
244 // New copy of debug command processor in running state.
253 assertTrue(response.running(), "expected running");
H A Ddebug-return-value.js54 ParsedResponse.prototype.running = function() {
55 return this.response_.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/opencv3/samples/tapi/
H A Dbgfg_segm.cpp75 bool running=true; local
78 if(!running)
113 running = false;
/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/opencv3/modules/videoio/include/opencv2/videoio/
H A Dcap_ios.h52 BOOL running; variable
70 @property (nonatomic, readonly) BOOL running; variable
/external/autotest/client/cros/
H A Dhostapd_server.py138 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.
/external/curl/lib/
H A Dcookie.h53 bool running; /* state info, for cookie adding information */ member in struct:CookieInfo

Completed in 603 milliseconds

12345