/hal_espressif-2.7.6/components/wpa_supplicant/include/utils/ |
D | wpa_debug.h | 67 static inline void wpa_hexdump_ascii(int level, const char *title, const u8 *buf, size_t len) in wpa_hexdump_ascii() argument 72 static inline void wpa_hexdump_ascii_key(int level, const char *title, const u8 *buf, size_t len) in wpa_hexdump_ascii_key() argument 87 void wpa_hexdump(int level, const char *title, const u8 *buf, size_t len); 89 static inline void wpa_hexdump_buf(int level, const char *title, in wpa_hexdump_buf() argument 92 wpa_hexdump(level, title, wpabuf_head(buf), wpabuf_len(buf)); in wpa_hexdump_buf() 108 void wpa_hexdump_key(int level, const char *title, const u8 *buf, size_t len); 111 static inline void wpa_hexdump_buf_key(int level, const char *title, in wpa_hexdump_buf_key() argument 114 wpa_hexdump_key(level, title, wpabuf_head(buf), wpabuf_len(buf)); in wpa_hexdump_buf_key() 130 void wpa_hexdump_ascii(int level, const char *title, const u8 *buf, 147 void wpa_hexdump_ascii_key(int level, const char *title, const u8 *buf,
|
/hal_espressif-2.7.6/examples/protocols/http_server/restful_server/front/web-demo/src/ |
D | App.vue | 10 <v-list-tile-title>Home</v-list-tile-title> 18 <v-list-tile-title>Chart</v-list-tile-title> 26 <v-list-tile-title>Light</v-list-tile-title> 33 <v-toolbar-title>ESP Home</v-toolbar-title>
|
/hal_espressif-2.7.6/tools/kconfig/lxdialog/ |
D | dialog.h | 120 struct dialog_color title; member 225 void print_title(WINDOW *dialog, const char *title, int width); 231 int dialog_yesno(const char *title, const char *prompt, int height, int width); 232 int dialog_msgbox(const char *title, const char *prompt, int height, 238 int dialog_textbox(const char *title, char *tbuf, int initial_height, 241 int dialog_menu(const char *title, const char *prompt, 243 int dialog_checklist(const char *title, const char *prompt, int height, 245 int dialog_inputbox(const char *title, const char *prompt, int height,
|
D | util.c | 36 dlg.title.atr = A_BOLD; in set_mono_theme() 76 DLG_COLOR(title, COLOR_YELLOW, COLOR_WHITE, true); in set_classic_theme() 109 DLG_COLOR(title, COLOR_RED, COLOR_BLACK, false); in set_blackbg_theme() 149 DLG_COLOR(title, COLOR_BLUE, COLOR_WHITE, true); in set_bluetitle_theme() 196 init_one_color(&dlg.title); in init_dialog_colors() 365 void print_title(WINDOW *dialog, const char *title, int width) in print_title() argument 367 if (title) { in print_title() 368 int tlen = MIN(width - 2, strlen(title)); in print_title() 369 wattrset(dialog, dlg.title.atr); in print_title() 371 mvwaddnstr(dialog, 0, (width - tlen)/2, title, tlen); in print_title()
|
D | yesno.c | 42 int dialog_yesno(const char *title, const char *prompt, int height, int width) in dialog_yesno() argument 71 print_title(dialog, title, width); in dialog_yesno()
|
D | inputbox.c | 44 int dialog_inputbox(const char *title, const char *prompt, int height, int width, in dialog_inputbox() argument 82 print_title(dialog, title, width); in dialog_inputbox()
|
D | checklist.c | 117 int dialog_checklist(const char *title, const char *prompt, int height, in dialog_checklist() argument 160 print_title(dialog, title, width); in dialog_checklist()
|
D | textbox.c | 56 int dialog_textbox(const char *title, char *tbuf, int initial_height, in dialog_textbox() argument 130 print_title(dialog, title, width); in dialog_textbox()
|
D | menubox.c | 184 int dialog_menu(const char *title, const char *prompt, in dialog_menu() argument 224 print_title(dialog, title, width); in dialog_menu()
|
/hal_espressif-2.7.6/tools/kconfig/ |
D | mconf.c | 289 static int show_textbox_ext(const char *title, char *text, int r, int c, 292 static void show_textbox(const char *title, const char *text, int r, int c); 293 static void show_helptext(const char *title, const char *text); 395 struct gstr title; in search_conf() local 402 title = str_new(); in search_conf() 403 str_printf( &title, _("Enter (sub)string or regexp to search for " in search_conf() 409 str_get(&title), in search_conf() 418 str_free(&title); in search_conf() 461 str_free(&title); in search_conf() 756 static int show_textbox_ext(const char *title, char *text, int r, int c, int in show_textbox_ext() argument [all …]
|
D | nconf.h | 91 const char *title, const char *prompt, 95 const char *title,
|
D | nconf.gui.c | 358 const char *title, const char *prompt, in dialog_inputbox() argument 386 if (title) in dialog_inputbox() 387 prompt_width = max(prompt_width, strlen(title)); in dialog_inputbox() 406 if (title) in dialog_inputbox() 407 mvwprintw(win, 0, 3, "%s", title); in dialog_inputbox() 543 const char *title, in show_scroll_win() argument 589 mvwprintw(win, 0, 3, " %s ", title); in show_scroll_win()
|
D | nconf.c | 693 struct gstr title; in search_conf() local 697 title = str_new(); in search_conf() 698 str_printf( &title, _("Enter (sub)string or regexp to search for " in search_conf() 704 str_get(&title), in search_conf() 714 str_free(&title); in search_conf() 729 str_free(&title); in search_conf()
|
/hal_espressif-2.7.6/components/wpa_supplicant/src/utils/ |
D | wpa_debug.c | 88 void wpa_hexdump(int level, const char *title, const u8 *buf, size_t len) in wpa_hexdump() argument 97 wpa_printf(level, "%s - hexdump(len=%lu):", title, (unsigned long) len); in wpa_hexdump() 115 void wpa_hexdump_key(int level, const char *title, const u8 *buf, size_t len) in wpa_hexdump_key() argument 117 wpa_hexdump(level, title, buf, len); in wpa_hexdump_key()
|
/hal_espressif-2.7.6/examples/protocols/http_server/restful_server/front/web-demo/src/views/ |
D | Home.vue | 7 <v-card-title primary-title> 13 </v-card-title>
|
/hal_espressif-2.7.6/tools/ci/python_packages/idf_iperf_test_util/ |
D | LineChart.py | 21 def draw_line_chart(file_name, title, x_label, y_label, data_series, range_list): argument 50 title_opts=opts.TitleOpts(title=title, pos_left='center'),
|
/hal_espressif-2.7.6/docs/_static/diagrams/spi/ |
D | spi_master_freq_tv.plt | 24 f1(-1, x) lw 3lc rgb "blue" title "IOMUX",\ 26 f1(0, x+25) lw 3 lc rgb "red" title "GPIO",\
|
/hal_espressif-2.7.6/docs/en/ |
D | languages.rst | 11 … the panel on the sidebar like below. Just click on the **Read the Docs** title button on the left…
|
/hal_espressif-2.7.6/tools/kconfig_new/ |
D | gen_kconfig_doc.py | 297 title = 'CONFIG_%s' % name 300 title = node.prompt[0] 303 f.write('%s\n' % title) 304 f.write(HEADING_SYMBOLS[get_heading_level(node)] * len(title))
|
/hal_espressif-2.7.6/docs/latex_templates/ |
D | titlepage.tex | 14 {\fontsize{28pt}{18pt}\textbf{\color{mygrayy}\@title}}
|
D | preamble.tex | 103 % Insert 22pt white space before roc title. \titlespacing at line 65 changes it by -22 later on.
|
/hal_espressif-2.7.6/.github/ISSUE_TEMPLATE/ |
D | feature_request.md | 4 title: ''
|
D | bug_report.md | 4 title: ''
|
/hal_espressif-2.7.6/components/wpa_supplicant/src/common/ |
D | wpa_common.c | 550 char title[9]; in rsn_pmkid() local 555 os_memcpy(title, "PMK Name", sizeof("PMK Name")); in rsn_pmkid() 556 addr[0] = (u8 *) title; in rsn_pmkid()
|
/hal_espressif-2.7.6/tools/ |
D | idf.py | 479 def print_flashing_message(title, key): argument 489 print('\n%s build complete.' % title) 506 print('\n%s build complete. To flash, run this command:' % title)
|