Home
last modified time | relevance | path

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

/NextBSD/crypto/heimdal/appl/telnet/libtelnet/
HDencrypt.c138 static unsigned char str_end[] = { IAC, SB, TELOPT_ENCRYPT, 0, IAC, SE }; variable
888 str_end[3] = ENCRYPT_END; in encrypt_send_end()
889 telnet_net_write(str_end, sizeof(str_end)); in encrypt_send_end()
891 printsub('>', &str_end[2], sizeof(str_end) - 2); in encrypt_send_end()
926 str_end[3] = ENCRYPT_REQEND; in encrypt_send_request_end()
927 telnet_net_write(str_end, sizeof(str_end)); in encrypt_send_request_end()
928 printsub('>', &str_end[2], sizeof(str_end) - 2); in encrypt_send_request_end()
/NextBSD/contrib/telnet/libtelnet/
HDencrypt.c146 static unsigned char str_end[] = { IAC, SB, TELOPT_ENCRYPT, 0, IAC, SE }; variable
864 str_end[3] = ENCRYPT_END; in encrypt_send_end()
865 net_write(str_end, sizeof(str_end)); in encrypt_send_end()
867 printsub('>', &str_end[2], sizeof(str_end) - 2); in encrypt_send_end()
902 str_end[3] = ENCRYPT_REQEND; in encrypt_send_request_end()
903 net_write(str_end, sizeof(str_end)); in encrypt_send_request_end()
904 printsub('>', &str_end[2], sizeof(str_end) - 2); in encrypt_send_request_end()
/NextBSD/contrib/tcsh/
HDsh.file.c699 Char *str_end, *word_start, last_Char, should_retype; in tenex() local
713 str_end = &inputline[num_read]; in tenex()
715 --str_end; /* wipeout trailing cmd Char */ in tenex()
716 *str_end = '\0'; in tenex()
721 for (word_start = str_end; word_start > inputline; --word_start) in tenex()
729 print_recognized_stuff(str_end); in tenex()
HDtw.parse.c165 Char *str_end, *cp; in tenematch() local
173 str_end = &inputline[num_read]; in tenematch()
178 for (cp = inputline; cp < str_end; cp++) { in tenematch()
209 if (cmap(*cp, _ESC) && cp < str_end - 1 && cp[1] == HIST && in tenematch()
335 insert_meta(word_start, str_end, qline.s + word, !qu) < 0) in tenematch()
343 for (bptr = word_start; bptr < str_end; bptr++) { in tenematch()
376 if (insert_meta(word_start, str_end, qline.s + word, !qu) < 0) in tenematch()
403 DeleteBack(str_end - word_start);/* get rid of old word */ in tenematch()
424 if (insert_meta(word_start, str_end, bptr, !qu) < 0) { in tenematch()
438 if (insert_meta(word_start, str_end, bptr, !qu) < 0) { in tenematch()
[all …]
/NextBSD/contrib/less/
HDsearch.c127 char *str_end = str + strlen(str); local
130 while (str < str_end)
132 ch = step_char(&str, +1, str_end);