Lines Matching refs:he
72 HIST_ENTRY *he; in check_current() local
74 he = current_history(); in check_current()
77 if (he != NULL) in check_current()
82 if (he == NULL) in check_current()
84 else if (strcmp(he->line, want) != 0) in check_current()
85 msg("%s is \"%s\" instead of \"%s\".", descr, he->line, want); in check_current()
91 HIST_ENTRY *he; in check_get() local
93 if ((he = history_get(history_base + idx)) == NULL) in check_get()
95 else if (he->line == NULL) in check_get()
97 else if (strcmp(he->line, want) != 0) in check_get()
99 history_base, idx, he->line, want); in check_get()