Lines Matching defs:userdata
70 struct userdata { struct
71 pa_sink *sink;
72 pa_source *source;
73 pa_core *core;
74 pa_usec_t poll_timeout;
76 pa_thread *thread;
77 pa_thread_mq thread_mq;
78 pa_rtpoll *rtpoll;
80 uint32_t fragments, fragment_size;
82 uint32_t free_ofrags, free_ifrags;
84 DWORD written_bytes;
85 int sink_underflow;
87 int cur_ohdr, cur_ihdr;
88 WAVEHDR *ohdrs, *ihdrs;
90 HWAVEOUT hwo;
91 HWAVEIN hwi;
92 pa_module *module;
117 static void do_write(struct userdata *u) { in do_write() argument
248 static void thread_func(void *userdata) { in thread_func()