Home
last modified time | relevance | path

Searched refs:stdin_buffer (Results 1 – 1 of 1) sorted by relevance

/external/openssh/
Dclientloop.c160 static Buffer stdin_buffer; /* Buffer for stdin data. */ variable
506 buffer_append(&stdin_buffer, buf, 1); in client_check_initial_eof_on_stdin()
524 while (buffer_len(&stdin_buffer) > 0 && in client_make_packets_from_stdin_data()
526 len = buffer_len(&stdin_buffer); in client_make_packets_from_stdin_data()
531 packet_put_string(buffer_ptr(&stdin_buffer), len); in client_make_packets_from_stdin_data()
533 buffer_consume(&stdin_buffer, len); in client_make_packets_from_stdin_data()
535 if (stdin_eof && buffer_len(&stdin_buffer) == 0) { in client_make_packets_from_stdin_data()
1361 if (buffer_len(&stdin_buffer) == 0) { in client_process_input()
1370 buffer_append(&stdin_buffer, buf, len); in client_process_input()
1377 if (process_escapes(NULL, &stdin_buffer, in client_process_input()
[all …]