Lines Matching refs:msg
58 func Ch_requestHandler(handle, msg) argument
60 let g:Ch_responseMsg = a:msg
319 func Ch_handler(chan, msg) argument
322 let g:Ch_reply = a:msg
358 func Ch_zeroHandler(chan, msg) argument
360 let g:Ch_reply = a:msg
364 func Ch_oneHandler(chan, msg) argument
366 let g:Ch_zero_reply = a:msg
421 func Ch_handleRaw1(chan, msg) argument
423 let g:Ch_reply1 = a:msg
427 func Ch_handleRaw2(chan, msg) argument
429 let g:Ch_reply2 = a:msg
433 func Ch_handleRaw3(chan, msg) argument
435 let g:Ch_reply3 = a:msg
533 let msg = ch_readraw(job)
534 call assert_equal("something\n", substitute(msg, "\r", "", 'g'))
540 let msg = ch_readraw(job)
541 call assert_equal("this\nAND this\n", substitute(msg, "\r", "", 'g'))
611 let msg = job->ch_readblob()
614 call assert_equal(char2nr(expected[i]), msg[i])
1213 func dict.outHandler(chan, msg) dict argument
1214 if type(a:msg) == v:t_string
1215 let g:Ch_outmsg = self.thisis . a:msg
1217 let g:Ch_outobj = a:msg
1220 func dict.errHandler(chan, msg) dict argument
1221 let g:Ch_errmsg = self.thisis . a:msg
1257 func! OutHandler(chan, msg) argument
1259 let g:Ch_msg1 = a:msg
1321 \ {'out_cb': {ch, msg -> execute("let g:Ch_outmsg = 'lambda: ' . msg")},
1323 \ 'err_cb': {ch, msg -> execute(":let g:Ch_errmsg = 'lambda: ' . msg")},
1389 func s:UnletHandler(handle, msg) argument
1390 let g:Ch_unletResponse = a:msg
1413 func Ch_CloseHandler(handle, msg) argument
1414 let g:Ch_unletResponse = a:msg
1871 let job = job_start(cmd, {'callback': {ch,msg -> execute(":let g:echostr .= msg")}})
1887 …call job_start(cmd, {'callback': {ch,msg -> execute(":let g:envstr .= msg")}, 'env': {'FOO': 'bar'…
1902 let job = job_start(cmd, {'callback': {ch,msg -> execute(":let g:envstr .= msg")}, 'cwd': expect})
1943 …let job = job_start([s:python, '-c', a:cmd], {'callback': {ch, msg -> execute('let g:out .= msg')}…
1999 func OutCb(chan, msg) argument
2041 \ 'callback': {ch, msg -> execute('let g:out .= msg')}})
2120 let msg = printf('option={"in_io": "%s", "out_io": "%s", "err_io": "%s"}',
2126 call assert_notequal('', info.tty_in, msg)
2128 call assert_equal('', info.tty_in, msg)
2130 call assert_equal(info.tty_in, info.tty_out, msg)