/busybox-1.35.0/scripts/kconfig/ |
D | symbol.c | 82 if (sym_is_choice_value(sym) && sym->visible == yes) in sym_get_type() 125 prop->visible.tri = expr_calc_value(prop->visible.expr); in sym_get_default_prop() 126 if (prop->visible.tri != no) in sym_get_default_prop() 137 prop->visible.tri = expr_calc_value(prop->visible.expr); in sym_get_range_prop() 138 if (prop->visible.tri != no) in sym_get_range_prop() 201 prop->visible.tri = expr_calc_value(prop->visible.expr); in sym_calc_visibility() 202 tri = E_OR(tri, prop->visible.tri); in sym_calc_visibility() 206 if (sym->visible != tri) { in sym_calc_visibility() 207 sym->visible = tri; in sym_calc_visibility() 233 if (def_sym->visible != no) in sym_calc_choice() [all …]
|
D | menu.c | 129 prop->visible.expr = menu_check_dep(dep); in menu_add_prop() 227 parentdep = parent->prompt->visible.expr; in menu_finalize() 243 dep = expr_transform(prop->visible.expr); in menu_finalize() 248 prop->visible.expr = dep; in menu_finalize() 259 basedep = parent->prompt ? parent->prompt->visible.expr : NULL; in menu_finalize() 264 dep = menu->prompt ? menu->prompt->visible.expr : menu->dep; in menu_finalize() 341 expr_alloc_and(parent->prompt->visible.expr, in menu_finalize() 350 tristate visible; in menu_is_visible() local 357 visible = menu->prompt->visible.tri; in menu_is_visible() 359 visible = menu->prompt->visible.tri = expr_calc_value(menu->prompt->visible.expr); in menu_is_visible() [all …]
|
D | qconf.h | 150 : Parent(parent, after), menu(m), visible(v), goParent(false) in ConfigItem() 155 : Parent(parent, after), menu(m), visible(v), goParent(false) in ConfigItem() 160 : Parent(parent, after), menu(0), visible(v), goParent(true) in ConfigItem() 203 bool visible; variable
|
D | zconf.y | 598 if (!expr_is_yes(prop->visible.expr)) { in print_symbol() 600 expr_fprint(prop->visible.expr, out); in print_symbol() 607 if (!expr_is_yes(prop->visible.expr)) { in print_symbol() 609 expr_fprint(prop->visible.expr, out); in print_symbol() 655 if (!expr_is_yes(prop->visible.expr)) { in zconfdump() 657 expr_fprint(prop->visible.expr, out); in zconfdump()
|
D | qconf.cc | 107 bool visible; in updateMenuList() local 136 visible = menu_is_visible(child); in updateMenuList() 137 if (showAll || visible) { in updateMenuList() 139 item = new ConfigItem(parent, last, child, visible); in updateMenuList() 141 item->testUpdateMenu(visible); in updateMenuList() 288 if (!sym_has_value(sym) && visible) in updateMenu() 298 visible = v; in testUpdateMenu() 316 if (visible) { in paintCell() 1098 if (prop->visible.expr) { in setHelp() 1100 expr_print(prop->visible.expr, expr_print_help, &debug, E_NONE); in setHelp() [all …]
|
D | expr.h | 72 tristate visible; member 111 struct expr_value visible; member
|
D | confdata.c | 304 if (sym->visible == no) in conf_read() 322 if (e->right.sym->visible != no) in conf_read()
|
D | mconf.c | 386 if (!expr_is_yes(prop->visible.expr)) { in get_prompt_str() 388 expr_gstr_print(prop->visible.expr, r); in get_prompt_str()
|
D | zconf.tab.c_shipped | 2086 if (!expr_is_yes(prop->visible.expr)) { 2088 expr_fprint(prop->visible.expr, out); 2095 if (!expr_is_yes(prop->visible.expr)) { 2097 expr_fprint(prop->visible.expr, out); 2143 if (!expr_is_yes(prop->visible.expr)) { 2145 expr_fprint(prop->visible.expr, out);
|
/busybox-1.35.0/docs/ |
D | Kconfig-language.txt | 21 to determine the visible of an entry. Any child entry is only 22 visible if its parent entry is also visible. 69 default values are visible, only the first defined one is active. 75 prompt is visible the default value is presented to the user and can 130 respectively for calculations). A menu entry becomes visible when it's 166 - the child entry must only be visible, if the parent is visible 178 MODVERSIONS directly depends on MODULES, this means it's only visible if 180 visible when MODULES it's visible (the (empty) dependency of MODULES is
|
/busybox-1.35.0/libbb/ |
D | printable.c | 35 void FAST_FUNC visible(unsigned ch, char *buf, int flags) in visible() function
|
/busybox-1.35.0/coreutils/ |
D | cat.c | 154 visible(c, buf, opts); in catv()
|
D | stty.c | 1054 visible(ch, buf10, 0); in do_display()
|
/busybox-1.35.0/examples/var_service/ |
D | README_distro_proposal.txt | 196 (which is visible in ps output).
|
/busybox-1.35.0/include/ |
D | libbb.h | 962 void visible(unsigned ch, char *buf, int flags) FAST_FUNC;
|