outsname           94 compat/common/kern_info_09.c struct outsname {
outsname          112 compat/common/kern_info_09.c 	struct outsname outsname;
outsname          116 compat/common/kern_info_09.c 	strlcpy(outsname.sysname, ostype, sizeof(outsname.sysname));
outsname          117 compat/common/kern_info_09.c 	strlcpy(outsname.nodename, hostname, sizeof(outsname.nodename));
outsname          118 compat/common/kern_info_09.c 	strlcpy(outsname.release, osrelease, sizeof(outsname.release));
outsname          119 compat/common/kern_info_09.c 	dp = outsname.version;
outsname          120 compat/common/kern_info_09.c 	ep = &outsname.version[sizeof(outsname.version) - 1];
outsname          130 compat/common/kern_info_09.c 	strlcpy(outsname.machine, MACHINE, sizeof(outsname.machine));
outsname          132 compat/common/kern_info_09.c 	return (copyout((caddr_t)&outsname, (caddr_t)SCARG(uap, name),
outsname          133 compat/common/kern_info_09.c 			sizeof(struct outsname)));
outsname          723 sys/syscallargs.h 	syscallarg(struct outsname *) name;