Lines Matching defs:in_synth
115 static int spk_ttyio_out(struct spk_synth *in_synth, const char ch);
116 static int spk_ttyio_out_unicode(struct spk_synth *in_synth, u16 ch);
122 static int spk_ttyio_wait_for_xmitr(struct spk_synth *in_synth);
222 static int spk_ttyio_out(struct spk_synth *in_synth, const char ch)
225 if (in_synth->alive && speakup_tty && speakup_tty->ops->write) {
234 in_synth->long_name);
239 in_synth->alive = 0;
250 static int spk_ttyio_out_unicode(struct spk_synth *in_synth, u16 ch)
255 ret = spk_ttyio_out(in_synth, ch);
257 ret = spk_ttyio_out(in_synth, 0xc0 | (ch >> 6));
258 ret &= spk_ttyio_out(in_synth, 0x80 | (ch & 0x3f));
260 ret = spk_ttyio_out(in_synth, 0xe0 | (ch >> 12));
261 ret &= spk_ttyio_out(in_synth, 0x80 | ((ch >> 6) & 0x3f));
262 ret &= spk_ttyio_out(in_synth, 0x80 | (ch & 0x3f));
310 static int spk_ttyio_wait_for_xmitr(struct spk_synth *in_synth)