Home
last modified time | relevance | path

Searched refs:save (Results 1 – 14 of 14) sorted by relevance

/busybox-1.35.0/libbb/ !
Dvfork_daemon_rexec.c83 static void save_nofork_data(struct nofork_save_area *save) in save_nofork_data() argument
85 memcpy(&save->die_jmp, &die_jmp, sizeof(die_jmp)); in save_nofork_data()
86 save->die_func = die_func; in save_nofork_data()
87 save->applet_name = applet_name; in save_nofork_data()
88 save->option_mask32 = option_mask32; in save_nofork_data()
89 save->logmode = logmode; in save_nofork_data()
90 save->xfunc_error_retval = xfunc_error_retval; in save_nofork_data()
92 static void restore_nofork_data(struct nofork_save_area *save) in restore_nofork_data() argument
94 memcpy(&die_jmp, &save->die_jmp, sizeof(die_jmp)); in restore_nofork_data()
95 die_func = save->die_func; in restore_nofork_data()
[all …]
Dtime.c40 struct tm save; in parse_datestr() local
44 save = *ptm; in parse_datestr()
63 *ptm = save; in parse_datestr()
Dlineedit.c612 #define input_delete(save) input_delete() in input_delete() argument
614 static void input_delete(int save) in input_delete()
623 if (save) { in input_delete()
DConfig.src219 correctly, or want to save on code size (about 400 bytes),
/busybox-1.35.0/sysklogd/ !
Dlogger.c73 char *save; in pencode() local
76 for (save = s; *s && *s != '.'; ++s) in pencode()
80 fac = decode(save, bb_facilitynames); in pencode()
82 bb_error_msg_and_die("unknown %s name: %s", "facility", save); in pencode()
85 s = save; in pencode()
89 bb_error_msg_and_die("unknown %s name: %s", "priority", save); in pencode()
/busybox-1.35.0/shell/ash_test/ash-psubst/ !
Dbash_procsub.tests23 # save stderr
/busybox-1.35.0/scripts/ !
Dcheckstack.pl108 $re = qr/.*save.*%sp, -(([0-9]{2}|[3-9])[0-9]{2}), %sp/o;
DKbuild.include12 # The temporary file to save gcc -MD generated dependencies must not
/busybox-1.35.0/docs/ !
Dsmallint.txt14 You save nothing on space here because i is not stored on-stack,
Dnofork_noexec.txt61 NOEXEC applets save only one half of fork+exec overhead.
84 * do not use shared global data, or save/restore shared global data
86 - getopt32() is ok to use. You do not need to save/restore option_mask32,
/busybox-1.35.0/ !
DINSTALL35 # exit and save new configuration
61 statically linked. To save space, busybox can be configured with only the
DTODO178 can be omitted to save size.
/busybox-1.35.0/shell/ !
Dash_remove_unnecessary_code_in_backquote_expansion.patch65 - * want to save its output in a block obtained from malloc. Otherwise
Dash.c10905 char save = *q; in preadbuffer() local
10908 *q = save; in preadbuffer()