| /freebsd/cddl/lib/libdtrace/ |
| H A D | Makefile | 75 SYSINCS+= ${SRCTOP}/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace.h 76 SYSINCS+= ${SRCTOP}/sys/cddl/contrib/opensolaris/uts/common/sys/ctf_api.h 98 -I${OPENSOLARIS_SYS_DISTDIR}/uts/common 103 CFLAGS+= -I${OPENSOLARIS_SYS_DISTDIR}/uts/aarch64 108 CFLAGS+= -I${OPENSOLARIS_SYS_DISTDIR}/uts/intel -DDIS_MEM 113 CFLAGS+= -I${OPENSOLARIS_SYS_DISTDIR}/uts/arm 117 CFLAGS+= -I${OPENSOLARIS_SYS_DISTDIR}/uts/powerpc 121 CFLAGS+= -I${OPENSOLARIS_SYS_DISTDIR}/uts/riscv 126 CFLAGS+= -I${OPENSOLARIS_SYS_DISTDIR}/uts/intel 160 dt_names.c: ${OPENSOLARIS_SYS_DISTDIR}/uts/common/sys/dtrace.h
|
| /freebsd/sys/modules/dtrace/fasttrap/ |
| H A D | Makefile | 3 .PATH: ${SYSDIR}/cddl/contrib/opensolaris/uts/common/dtrace 13 CFLAGS+= -I${SYSDIR}/cddl/contrib/opensolaris/uts/intel 14 .PATH: ${SYSDIR}/cddl/contrib/opensolaris/uts/intel/dtrace 16 CFLAGS+= -I${SYSDIR}/cddl/contrib/opensolaris/uts/powerpc 17 .PATH: ${SYSDIR}/cddl/contrib/opensolaris/uts/powerpc/dtrace
|
| /freebsd/sys/dev/usb/template/ |
| H A D | usb_template.c | 1308 struct usb_temp_setup *uts; in usb_temp_setup() local 1321 uts = udev->scratch.temp_setup; in usb_temp_setup() 1323 memset(uts, 0, sizeof(*uts)); in usb_temp_setup() 1325 uts->usb_speed = udev->speed; in usb_temp_setup() 1326 uts->self_powered = udev->flags.self_powered; in usb_temp_setup() 1330 usb_make_device_desc(uts, tdd); in usb_temp_setup() 1332 if (uts->err) { in usb_temp_setup() 1337 if (uts->size == 0) { in usb_temp_setup() 1338 uts->err = USB_ERR_INVAL; in usb_temp_setup() 1342 uts->buf = usbd_alloc_config_desc(udev, uts->size); in usb_temp_setup() [all …]
|
| /freebsd/contrib/ntp/sntp/unity/auto/ |
| H A D | unity_test_summary.rb | 129 uts = UnityTestSummary.new(opts) 137 uts.set_targets(results) 141 uts.set_root_path(ARGV[1]) 144 puts uts.run 146 uts.usage e.message
|
| H A D | unity_test_summary.py | 113 uts = UnityTestSummary() variable 123 uts.set_targets(targets) 130 uts.set_root_path(root_path) 133 print(uts.run()) 135 uts.usage(e)
|
| /freebsd/crypto/openssl/crypto/ |
| H A D | ppccap.c | 162 struct utsname uts; in OPENSSL_cpuid_setup() 167 if (uname(&uts) != 0 || atoi(uts.version) < 6) in OPENSSL_cpuid_setup() 285 struct utsname uts; in OPENSSL_cpuid_setup() 286 if (uname(&uts) == 0 && strcmp(uts.machine, "ppc64") == 0) in OPENSSL_cpuid_setup() local 163 struct utsname uts; OPENSSL_cpuid_setup() local
|
| /freebsd/sys/modules/dtrace/dtrace/ |
| H A D | Makefile | 5 .PATH: ${SYSDIR}/cddl/contrib/opensolaris/uts/common/dtrace 22 CFLAGS+= -I${SYSDIR}/cddl/contrib/opensolaris/uts/intel \ 50 -I${SYSDIR}/cddl/contrib/opensolaris/uts/common \ 51 -I${SYSDIR}/cddl/contrib/opensolaris/uts/common/dtrace \
|
| /freebsd/tools/tools/netrate/juggle/ |
| H A D | juggle.c | 484 struct utsname uts; in main() local 488 if (uname(&uts) < 0) in main() 490 printf("sysname, %s\n", uts.sysname); in main() 491 printf("nodename, %s\n", uts.nodename); in main() 492 printf("release, %s\n", uts.release); in main() 493 printf("version, %s\n", uts.version); in main() 494 printf("machine, %s\n", uts.machine); in main()
|
| /freebsd/contrib/bsnmp/snmpd/ |
| H A D | action.c | 92 struct utsname uts; in init_actvals() local 100 if (uname(&uts) == -1) in init_actvals() 103 if ((systemg.name = strdup(uts.nodename)) == NULL) in init_actvals() 109 len = strlen(uts.nodename) + 1; in init_actvals() 111 len += strlen(uts.sysname) + 1; in init_actvals() 112 len += strlen(uts.release) + 1; in init_actvals() 118 sprintf(systemg.descr, "%s %s %s %s", uts.nodename, hostid, uts.sysname, in init_actvals() 119 uts.release); in init_actvals() 126 rel = uts.release; in init_actvals()
|
| /freebsd/contrib/tcsh/ |
| H A D | tc.os.c | 1149 struct utsname uts; in xgethostname() local 1151 retval = uname(&uts); in xgethostname() 1154 xprintf(CGETS(23, 14, "sysname: %s\n"), uts.sysname); in xgethostname() 1155 xprintf(CGETS(23, 15, "nodename: %s\n"), uts.nodename); in xgethostname() 1156 xprintf(CGETS(23, 16, "release: %s\n"), uts.release); in xgethostname() 1157 xprintf(CGETS(23, 17, "version: %s\n"), uts.version); in xgethostname() 1158 xprintf(CGETS(23, 18, "machine: %s\n"), uts.machine); in xgethostname() 1160 i = strlen(uts.nodename) + 1; in xgethostname() 1161 (void) strncpy(name, uts.nodename, i < namlen ? i : namlen); in xgethostname()
|
| /freebsd/stand/kboot/libkboot/ |
| H A D | host_syscalls.c | 162 host_uname(struct old_utsname *uts) in host_uname() argument 164 return host_syscall(SYS_uname, (uintptr_t)uts); in host_uname()
|
| /freebsd/contrib/libpcap/ |
| H A D | pcap-haiku.c | 411 struct utsname uts; in can_be_bound() local 412 (void)uname(&uts); in can_be_bound() 414 if (! strncmp(uts.version, *s, strlen(*s))) in can_be_bound()
|
| /freebsd/contrib/less/ |
| H A D | os.c | 123 struct utsname uts; in init_poll() 124 if (uname(&uts) < 0 || lstrtoi(uts.release, NULL, 10) < 20) in init_poll() local
|
| /freebsd/sys/conf/ |
| H A D | kern.pre.mk | 209 -I$S/cddl/contrib/opensolaris/uts/common \ 244 DTRACE_CFLAGS+= -I$S/cddl/contrib/opensolaris/uts/intel -I$S/cddl/dev/dtrace/x86 247 DTRACE_CFLAGS+= -I$S/cddl/contrib/opensolaris/uts/common 258 FBT_CFLAGS= -DBUILDING_DTRACE -nostdinc -I$S/cddl/dev/fbt/${MACHINE_CPUARCH} -I$S/cddl/dev/fbt ${CDDL_CFLAGS} -I$S/cddl/compat/opensolaris -I$S/cddl/contrib/opensolaris/uts/common
|
| /freebsd/contrib/sendmail/cf/ostype/ |
| H A D | amdahl-uts.m4 | 16 VERSIONID(`$Id: amdahl-uts.m4,v 8.17 2013-11-22 20:51:15 ca Exp $')
|
| /freebsd/cddl/usr.bin/ctfdump/ |
| H A D | Makefile | 23 -I${OPENSOLARIS_SYS_DISTDIR}/uts/common
|
| /freebsd/cddl/usr.sbin/plockstat/ |
| H A D | Makefile | 24 -I${OPENSOLARIS_SYS_DISTDIR}/uts/common \
|
| /freebsd/cddl/lib/drti/ |
| H A D | Makefile | 26 -I${OPENSOLARIS_SYS_DISTDIR}/uts/common \
|
| /freebsd/lib/libproc/ |
| H A D | Makefile | 29 -I${SRCTOP}/sys/cddl/contrib/opensolaris/uts/common \
|
| /freebsd/cddl/usr.sbin/lockstat/ |
| H A D | Makefile | 25 -I${OPENSOLARIS_SYS_DISTDIR}/uts/common \
|
| /freebsd/cddl/usr.sbin/dtrace/ |
| H A D | Makefile | 24 -I${OPENSOLARIS_SYS_DISTDIR}/uts/common \
|
| /freebsd/cddl/lib/libctf/ |
| H A D | Makefile | 36 -I${OPENSOLARIS_SYS_DISTDIR}/uts/common
|
| /freebsd/cddl/usr.bin/ctfmerge/ |
| H A D | Makefile | 39 -I${OPENSOLARIS_SYS_DISTDIR}/uts/common
|
| /freebsd/cddl/usr.bin/ctfconvert/ |
| H A D | Makefile | 39 -I${OPENSOLARIS_SYS_DISTDIR}/uts/common
|
| /freebsd/usr.sbin/pkg/ |
| H A D | config.c | 150 struct utsname uts; in pkg_get_myabi() local 156 error = uname(&uts); in pkg_get_myabi() 167 * Use __FreeBSD_version rather than kernel version (uts.release) for in pkg_get_myabi() 170 error = asprintf(&abi, "%s:%d:%s", uts.sysname, __FreeBSD_version/100000, in pkg_get_myabi() 480 struct utsname uts; in read_conf_file() 483 if (uname(&uts)) in read_conf_file() 496 ucl_parser_register_variable(p, "OSNAME", uts.sysname); in read_conf_file()
|