Home
last modified time | relevance | path

Searched refs:uts (Results 1 – 25 of 61) sorted by relevance

123

/freebsd/cddl/lib/libdtrace/
H A DMakefile75 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 DMakefile3 .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 Dusb_template.c1308 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 Dunity_test_summary.rb129 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 Dunity_test_summary.py113 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 Dppccap.c162 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 DMakefile5 .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 Djuggle.c484 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 Daction.c92 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 Dtc.os.c1149 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 Dhost_syscalls.c162 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 Dpcap-haiku.c411 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 Dos.c123 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 Dkern.pre.mk209 -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 Damdahl-uts.m416 VERSIONID(`$Id: amdahl-uts.m4,v 8.17 2013-11-22 20:51:15 ca Exp $')
/freebsd/cddl/usr.bin/ctfdump/
H A DMakefile23 -I${OPENSOLARIS_SYS_DISTDIR}/uts/common
/freebsd/cddl/usr.sbin/plockstat/
H A DMakefile24 -I${OPENSOLARIS_SYS_DISTDIR}/uts/common \
/freebsd/cddl/lib/drti/
H A DMakefile26 -I${OPENSOLARIS_SYS_DISTDIR}/uts/common \
/freebsd/lib/libproc/
H A DMakefile29 -I${SRCTOP}/sys/cddl/contrib/opensolaris/uts/common \
/freebsd/cddl/usr.sbin/lockstat/
H A DMakefile25 -I${OPENSOLARIS_SYS_DISTDIR}/uts/common \
/freebsd/cddl/usr.sbin/dtrace/
H A DMakefile24 -I${OPENSOLARIS_SYS_DISTDIR}/uts/common \
/freebsd/cddl/lib/libctf/
H A DMakefile36 -I${OPENSOLARIS_SYS_DISTDIR}/uts/common
/freebsd/cddl/usr.bin/ctfmerge/
H A DMakefile39 -I${OPENSOLARIS_SYS_DISTDIR}/uts/common
/freebsd/cddl/usr.bin/ctfconvert/
H A DMakefile39 -I${OPENSOLARIS_SYS_DISTDIR}/uts/common
/freebsd/usr.sbin/pkg/
H A Dconfig.c150 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()

123