Lines Matching refs:channel

1201 write_to_term(buf_T *buffer, char_u *msg, channel_T *channel)  in write_to_term()  argument
1211 ch_log(channel, "Writing %d bytes to output file", (int)len); in write_to_term()
1219 ch_log(channel, "NOT writing %d bytes to terminal", (int)len); in write_to_term()
1222 ch_log(channel, "writing %d bytes to terminal", (int)len); in write_to_term()
4272 handle_call_command(term_T *term, channel_T *channel, listitem_T *item) in handle_call_command() argument
4281 ch_log(channel, "Missing function arguments for call"); in handle_call_command()
4288 ch_log(channel, "Unpermitted function: %s", func); in handle_call_command()
4302 ch_log(channel, "Function %s called", func); in handle_call_command()
4305 ch_log(channel, "Calling function %s failed", func); in handle_call_command()
4385 channel_T *channel = term->tl_job == NULL ? NULL in parse_osc() local
4421 ch_log(channel, "Missing command"); in parse_osc()
4432 ch_log(channel, "Missing argument for %s", cmd); in parse_osc()
4436 handle_call_command(term, channel, item); in parse_osc()
4438 ch_log(channel, "Invalid command received: %s", cmd); in parse_osc()
4443 ch_log(channel, "Invalid JSON received"); in parse_osc()
6585 channel_T *channel = NULL; in conpty_term_and_job_init() local
6667 channel = add_channel(); in conpty_term_and_job_init()
6668 if (channel == NULL) in conpty_term_and_job_init()
6700 channel_set_pipes(channel, in conpty_term_and_job_init()
6706 channel->ch_write_text_mode = TRUE; in conpty_term_and_job_init()
6709 channel->ch_anonymous_pipe = TRUE; in conpty_term_and_job_init()
6740 channel_set_job(channel, job, opt); in conpty_term_and_job_init()
6743 job->jv_channel = channel; in conpty_term_and_job_init()
6758 ch_log(channel, "Opening output file %s", fname); in conpty_term_and_job_init()
6772 if (channel != NULL) in conpty_term_and_job_init()
6773 channel_clear(channel); in conpty_term_and_job_init()
6936 channel_T *channel = NULL; in winpty_term_and_job_init() local
7001 channel = add_channel(); in winpty_term_and_job_init()
7002 if (channel == NULL) in winpty_term_and_job_init()
7028 channel_set_pipes(channel, in winpty_term_and_job_init()
7043 channel->ch_write_text_mode = TRUE; in winpty_term_and_job_init()
7071 channel_set_job(channel, job, opt); in winpty_term_and_job_init()
7074 job->jv_channel = channel; in winpty_term_and_job_init()
7094 ch_log(channel, "Opening output file %s", fname); in winpty_term_and_job_init()
7109 if (channel != NULL) in winpty_term_and_job_init()
7110 channel_clear(channel); in winpty_term_and_job_init()
7201 channel_T *channel = NULL; in create_pty_only() local
7237 channel = add_channel(); in create_pty_only()
7238 if (channel == NULL) in create_pty_only()
7240 term->tl_job->jv_channel = channel; in create_pty_only()
7241 channel->ch_keep_open = TRUE; in create_pty_only()
7242 channel->ch_named_pipe = TRUE; in create_pty_only()
7244 channel_set_pipes(channel, in create_pty_only()
7248 channel_set_job(channel, term->tl_job, options); in create_pty_only()