/src/sys/kern/ |
kern_reboot.c | 53 kern_reboot(int howto, char *bootstr) 91 cpu_reboot(howto, bootstr); 100 syscallarg(char *) bootstr; 103 char *bootstr, bs[128]; local in function:sys_reboot 113 (error = copyinstr(SCARG(uap, bootstr), bs, sizeof(bs), 0)) == 0) 114 bootstr = bs; 116 bootstr = NULL; 118 * Not all ports use the bootstr currently. 120 kern_reboot(SCARG(uap, opt), bootstr);
|
kern_reboot.c | 53 kern_reboot(int howto, char *bootstr) 91 cpu_reboot(howto, bootstr); 100 syscallarg(char *) bootstr; 103 char *bootstr, bs[128]; local in function:sys_reboot 113 (error = copyinstr(SCARG(uap, bootstr), bs, sizeof(bs), 0)) == 0) 114 bootstr = bs; 116 bootstr = NULL; 118 * Not all ports use the bootstr currently. 120 kern_reboot(SCARG(uap, opt), bootstr);
|
/src/sbin/reboot/ |
reboot.c | 76 char *bootstr, **av; local in function:main 129 bootstr = malloc(len + 1); 130 *bootstr = '\0'; /* for first strcat */ 132 strcat(bootstr, *av); 133 strcat(bootstr, " "); 135 bootstr[len - 1] = '\0'; /* to kill last space */ 138 bootstr = NULL; 144 reboot(howto, bootstr); 161 if (bootstr) 163 bootstr); [all...] |
reboot.c | 76 char *bootstr, **av; local in function:main 129 bootstr = malloc(len + 1); 130 *bootstr = '\0'; /* for first strcat */ 132 strcat(bootstr, *av); 133 strcat(bootstr, " "); 135 bootstr[len - 1] = '\0'; /* to kill last space */ 138 bootstr = NULL; 144 reboot(howto, bootstr); 161 if (bootstr) 163 bootstr); [all...] |
/src/sys/arch/sun3/sun3x/ |
machdep.c | 376 static char bootstr[128]; local in function:cpu_reboot 421 strncpy(bootstr, user_boot_string, sizeof(bootstr)); 428 p = bootstr; 444 sunmon_reboot(bootstr);
|
machdep.c | 376 static char bootstr[128]; local in function:cpu_reboot 421 strncpy(bootstr, user_boot_string, sizeof(bootstr)); 428 p = bootstr; 444 sunmon_reboot(bootstr);
|
/src/sbin/shutdown/ |
shutdown.c | 97 static char *bootstr; variable in typeref:typename:char * 127 bootstr = optarg; 410 if (bootstr) 411 *arg++ = bootstr; 600 "Usage: %s [-Ddfhknprvxz] [-b bootstr] time [message ... | -]\n",
|
shutdown.c | 97 static char *bootstr; variable in typeref:typename:char * 127 bootstr = optarg; 410 if (bootstr) 411 *arg++ = bootstr; 600 "Usage: %s [-Ddfhknprvxz] [-b bootstr] time [message ... | -]\n",
|
/src/sys/compat/sunos/ |
sunos_misc.c | 1020 char *bootstr; local in function:sunos_sys_reboot 1045 error = copyinstr(SCARG(uap, bootstr), bs, sizeof(bs), 0); 1048 bootstr = NULL; 1050 bootstr = bs; 1052 bootstr = NULL; 1055 SCARG(&ua, bootstr) = bootstr;
|
sunos_misc.c | 1020 char *bootstr; local in function:sunos_sys_reboot 1045 error = copyinstr(SCARG(uap, bootstr), bs, sizeof(bs), 0); 1048 bootstr = NULL; 1050 bootstr = bs; 1052 bootstr = NULL; 1055 SCARG(&ua, bootstr) = bootstr;
|
/src/sys/compat/sunos32/ |
sunos32_misc.c | 1259 syscallarg(netbsd32_charp) bootstr; 1264 char *bootstr; local in function:sunos32_sys_reboot 1288 bootstr = SCARG_P32(uap, bootstr); 1290 bootstr = NULL; 1293 SCARG(&ua, bootstr) = bootstr;
|
sunos32_misc.c | 1259 syscallarg(netbsd32_charp) bootstr; 1264 char *bootstr; local in function:sunos32_sys_reboot 1288 bootstr = SCARG_P32(uap, bootstr); 1290 bootstr = NULL; 1293 SCARG(&ua, bootstr) = bootstr;
|