Searched refs:BLACK (Results 1 – 5 of 5) sorted by relevance
/DragonOS/kernel/src/common/ |
H A D | kprint.h | 18 printk_color(GREEN, BLACK, "SUCCESS"); \ 44 printk_color(YELLOW, BLACK, "WARN"); \ 54 printk_color(RED, BLACK, "ERROR"); \ 64 printk_color(RED, BLACK, "TERMINATED"); \ 74 printk_color(RED, BLACK, "BUG"); \
|
H A D | printk.h | 20 #define BLACK 0x00000000 // 黑 macro 66 #define printk(...) printk_color(WHITE, BLACK, __VA_ARGS__)
|
/DragonOS/kernel/src/debug/traceback/ |
H A D | traceback.c | 52 …printk_color(YELLOW, BLACK, "Kernel traceback: Fault in userland. pid=%ld, rbp=%#018lx\n", rs_curr… in traceback() 57 printk_color(YELLOW, BLACK, "======== Kernel traceback =======\n"); in traceback() 75 printk_color(ORANGE, BLACK, "rbp:%#018lx,*rbp:%#018lx\n", rbp, *rbp); in traceback() 83 printk_color(YELLOW, BLACK, "======== Kernel traceback end =======\n"); in traceback()
|
/DragonOS/kernel/src/libs/ |
H A D | printk.rs | 48 let _ = textui_putstr(s, FontColor::WHITE, FontColor::BLACK); in __write_string() 51 let _ = textui_putstr(s, FontColor::WHITE, FontColor::BLACK); in __write_string()
|
/DragonOS/kernel/src/libs/lib_ui/ |
H A D | textui.rs | 245 pub const BLACK: FontColor = FontColor::new(0, 0, 0); constant 546 FontColor::BLACK, in new() 547 FontColor::BLACK, in new() 722 v_char.frcolor = FontColor::BLACK; in textui_new_line() 723 v_char.bkcolor = FontColor::BLACK; in textui_new_line() 874 v_char.frcolor = FontColor::BLACK; in textui_putchar_window() 875 v_char.bkcolor = FontColor::BLACK; in textui_putchar_window()
|