Home
last modified time | relevance | path

Searched refs:visible (Results 1 – 15 of 15) sorted by relevance

/busybox-1.35.0/scripts/kconfig/
Dsymbol.c82 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 …]
Dmenu.c129 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 …]
Dqconf.h150 : 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
Dzconf.y598 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()
Dqconf.cc107 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 …]
Dexpr.h72 tristate visible; member
111 struct expr_value visible; member
Dconfdata.c304 if (sym->visible == no) in conf_read()
322 if (e->right.sym->visible != no) in conf_read()
Dmconf.c386 if (!expr_is_yes(prop->visible.expr)) { in get_prompt_str()
388 expr_gstr_print(prop->visible.expr, r); in get_prompt_str()
Dzconf.tab.c_shipped2086 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/
DKconfig-language.txt21 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/
Dprintable.c35 void FAST_FUNC visible(unsigned ch, char *buf, int flags) in visible() function
/busybox-1.35.0/coreutils/
Dcat.c154 visible(c, buf, opts); in catv()
Dstty.c1054 visible(ch, buf10, 0); in do_display()
/busybox-1.35.0/examples/var_service/
DREADME_distro_proposal.txt196 (which is visible in ps output).
/busybox-1.35.0/include/
Dlibbb.h962 void visible(unsigned ch, char *buf, int flags) FAST_FUNC;