Searched defs:history (Results 1 - 1 of 1) sorted by relevance

/system/core/liblinenoise/
H A Dlinenoise.c91 char **history = NULL; variable
107 if (history) {
111 free(history[j]);
112 free(history);
224 /* The latest history entry is always our current buffer, that
295 /* up and down arrow: history */
297 /* Update the current history entry before to
299 free(history[history_len-1-history_index]);
300 history[history_len-1-history_index] = strdup(buf);
310 strncpy(buf,history[history_le
[all...]

Completed in 261 milliseconds