Searched refs:cursor (Results 1 – 5 of 5) sorted by relevance
/lk-master/lib/fs/spifs/ |
A D | spifs.c | 127 cursor->page_id = page_id; in cursor_init() 128 cursor->direction = direction; in cursor_init() 130 cursor->data = spifs->page; in cursor_init() 131 cursor->spifs = spifs; in cursor_init() 145 return cursor->data; in cursor_get() 153 cursor->data += cursor->entry_length; in cursor_advance() 161 cursor->page_id += cursor->direction; in cursor_advance() 284 cursor += SPIFS_ENTRY_LENGTH; in spifs_commit_toc() 294 if (cursor == page_end) { in spifs_commit_toc() 401 cursor_t cursor; in get_toc_generation() local [all …]
|
/lk-master/platform/pc/include/platform/ |
A D | console.h | 23 void cursor(int start, int end); 44 #define CURSOR_BLOCK() cursor(0, 15); 45 #define CURSOR_OFF() cursor(16, 16); 46 #define CURSOR_STD() cursor(14, 15);
|
/lk-master/lib/console/ |
A D | console.c | 72 static const char *next_history(console_t *con, uint *cursor); 73 static const char *prev_history(console_t *con, uint *cursor); 155 static const char *next_history(console_t *con, uint *cursor) { in next_history() argument 156 uint i = ptrnext(*cursor); in next_history() 161 *cursor = i; in next_history() 165 static const char *prev_history(console_t *con, uint *cursor) { in prev_history() argument 167 const char *str = history_line(con, *cursor); in prev_history() 170 if (*cursor == con->history_next) in prev_history() 174 i = ptrprev(*cursor); in prev_history() 181 *cursor = i; in prev_history()
|
/lk-master/platform/pc/ |
A D | console.c | 100 void cursor(int start,int end) { in cursor() function 126 cursor(curr_start, curr_end); in curr_restore()
|
/lk-master/external/platform/nrfx/doc/ |
A D | nrfx.doxyfile | 1571 # <CTRL>, <ALT>/<option>, or both). Inside the search box use the <cursor down 1573 # using the <cursor keys>. Press <Enter> to select an item or <escape> to cancel 1574 # the search. The filter options can be selected when the cursor is inside the 1575 # search box by pressing <Shift>+<cursor down>. Also here use the <cursor keys>
|
Completed in 10 milliseconds