Home
last modified time | relevance | path

Searched refs:cursor (Results 1 – 4 of 4) sorted by relevance

/kernel/platform/pc/include/platform/
A Dconsole.h23 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);
/kernel/lib/console/
A Dconsole.cpp60 static const char* next_history(uint* cursor);
61 static const char* prev_history(uint* cursor);
147 static const char* next_history(uint* cursor) { in next_history() argument
148 uint i = ptrnext(*cursor); in next_history()
153 *cursor = i; in next_history()
157 static const char* prev_history(uint* cursor) { in prev_history() argument
159 const char* str = history_line(*cursor); in prev_history()
162 if (*cursor == history_next) in prev_history()
166 i = ptrprev(*cursor); in prev_history()
173 *cursor = i; in prev_history()
/kernel/arch/x86/page_tables/
A Dpage_tables.cpp486 MappingCursor cursor; in RemoveMapping() local
525 *new_cursor = cursor; in RemoveMapping()
593 MappingCursor cursor = start_cursor; in AddMapping() local
596 cursor.size -= new_cursor->size; in AddMapping()
597 if (cursor.size > 0) { in AddMapping()
646 MappingCursor cursor; in AddMapping() local
649 *new_cursor = cursor; in AddMapping()
748 MappingCursor cursor; in UpdateMapping() local
750 cursor.size = ps; in UpdateMapping()
760 MappingCursor cursor; in UpdateMapping() local
[all …]
/kernel/platform/pc/
A Dconsole.cpp101 void cursor(int start, int end) { in cursor() function
127 cursor(curr_start, curr_end); in curr_restore()

Completed in 15 milliseconds