Searched refs:pending_completions (Results 1 – 1 of 1) sorted by relevance
24 static char **pending_completions = NULL; variable30 if (pending_completions == NULL) in readline_free_completions()32 for (i = 0; pending_completions[i]; i++) in readline_free_completions()33 os_free(pending_completions[i]); in readline_free_completions()34 os_free(pending_completions); in readline_free_completions()35 pending_completions = NULL; in readline_free_completions()44 if (pending_completions == NULL) { in readline_completion_func()53 for (; pending_completions[pos]; pos++) { in readline_completion_func()54 if (strncmp(pending_completions[pos], text, len) == 0) in readline_completion_func()55 return strdup(pending_completions[pos++]); in readline_completion_func()[all …]