Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/tnftp/src/
H A Dcomplete.c102 if (el_insertstr(el, insertstr) == -1) in complete_ambiguous()
122 if (el_insertstr(el, insertstr) == -1) in complete_ambiguous()
158 if (el_insertstr(el, " ") == -1) in complete_command()
240 if (el_insertstr(el, suffix) == -1) in complete_local()
270 if (el_insertstr(el, " ") == -1) in complete_option()
/freebsd-13.1/contrib/llvm-project/lldb/source/Host/common/
H A DEditline.cpp90 #define el_winsertstr el_insertstr
1014 el_insertstr(m_editline, to_add.c_str()); in TabCommand()
1023 el_insertstr(m_editline, to_add.c_str()); in TabCommand()
1028 el_insertstr(m_editline, completion.GetCompletion().c_str()); in TabCommand()
1041 el_insertstr(m_editline, longest_prefix.c_str()); in TabCommand()
1062 el_insertstr(m_editline, to_add->c_str()); in ApplyAutosuggestCommand()
1069 el_insertstr(m_editline, typed.c_str()); in TypedCharacter()
/freebsd-13.1/contrib/libedit/
H A Dhistedit.h180 int el_insertstr(EditLine *, const char *);
H A DMakefile32 editline.3 el_insertstr.3 \
H A Deln.c383 el_insertstr(EditLine *el, const char *str) in el_insertstr() function
H A Dreadline.c1901 el_insertstr(e, arr); in rl_complete()
2019 if (el_insertstr(e, text) < 0) in rl_insert_text()
2181 el_insertstr(e, buf); in rl_stuff_char()
/freebsd-13.1/lib/libedit/
H A DMakefile34 editline.3 el_insertstr.3 \
/freebsd-13.1/contrib/libedit/TEST/
H A Dtc1.c109 if (el_insertstr(el, &dp->d_name[len]) == -1) in complete()
/freebsd-13.1/crypto/openssh/
H A Dsftp.c1887 if (el_insertstr(el, tmp + cmdlen) == -1) in complete_cmd_parse()
1898 if (y > 0 && el_insertstr(el, argterm) == -1) in complete_cmd_parse()
2020 if (el_insertstr(el, ins) == -1) in complete_match()
2027 if (el_insertstr(el, ins + 1) == -1) in complete_match()
2043 if (i > 0 && el_insertstr(el, ins) == -1) in complete_match()
/freebsd-13.1/contrib/llvm-project/llvm/lib/LineEditor/
H A DLineEditor.cpp150 ::el_insertstr(EL, Action.Text.c_str()); in ElCompletionFn()
/freebsd-13.1/contrib/tnftp/
H A DChangeLog1324 - el_insertstr takes a "const char *" not "char *" now as it