Home
last modified time | relevance | path

Searched refs:func (Results 1 – 18 of 18) sorted by relevance

/busybox-1.35.0/shell/hush_test/hush-misc/
Dnommu3.tests3 func() function
11 echo Ok | func
Dfunc4.tests1 func() {
6 (func x)
/busybox-1.35.0/shell/ash_test/ash-misc/
Dnommu3.tests3 func() function
11 echo Ok | func
Dfunc4.tests1 func() {
6 (func x)
/busybox-1.35.0/archival/
Drpm.c358 int opt, func = 0; in rpm_main() local
366 if (!func) func = rpm_install; in rpm_main()
367 else func |= rpm_query_info; in rpm_main()
370 if (func) bb_show_usage(); in rpm_main()
371 func = rpm_query; in rpm_main()
374 func |= rpm_query_package; in rpm_main()
377 func |= rpm_query_list; in rpm_main()
380 func |= rpm_query_list; in rpm_main()
381 func |= rpm_query_list_doc; in rpm_main()
384 func |= rpm_query_list; in rpm_main()
[all …]
/busybox-1.35.0/libbb/
Diterate_on_dir.c13 int FAST_FUNC (*func)(const char *, struct dirent *, void *), in iterate_on_dir()
24 func(dir_name, de, private); in iterate_on_dir()
/busybox-1.35.0/scripts/
Dcheckstack.pl118 my ($func, $file, $lastslash);
122 $func = $1;
149 my $intro = "$func [$file]:";
167 my $intro = "$func [$file]:";
/busybox-1.35.0/miscutils/
Dbc.c422 size_t func; member
765 BcFunc *func; member
1251 BcFunc *func = xc_program_func(ip->func); in bc_program_current_func() local
1252 return func; in bc_program_current_func()
1260 BcFunc *func = bc_program_current_func(); in xc_program_str() local
1261 return bc_vec_item(&func->strs, idx); in xc_program_str()
1271 BcFunc *func = bc_program_current_func(); in xc_program_const() local
1272 return bc_vec_item(&func->consts, idx); in xc_program_const()
2464 static FAST_FUNC void bc_func_free(void *func) in bc_func_free() argument
2466 BcFunc *f = (BcFunc *) func; in bc_func_free()
[all …]
Ddevfsd.c1707 const char *(*func)(const char *variable, in expand_variable()
1752 env = get_variable_v2(tmp, func, info); in expand_variable()
1776 ptr = expand_variable(buffer, length, out_pos, tmp, func, info); in expand_variable()
1813 env = get_variable_v2(tmp, func, info); in expand_variable()
1835 if (!st_expr_expand(tmp, STRING_LENGTH, tmp, func, info)) in expand_variable()
1851 const char *(*func)(const char *variable, void *info), in get_variable_v2()
1863 if (func != NULL) { in get_variable_v2()
1864 value = (*func)(variable, info); in get_variable_v2()
/busybox-1.35.0/shell/hush_test/hush-getopts/
Dgetopt_nested.tests14 unset -ff func
/busybox-1.35.0/shell/ash_test/ash-getopts/
Dgetopt_nested.tests14 unset -ff func
/busybox-1.35.0/procps/
Dpowertop.c426 const char *count, *process, *func; in process_timer_stats() local
461 func = p; in process_timer_stats()
470 if (is_prefixed_with(func, "tick_nohz_")) in process_timer_stats()
472 if (is_prefixed_with(func, "tick_setup_sched_timer")) in process_timer_stats()
489 sprintf(line, "%15.15s : %s", process, func); in process_timer_stats()
/busybox-1.35.0/shell/
Dash_doc.txt37 func() {
41 func
Dash.c8184 struct funcnode *func; member
8448 freefunc(cmdp->param.func); in delete_cmd_entry()
8464 freefunc(cmdp->param.func); in addcmdentry()
9182 defun(union node *func) in defun() argument
9188 entry.u.func = copyfunc(func); in defun()
9189 addcmdentry(func->ndefun.text, &entry); in defun()
9875 evalfun(struct funcnode *func, int argc, char **argv, int flags) in evalfun() argument
9902 func->count++; in evalfun()
9903 funcname = func->n.ndefun.text; in evalfun()
9904 funcline = func->n.ndefun.linno; in evalfun()
[all …]
Dhush.c1138 # define BLTIN(cmd, func, help) { cmd, func, help } argument
1140 # define BLTIN(cmd, func, help) { cmd, func } argument
/busybox-1.35.0/networking/
Difplugd.c306 smallint (*func)(void); member
445 status = method_table[i].func(); in detect_link()
454 status = method_table[G.api_method_num].func(); in detect_link()
/busybox-1.35.0/editors/
Dawk.c144 } func; typedef
188 func *f;
801 #define newfunc(name) ((func*) hash_find(fnhash, (name)))
1734 func *f; in parse_program()
/busybox-1.35.0/include/
Dlibbb.h534 int FAST_FUNC (*func)(const char *, struct dirent *, void *),