Lines Matching refs:uint
71 static uint start_history_cursor(console_t *con);
72 static const char *next_history(console_t *con, uint *cursor);
73 static const char *prev_history(console_t *con, uint *cursor);
115 static inline char *history_line(console_t *con, uint line) { in history_line()
119 static inline uint ptrnext(uint ptr) { in ptrnext()
123 static inline uint ptrprev(uint ptr) { in ptrprev()
129 uint ptr = ptrprev(con->history_next); in dump_history()
151 static uint start_history_cursor(console_t *con) { in start_history_cursor()
155 static const char *next_history(console_t *con, uint *cursor) { in next_history()
156 uint i = ptrnext(*cursor); in next_history()
165 static const char *prev_history(console_t *con, uint *cursor) { in prev_history()
166 uint i; in prev_history()
265 uint history_cursor = start_history_cursor(con); in read_debug_line()