Home
last modified time | relevance | path

Searched refs:thread_run (Results 1 – 20 of 20) sorted by relevance

/external/igt-gpu-tools/tests/i915/
Dgem_tiled_swapping.c127 static void *thread_run(void *data) in thread_run() function
213 thread_run(&threads[0]);
214 thread_run(&threads[0]);
215 thread_run(&threads[0]);
227 thread_run(&threads[0]);
229 pthread_create(&threads[n].thread, NULL, thread_run, &threads[n]);
232 thread_run(&threads[0]);
/external/crosvm/devices/src/pci/ac97_bus_master/sys/
Dwindows.rs204 thread_info.thread_run.store(true, Ordering::Relaxed); in start_audio()
205 let thread_run = thread_info.thread_run.clone(); in start_audio() localVariable
229 audio_in_thread(thread_regs, thread_mem, &thread_run, input_stream) in start_audio()
233 thread_run.store(false, Ordering::Relaxed); in start_audio()
270 &thread_run, in start_audio()
278 thread_run.store(false, Ordering::Relaxed); in start_audio()
411 thread_run: &AtomicBool, in audio_out_thread()
417 while thread_run.load(Ordering::Relaxed) { in audio_out_thread()
506 thread_run: &AtomicBool, in audio_in_thread()
509 while thread_run.load(Ordering::Relaxed) { in audio_in_thread()
Dunix.rs87 self.thread_run.store(true, Ordering::Relaxed); in start()
99 worker.thread_run.store(false, Ordering::Relaxed); in start()
313 thread_run: Arc<AtomicBool>, field
333 thread_run: bus_master.thread_info(args.func).thread_run.clone(), in new()
353 'audio_loop: while self.thread_run.load(Ordering::Relaxed) { in run()
358 if !self.thread_run.load(Ordering::Relaxed) { in run()
/external/ltp/testcases/kernel/pty/
Dpty05.c39 static void *thread_run(void *arg) in thread_run() function
54 tst_fzsync_pair_reset(&fzsync_pair, thread_run); in run()
/external/ltp/testcases/kernel/crypto/
Daf_alg07.c61 static void *thread_run(void *arg) in thread_run() function
74 tst_fzsync_pair_reset(&fzsync_pair, thread_run); in run()
/external/ltp/testcases/kernel/syscalls/bind/
Dbind06.c59 static void *thread_run(void *arg) in thread_run() function
74 tst_fzsync_pair_reset(&fzsync_pair, thread_run); in run()
/external/ltp/testcases/kernel/syscalls/setsockopt/
Dsetsockopt06.c41 static void *thread_run(void *arg) in thread_run() function
69 tst_fzsync_pair_reset(&fzsync_pair, thread_run); in run()
Dsetsockopt07.c49 static void *thread_run(void *arg) in thread_run() function
74 tst_fzsync_pair_reset(&fzsync_pair, thread_run); in run()
/external/ltp/testcases/kernel/syscalls/timerfd/
Dtimerfd_settime02.c70 static void *thread_run(void *arg) in thread_run() function
83 tst_fzsync_pair_reset(&fzsync_pair, thread_run); in run()
/external/ltp/testcases/kernel/syscalls/sendmsg/
Dsendmsg03.c66 static void *thread_run(void *arg) in thread_run() function
83 tst_fzsync_pair_reset(&fzsync_pair, thread_run); in run()
/external/ltp/testcases/kernel/sound/
Dsnd_seq01.c90 static void *thread_run(void *arg) in thread_run() function
103 tst_fzsync_pair_reset(&fzsync_pair, thread_run); in run()
/external/ltp/testcases/network/can/cve/
Dcan_bcm01.c64 static void *thread_run(void *arg) in thread_run() function
111 tst_fzsync_pair_reset(&fzsync_pair, thread_run); in run()
/external/ltp/testcases/kernel/syscalls/writev/
Dwritev03.c55 static void *thread_run(void *arg) in thread_run() function
92 tst_fzsync_pair_reset(&fzsync_pair, thread_run); in run()
/external/ltp/testcases/kernel/mem/thp/
Dthp04.c102 static void *thread_run(void *arg) in thread_run() function
124 tst_fzsync_pair_reset(&fzsync_pair, thread_run); in run()
/external/tensorflow/tensorflow/python/kernel_tests/data_structures/
Dstage_op_test.py204 def thread_run(): function
209 t = threading.Thread(target=thread_run)
264 def thread_run(): function
269 t = threading.Thread(target=thread_run)
Dmap_stage_op_test.py212 def thread_run(): function
217 t = threading.Thread(target=thread_run)
272 def thread_run(): function
278 t = threading.Thread(target=thread_run)
/external/ltp/utils/benchmark/ebizzy-0.3/
Debizzy.c424 static void *thread_run(void *arg __attribute__((unused))) in thread_run() function
463 err = pthread_create(&thread_array[i], NULL, thread_run, NULL); in start_threads()
/external/crosvm/devices/src/pci/
Dac97_bus_master.rs124 thread_run: Arc<AtomicBool>, field
133 thread_run: Arc::new(AtomicBool::new(false)), in new()
140 self.thread_run.load(Ordering::Relaxed) in is_running()
144 self.thread_run.store(false, Ordering::Relaxed); in stop()
/external/libtracefs/Documentation/
Dlibtracefs-cpu.txt122 static void *thread_run(void *arg)
177 pthread_create(&thread, NULL, thread_run, &data);
/external/python/cpython3/Modules/
D_threadmodule.c1079 thread_run(void *boot_raw) in thread_run() function
1160 unsigned long ident = PyThread_start_new_thread(thread_run, (void*) boot); in thread_PyThread_start_new_thread()