/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/cddl/lib/libdtrace/ |
H A D | Makefile | 74 SYSINCS+= ${SRCTOP}/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace.h 75 SYSINCS+= ${SRCTOP}/sys/cddl/contrib/opensolaris/uts/common/sys/ctf_api.h 96 -I${OPENSOLARIS_SYS_DISTDIR}/uts/common 101 CFLAGS+= -I${OPENSOLARIS_SYS_DISTDIR}/uts/aarch64 106 CFLAGS+= -I${OPENSOLARIS_SYS_DISTDIR}/uts/intel -DDIS_MEM 111 CFLAGS+= -I${OPENSOLARIS_SYS_DISTDIR}/uts/arm 115 CFLAGS+= -I${OPENSOLARIS_SYS_DISTDIR}/uts/powerpc 119 CFLAGS+= -I${OPENSOLARIS_SYS_DISTDIR}/uts/riscv 124 CFLAGS+= -I${OPENSOLARIS_SYS_DISTDIR}/uts/intel 158 dt_names.c: ${OPENSOLARIS_SYS_DISTDIR}/uts/common/sys/dtrace.h
|
/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 | 160 struct utsname uts; in OPENSSL_cpuid_setup() local 165 if (uname(&uts) != 0 || atoi(uts.version) < 6) in OPENSSL_cpuid_setup() 276 struct utsname uts; in OPENSSL_cpuid_setup() local 277 if (uname(&uts) == 0 && strcmp(uts.machine, "ppc64") == 0) in OPENSSL_cpuid_setup()
|
/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/sys/contrib/openzfs/scripts/ |
H A D | zfs2zol-patch.sed | 3 s:usr/src/uts/common/fs/zfs/sys:include/sys:g 4 s:usr/src/uts/common/fs/zfs:module/zfs:g 10 s:usr/src/uts/common/sys:include/sys:g 26 s:usr/src/uts/common/crypto/io:module/icp/io:g
|
H A D | zol2zfs-patch.sed | 7 s:include/sys:usr/src/uts/common/fs/zfs/sys:g 8 s:include/sys:usr/src/uts/common/sys:g 19 s:module/zfs:usr/src/uts/common/fs/zfs:g
|
/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/less/ |
H A D | os.c | 97 struct utsname uts; in init_poll() 98 if (uname(&uts) < 0 || lstrtoi(uts.release, NULL, 10) < 20) in init_poll() 99 struct utsname uts; init_poll() local
|
/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/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/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/sys/conf/ |
H A D | kern.pre.mk | 206 -I$S/cddl/contrib/opensolaris/uts/common \ 240 DTRACE_CFLAGS+= -I$S/cddl/contrib/opensolaris/uts/intel -I$S/cddl/dev/dtrace/x86 243 DTRACE_CFLAGS+= -I$S/cddl/contrib/opensolaris/uts/common 254 …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/lib/drti/ |
H A D | Makefile | 25 -I${OPENSOLARIS_SYS_DISTDIR}/uts/common \
|
/freebsd/cddl/usr.sbin/plockstat/ |
H A D | Makefile | 23 -I${OPENSOLARIS_SYS_DISTDIR}/uts/common \
|
/freebsd/lib/libproc/ |
H A D | Makefile | 28 -I${SRCTOP}/sys/cddl/contrib/opensolaris/uts/common \
|
/freebsd/cddl/usr.sbin/dtrace/ |
H A D | Makefile | 23 -I${OPENSOLARIS_SYS_DISTDIR}/uts/common \
|
/freebsd/cddl/usr.sbin/lockstat/ |
H A D | Makefile | 24 -I${OPENSOLARIS_SYS_DISTDIR}/uts/common \
|
/freebsd/cddl/lib/libctf/ |
H A D | Makefile | 34 -I${OPENSOLARIS_SYS_DISTDIR}/uts/common
|
/freebsd/cddl/usr.bin/ctfmerge/ |
H A D | Makefile | 39 -I${OPENSOLARIS_SYS_DISTDIR}/uts/common
|