/third_party/pulseaudio/src/tests/ |
D | lock-autospawn-test.c | 91 pa_assert_se((a = pa_thread_new("test1", thread_func, PA_INT_TO_PTR(1)))); in START_TEST() 92 pa_assert_se((b = pa_thread_new("test2", thread_func2, PA_INT_TO_PTR(2)))); in START_TEST() 93 pa_assert_se((c = pa_thread_new("test3", thread_func2, PA_INT_TO_PTR(3)))); in START_TEST() 94 pa_assert_se((d = pa_thread_new("test4", thread_func, PA_INT_TO_PTR(4)))); in START_TEST()
|
D | asyncq-test.c | 78 t1 = pa_thread_new("producer", producer, q); in START_TEST() 80 t2 = pa_thread_new("consumer", consumer, q); in START_TEST()
|
D | atomic-test.c | 104 thread1 = pa_thread_new("left", &write_func, &io1); in START_TEST() 108 thread2 = pa_thread_new("right", &read_func, &io2); in START_TEST()
|
D | flist-test.c | 88 threads[i] = pa_thread_new("test", thread_func, pa_sprintf_malloc("Thread #%i", i+1)); in main()
|
D | rtstutter.c | 122 pa_assert_se(pa_thread_new("rtstutter", work, PA_UINT_TO_PTR(n))); in main()
|
D | asyncmsgq-test.c | 81 t = pa_thread_new("test", the_thread, q); in START_TEST()
|
D | once-test.c | 102 threads[i] = pa_thread_new("once", thread_func, pa_sprintf_malloc("Thread #%i", i+1)); in START_TEST()
|
D | thread-test.c | 107 t[i] = pa_thread_new("test", thread_func, pa_sprintf_malloc("Thread #%i", i+1)); in START_TEST()
|
/third_party/pulseaudio/src/pulsecore/ |
D | thread.h | 38 pa_thread* pa_thread_new(const char *name, pa_thread_func_t thread_func, void *userdata);
|
D | thread-win32.c | 71 pa_thread* pa_thread_new(const char *name, pa_thread_func_t thread_func, void *userdata) { in pa_thread_new() function
|
D | thread-posix.c | 87 pa_thread* pa_thread_new(const char *name, pa_thread_func_t thread_func, void *userdata) { in pa_thread_new() function
|
D | lock-autospawn.c | 257 if (!(thread = pa_thread_new("autospawn", thread_func, NULL))) in start_thread()
|
/third_party/pulseaudio/src/pulse/ |
D | thread-mainloop.c | 153 if (!(m->thread = pa_thread_new(m->name ? m->name : "threaded-ml", thread, m))) in pa_threaded_mainloop_start()
|
/third_party/pulseaudio/src/modules/ |
D | module-null-source.c | 256 if (!(u->thread = pa_thread_new("null-source", thread_func, u))) { in pa__init()
|
D | module-sine-source.c | 276 if (!(u->thread = pa_thread_new("sine-source", thread_func, u))) { in pa__init()
|
D | module-pipe-source.c | 305 if (!(u->thread = pa_thread_new("pipe-source", thread_func, u))) { in pa__init()
|
D | module-null-sink.c | 399 if (!(u->thread = pa_thread_new("null-sink", thread_func, u))) { in pa__init()
|
D | module-tunnel-sink-new.c | 570 if (!(u->thread = pa_thread_new("tunnel-sink", thread_func, u))) { in pa__init()
|
D | module-tunnel-source-new.c | 564 if (!(u->thread = pa_thread_new("tunnel-source", thread_func, u))) { in pa__init()
|
D | module-pipe-sink.c | 548 if (!(u->thread = pa_thread_new("pipe-sink", thread_routine, u))) { in pa__init()
|
D | module-esound-sink.c | 660 if (!(u->thread = pa_thread_new("esound-sink", thread_func, u))) { in pa__init()
|
D | module-waveout.c | 745 if (!(u->thread = pa_thread_new("waveout", thread_func, u))) { in pa__init()
|
/third_party/pulseaudio/src/modules/jack/ |
D | module-jack-source.c | 372 if (!(u->thread = pa_thread_new("jack-source", thread_func, u))) { in pa__init()
|
D | module-jack-sink.c | 432 if (!(u->thread = pa_thread_new("jack-sink", thread_func, u))) { in pa__init()
|
/third_party/pulseaudio/src/modules/raop/ |
D | raop-sink.c | 894 if (!(u->thread = pa_thread_new(thread_name, thread_func, u))) { in pa_raop_sink_new()
|