/third_party/ltp/pan/ |
H A D | ltp-pan.c | 106 static void pids_running(struct tag_pgrp *running, int keep_active); 107 static int check_pids(struct tag_pgrp *running, int *num_active, 112 static void propagate_signal(struct tag_pgrp *running, int keep_active, 120 static void copy_buffered_output(struct tag_pgrp *running); 121 static void write_test_start(struct tag_pgrp *running, int no_kmsg); 122 static void write_test_end(struct tag_pgrp *running, const char *init_status, 147 #define Drunning 0x000010 /* current pids running */ 163 struct tag_pgrp *running; in main() local 298 case 'x': /* number of tags to keep running */ in main() 379 running in main() 677 propagate_signal(struct tag_pgrp *running, int keep_active, struct orphan_pgrp *orphans) propagate_signal() argument 713 check_pids(struct tag_pgrp *running, int *num_active, int keep_active, FILE *logfile, FILE *failcmdfile, FILE *tconfcmdfile, struct orphan_pgrp *orphans, int fmt_print, int *failcnt, int *tconfcnt, int quiet_mode, int no_kmsg) check_pids() argument 1355 copy_buffered_output(struct tag_pgrp *running) copy_buffered_output() argument 1387 write_test_start(struct tag_pgrp *running, int no_kmsg) write_test_start() argument 1408 write_test_end(struct tag_pgrp *running, const char *init_status, time_t exit_time, char *term_type, int stat_loc, int term_id, struct tms *tms1, struct tms *tms2) write_test_end() argument 1428 pids_running(struct tag_pgrp *running, int keep_active) pids_running() argument [all...] |
/third_party/python/Lib/turtledemo/ |
H A D | round_dance.py | 28 global running 29 running = False 32 global running 66 running = True 70 while running:
|
/third_party/node/deps/v8/src/heap/ |
H A D | safepoint.cc | 47 size_t running = SetSafepointRequestedFlags(IncludeMainThread::kNo); in EnterLocalSafepointScope() local 48 barrier_.WaitUntilRunningThreadsInSafepoint(running); in EnterLocalSafepointScope() 55 void set_locked_and_running(size_t running) { in set_locked_and_running() argument 57 running_ = running; in set_locked_and_running() 65 size_t running() const { return running_; } in running() function in v8::internal::final 110 size_t running = in InitiateGlobalSafepointScopeRaw() local 112 client_data->set_locked_and_running(running); in InitiateGlobalSafepointScopeRaw() 131 size_t running = 0; in SetSafepointRequestedFlags() local 146 if (old_state.IsRunning()) running++; in SetSafepointRequestedFlags() 152 return running; in SetSafepointRequestedFlags() 227 WaitUntilRunningThreadsInSafepoint( size_t running) WaitUntilRunningThreadsInSafepoint() argument [all...] |
/third_party/curl/tests/libtest/ |
H A D | lib573.c | 42 int running = 1; in test() local 70 while(running) { in test() 78 multi_perform(m, &running); in test() 82 if(!running) in test()
|
H A D | lib504.c | 45 int running; in test() local 53 /* The point here is that there must not be anything running on the given in test() 73 multi_perform(m, &running); in test() 77 if(!running) { in test() 81 fprintf(stderr, "Expected: not running\n"); in test() 88 fprintf(stderr, "running == %d\n", running); in test()
|
H A D | libntlmconnect.c | 95 int running; in test() local 157 multi_perform(multi, &running); in test() 159 fprintf(stderr, "%s:%d running %d state %d\n", in test() 160 __FILE__, __LINE__, running, state); in test() 164 if(!running && state == NoMoreHandles) in test() 191 fprintf(stderr, "%s:%d num_handles %d timeout %ld running %d\n", in test() 192 __FILE__, __LINE__, num_handles, timeout, running); in test() 211 if(!running && num_handles == MAX_EASY_HANDLES) { in test()
|
H A D | lib502.c | 41 int running; in test() local 63 multi_perform(m, &running); in test() 67 if(!running) in test()
|
H A D | lib564.c | 38 int running; in test() local 66 multi_perform(m, &running); in test() 70 if(!running) in test()
|
H A D | lib555.c | 85 int running = 1; in test() local 118 while(running) { in test() 126 multi_perform(m, &running); in test() 130 if(!running) in test()
|
H A D | lib503.c | 45 int running; in test() local 73 multi_perform(m, &running); in test() 77 if(!running) in test()
|
H A D | lib533.c | 40 int running; in test() local 68 multi_perform(m, &running); in test() 72 if(!running) { in test()
|
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/runner/ |
H A D | HistogramWriter.cpp | 202 const proto::RunningStatistics &running = histogram.running(); in getAsJSON() local 206 js::Value count(running.count()); in getAsJSON() 207 js::Value max(running.max()); in getAsJSON() 208 js::Value meanlogs(running.meanlogs()); in getAsJSON() 209 js::Value mean(running.mean()); in getAsJSON() 210 js::Value min(running.min()); in getAsJSON() 211 js::Value sum(running.sum()); in getAsJSON() 212 js::Value variance(running.variance()); in getAsJSON() 222 obj.AddMember("running", stat in getAsJSON() [all...] |
/third_party/pulseaudio/src/pulsecore/ |
H A D | thread-posix.c | 43 pa_atomic_t running; member 80 pa_atomic_inc(&t->running); in internal_thread_func() 82 pa_atomic_sub(&t->running, 2); in internal_thread_func() 102 pa_atomic_inc(&t->running); in pa_thread_new() 111 * thread is still running. See in pa_thread_is_running() 116 return pa_atomic_load(&t->running) > 0; in pa_thread_is_running() 158 pa_atomic_store(&t->running, 2); in pa_thread_self()
|
/third_party/glfw/tests/ |
H A D | empty.c | 41 static volatile int running = GLFW_TRUE; variable 52 while (running) in thread_main() 107 while (running) in main() 123 running = GLFW_FALSE; in main()
|
H A D | threads.c | 50 static volatile int running = GLFW_TRUE; variable 70 while (running) in thread_main() 132 while (running) in main() 139 running = GLFW_FALSE; in main()
|
/third_party/node/tools/ |
H A D | test-v8.bat | 14 echo running 'python tools\dev\v8gen.py %test_args%' 17 echo running 'ninja -C out.gn/%test_args% %v8_build_options%' 23 echo running 'python tools\run-tests.py %common_v8_test_options% %v8_test_options% --slow-tests-cutoff 1000000 --json-test-results v8-tap.xml' 29 echo running 'python tools\run-tests.py %common_v8_test_options% intl --slow-tests-cutoff 1000000 --json-test-results v8-intl-tap.xml' 35 echo running 'python tools\run-tests.py %common_v8_test_options% benchmarks --slow-tests-cutoff 1000000 --json-test-results v8-benchmarks-tap.xml'
|
/third_party/skia/third_party/externals/microhttpd/src/testcurl/ |
H A D | test_callback.c | 96 int running; in main() local 137 curl_multi_perform (multi, &running); in main() 164 curl_multi_perform (multi, &running); in main() 165 if (running == 0) in main() 167 msg = curl_multi_info_read (multi, &running); in main()
|
H A D | test_parse_cookies.c | 121 int running; in testExternalGet() local 178 curl_multi_perform (multi, &running); in testExternalGet() 199 curl_multi_perform (multi, &running); in testExternalGet() 200 if (running == 0) in testExternalGet() 202 msg = curl_multi_info_read (multi, &running); in testExternalGet()
|
/third_party/python/Lib/test/ |
H A D | test_thread.py | 35 self.running = 0 50 self.running += 1 59 self.running -= 1 60 if self.created == NUMTASKS and self.running == 0: 189 self.running = NUMTASKS 213 self.running -= 1 217 finished = self.running == 0
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
H A D | MeasureUnitThreadTest.java | 41 volatile boolean running = true; field in MeasureUnitThreadTest.NumericMeasureThread 53 while (running) { in run() 81 t1.running = false; in NumericRaceTest() 82 t2.running = false; in NumericRaceTest()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
H A D | MeasureUnitThreadTest.java | 44 volatile boolean running = true; field in MeasureUnitThreadTest.NumericMeasureThread 56 while (running) { in run() 84 t1.running = false; in NumericRaceTest() 85 t2.running = false; in NumericRaceTest()
|
/third_party/skia/third_party/externals/angle2/samples/WindowTest/ |
H A D | WindowTest.cpp | 30 bool running = true; in main() local 31 while (running) in main() 38 running = false; in main() 51 running = false; in main()
|
/third_party/node/benchmark/tls/ |
H A D | tls-connect.js | 15 let running = true; 55 if (running) makeConnection(); 60 running = false;
|
/third_party/python/Lib/test/libregrtest/ |
H A D | runtest_mp.py | 28 # Display the running tests if nothing happened last N seconds 155 info.append("running") 226 # self._popen is still running. Call again kill() 359 running = [] 367 running.append(text) 368 return running 425 running = get_running(self.workers) 426 if running and not self.ns.pgo: 427 self.log('running: %s' % ', '.join(running)) [all...] |
/third_party/libcoap/examples/riot/examples_libcoap_server/ |
H A D | server-coap.c | 23 static volatile int running = 0; variable 221 running = 0; in server_coap_run() 236 if (running) { in start_server() 237 puts("Error: server already running"); in start_server() 259 running = 1; in start_server() 266 /* check if server is running at all */ in stop_server() 267 if (running == 0) { in stop_server() 268 puts("Error: libcoap server is not running"); in stop_server()
|