Home
last modified time | relevance | path

Searched refs:sys (Results 1 – 25 of 347) sorted by relevance

12345678910>>...14

/dflybsd-src/test/debug/
H A Dchkincludes10 cd /usr/src/sys
11 set files = ( sys/*.h vm/*.h net*/*.h ddb/*.h i386/include/*.h )
16 awk -f /usr/src/sys/tools/makeobjops.awk -- -h /usr/src/sys/kern/device_if.m
17 awk -f /usr/src/sys/tools/makeobjops.awk -- -h /usr/src/sys/kern/bus_if.m
18 awk -f /usr/src/sys/tools/makeobjops.awk -- -h /usr/src/sys/dev/netif/mii_layer/miibus_if.m
19 awk -f /usr/src/sys/tools/makeobjops.awk -- -h /usr/src/sys/bus/ppbus/ppbus_if.m
20 awk -f /usr/src/sys/tools/makeobjops.awk -- -h /usr/src/sys/bus/pccard/card_if.m
21 awk -f /usr/src/sys/tools/makeobjops.awk -- -h /usr/src/sys/bus/pccard/power_if.m
22 awk -f /usr/src/sys/tools/makeobjops.awk -- -h /usr/src/sys/dev/agp/agp_if.m
23 awk -f /usr/src/sys/tools/makeobjops.awk -- -h /usr/src/sys/bus/pci/pci_if.m
[all …]
/dflybsd-src/contrib/bmake/mk/
H A DFILES45 sys.mk
46 sys.clean-env.mk
47 sys.debug.mk
48 sys.dependfile.mk
49 sys.vars.mk
50 sys/AIX.mk
51 sys/Darwin.mk
52 sys/Generic.mk
53 sys/HP-UX.mk
54 sys/IRIX.mk
[all …]
H A Dinstall-mk16 # -f use -f when copying sys,mk.
37 # By default if a sys.mk can be found in a standard location
38 # (that bmake will find) then no sys.mk will be put in "dest".
41 # If set, we will avoid installing our 'sys.mk'
47 # sys.mk:
50 # mk dir - '/usr/share/mk') we install our own 'sys.mk' which
51 # includes a sys specific file, or a generic one.
127 SYS_MK=${SYS_MK:-$SYS_MK_DIR/sys.mk}
150 if [ ! -d $dest/sys -a ! -s $dest/Generic.sys.mk ]; then
159 [ -d $dest/sys ] || Do mkdir -p $dest/sys
[all …]
H A Dsys.mk19 .include <sys.debug.mk>
28 .include <sys.vars.mk>
34 .-include <sys.env.mk>
41 .-include <local.sys.env.mk>
54 .-include <sys/$x.mk>
57 _sys_mk := sys/${_sys_mk:T}
62 .-include <$x.sys.mk>
63 _sys_mk := ${.MAKE.MAKEFILES:M*/$x.sys.mk:T}
89 .-include <meta.sys.mk>
150 .-include <local.sys.mk>
H A DChangeLog5 * sys/Linux.mk set EGREP to grep -E to avoid deprecation warnings
46 * sys/*.mk: remove l from ARFLAGS
71 * sys.vars.mk: use JOT_CMD (jot or seq) if available for M_JOT
132 * sys.mk: simplify; include meta.sys.mk if MK_META_MODE is yes.
134 * meta.sys.mk: do not check for /dev/filemon if .MAKE.PATH_FILEMON
158 * meta.sys.mk: check for nofilemon support when we skip level 0
287 * sys.mk (MAKE_SHELL): use ${.SHELL:Ush}
338 * sys.vars.mk: add M_JOT and M_RANGE
415 * sys.mk: default MK_STATIC_DIRDEPS_CACHE from MK_DIRDEPS_CACHE
461 * sys/*.mk: make it easier for local*sys.mk to customize by
[all …]
/dflybsd-src/include/
H A DMakefile47 LDIRS= net netbt netgraph netgraph7 netinet netinet6 sys vm
120 osreldate.h: ${.CURDIR}/../sys/conf/newvers.sh \
121 ${.CURDIR}/../sys/sys/param.h
123 setvar PARAMFILE ${.CURDIR}/../sys/sys/param.h; \
124 . ${.CURDIR}/../sys/conf/newvers.sh "${.CURDIR}/.." ; \
134 INCSLINKS+= sys/$i ${INCLUDEDIR}/$i
165 cd ${.CURDIR}/../sys; \
169 cd ${.CURDIR}/../sys; \
174 cd ${.CURDIR}/../sys/dev/acpica; \
177 cd ${.CURDIR}/../sys/dev/misc/evdev; \
[all …]
/dflybsd-src/sys/kern/
H A DMakefile12 ${.CURDIR}/../sys/syscall.mk ${.CURDIR}/../sys/sysproto.h \
13 ${.CURDIR}/../sys/sysunion.h: ${.CURDIR}/makesyscalls.sh ${.CURDIR}/syscalls.master
16 -mv -f ${.CURDIR}/../sys/syscall.h ${.CURDIR}/../sys/syscall.h.bak
17 -mv -f ${.CURDIR}/../sys/syscall.mk ${.CURDIR}/../sys/syscall.mk.bak
18 -mv -f ${.CURDIR}/../sys/sysproto.h ${.CURDIR}/../sys/sysproto.h.bak
19 -mv -f ${.CURDIR}/../sys/sysunion.h ${.CURDIR}/../sys/sysunion.h.bak
/dflybsd-src/contrib/gdb-7/gdb/python/lib/gdb/
H A D__init__.py18 import sys
21 if sys.version_info[0] > 2:
50 sys.stdout = GdbOutputFile()
56 sys.stderr = GdbOutputErrorFile()
63 sys.argv = ['']
99 if modname in sys.modules:
105 sys.stderr.write (traceback.format_exc() + "\n")
114 sys.path.remove(PYTHONDIR)
117 sys.path.insert(0, dir)
/dflybsd-src/sys/dev/acpica/
H A Dacpivar.h161 #define ACPI_LOCK(sys) lockmgr(&sys##_lock, LK_EXCLUSIVE|LK_RETRY|LK_CANRECURSE) argument
162 #define ACPI_UNLOCK(sys) lockmgr(&sys##_lock, LK_RELEASE) argument
163 #define ACPI_LOCK_ASSERT(sys) KKASSERT(lockstatus(&sys##_lock, curthread) == LK_EXCLUSIVE) argument
165 #define ACPI_LOCK_DECL(sys, name) static struct lock sys##_lock argument
166 #define ACPI_LOCK_INIT(sys, name) lockinit(&sys##_lock, name, 0, 0) argument
168 #define ACPI_SERIAL_INIT(sys) lockinit(&sys##_serial, #sys, 0, 0) argument
169 #define ACPI_SERIAL_BEGIN(sys) lockmgr(&sys##_serial, LK_EXCLUSIVE|LK_RETRY) argument
170 #define ACPI_SERIAL_END(sys) lockmgr(&sys##_serial, LK_RELEASE) argument
171 #define ACPI_SERIAL_ASSERT(sys) KKASSERT(lockstatus(&sys##_serial, curthread) == LK_EXCLUSI… argument
172 #define ACPI_SERIAL_DECL(sys, name) static struct lock sys##_serial argument
/dflybsd-src/contrib/cryptsetup/tests/
H A DfileDiffer.py13 import sys
61 [aFileName, bFileName, changelist] = parseArgs(sys.argv)
70 sys.exit("Mismatch different file sizes")
90 sys.stdout.write("[")
91 sys.stdout.flush()
104 sys.exit("Mismatch at %d: change forbidden" % filepos)
111 sys.stdout.write(".")
112 sys.stdout.flush()
122 sys.exit("Mismatch: not even a single change in region %d-%d." % (c.starts, c.ends))
127 sys.exit("Mismatch: not even a single change in region %d-%d." % (c.starts, c.ends))
/dflybsd-src/contrib/binutils-2.34/gold/
H A Dtimer.cc44 this->start_time_.sys = 0; in Timer()
99 now->sys = (t.tms_stime * 1000) / ticks_per_sec; in get_time()
103 now->sys = 0; in get_time()
116 delta.sys = now.sys - this->start_time_.sys; in get_elapsed_time()
129 thispass.sys -= lastpass.sys; in get_pass_time()
H A Dmain.cc266 elapsed.sys / 1000, (elapsed.sys % 1000) * 1000, in main()
274 elapsed.sys / 1000, (elapsed.sys % 1000) * 1000, in main()
282 elapsed.sys / 1000, (elapsed.sys % 1000) * 1000, in main()
290 elapsed.sys / 1000, (elapsed.sys % 1000) * 1000, in main()
/dflybsd-src/contrib/binutils-2.27/gold/
H A Dtimer.cc44 this->start_time_.sys = 0; in Timer()
99 now->sys = (t.tms_stime * 1000) / ticks_per_sec; in get_time()
103 now->sys = 0; in get_time()
116 delta.sys = now.sys - this->start_time_.sys; in get_elapsed_time()
129 thispass.sys -= lastpass.sys; in get_pass_time()
H A Dmain.cc266 elapsed.sys / 1000, (elapsed.sys % 1000) * 1000, in main()
274 elapsed.sys / 1000, (elapsed.sys % 1000) * 1000, in main()
282 elapsed.sys / 1000, (elapsed.sys % 1000) * 1000, in main()
290 elapsed.sys / 1000, (elapsed.sys % 1000) * 1000, in main()
/dflybsd-src/lib/libelf/
H A DMakefile80 ELFHEAD= sys/elf32.h sys/elf64.h sys/elf_common.h
83 ${.OBJDIR}/sys:
86 ${ELFHEAD}: ${.OBJDIR}/sys ${.CURDIR}/../../sys/${.TARGET}
87 ln -sf ${.CURDIR}/../../sys/${.TARGET} ${.TARGET}
90 CLEANDIRS= sys
/dflybsd-src/contrib/gcc-4.7/gcc/
H A Dtimevar.c183 now->sys = 0; in get_time()
195 now->sys = tms.tms_stime * ticks_to_msec; in get_time()
201 now->sys = rusage.ru_stime.tv_sec + rusage.ru_stime.tv_usec * 1e-6; in get_time()
217 timer->sys += stop_time->sys - start_time->sys; in timevar_accumulate()
475 && tv->elapsed.sys < tiny in timevar_print()
493 tv->elapsed.sys, in timevar_print()
494 (total->sys == 0 ? 0 : tv->elapsed.sys / total->sys) * 100); in timevar_print()
520 fprintf (fp, "%7.2f ", total->sys); in timevar_print()
/dflybsd-src/contrib/gdb-7/gdb/python/
H A Dpython-config.py4 import sys
13 sys.stderr.write ("Usage: %s [%s]\n" % (sys.argv[0],
15 sys.exit(code)
18 opts, args = getopt.getopt(sys.argv[1:], '', valid_opts)
27 abiflags = getattr (sys, "abiflags", "")
/dflybsd-src/contrib/gdb-7/gdb/
H A Dconfig.in147 /* Define if <sys/procfs.h> has fpregset_t. */
165 /* Define if <sys/procfs.h> has gregset_t. */
234 /* Define if <sys/procfs.h> has lwpid_t. */
285 /* Define if <sys/procfs.h> has prfpregset32_t. */
288 /* Define if <sys/procfs.h> has prfpregset_t. */
291 /* Define if <sys/procfs.h> has prgregset32_t. */
294 /* Define if <sys/procfs.h> has prgregset_t. */
303 /* Define if <sys/procfs.h> has prrun_t. */
306 /* Define if <sys/procfs.h> has prsysent_t. */
309 /* Define if <sys/procfs.h> has pr_sigaction64_t. */
[all …]
/dflybsd-src/contrib/gcc-8.0/gcc/
H A Dtimevar.c179 def->elapsed.sys = 0; in push()
220 now->sys = 0; in get_time()
229 now->sys = tms.tms_stime * ticks_to_msec; in get_time()
235 now->sys = rusage.ru_stime.tv_sec + rusage.ru_stime.tv_usec * 1e-6; in get_time()
251 timer->sys += stop_time->sys - start_time->sys; in timevar_accumulate()
606 phase_sys += tv->elapsed.sys; in validate_phases()
613 || phase_sys > total->sys * tolerance in validate_phases()
621 if (phase_sys > total->sys) in validate_phases()
622 fprintf (fp, "sys %24.18e > %24.18e\n", phase_sys, total->sys); in validate_phases()
652 elapsed.sys, in print_row()
[all …]
/dflybsd-src/usr.bin/truss/
H A DMakefile6 CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../../sys
7 CFLAGS+= -I${.CURDIR}/../../sys/dev/drm/include -I.
8 CFLAGS+= -I${.CURDIR}/../../sys/contrib/dev/acpica/source/include
14 syscalls.master: ${.CURDIR}/../../sys/kern/syscalls.master
18 /bin/sh ${.CURDIR}/../../sys/kern/makesyscalls.sh syscalls.master \
/dflybsd-src/contrib/lvm2/dist/lib/misc/
H A Dconfigure.h.in282 /* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR'.
286 /* Define to 1 if you have the <sys/disk.h> header file. */
289 /* Define to 1 if you have the <sys/file.h> header file. */
292 /* Define to 1 if you have the <sys/ioctl.h> header file. */
295 /* Define to 1 if you have the <sys/ipc.h> header file. */
298 /* Define to 1 if you have the <sys/mman.h> header file. */
301 /* Define to 1 if you have the <sys/mount.h> header file. */
304 /* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR'.
308 /* Define to 1 if you have the <sys/param.h> header file. */
311 /* Define to 1 if you have the <sys/resource.h> header file. */
[all …]
/dflybsd-src/crypto/openssh/
H A Dconfigure.ac118 #include <sys/types.h>
119 #include <sys/param.h>
123 [AC_DEFINE([HAVE_RLIMIT_NPROC], [], [sys/resource.h has RLIMIT_NPROC])], , [
124 #include <sys/types.h>
125 #include <sys/resource.h>
128 #include <sys/types.h>
451 dnl On some old platforms, sys/stat.h requires sys/types.h, but autoconf-2.71's
456 AC_CHECK_HEADERS([sys/stat.h])
500 sys/bitypes.h \
501 sys/byteorder.h \
[all …]
/dflybsd-src/contrib/bmake/
H A Dconfig.h.in185 /* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR'.
189 /* Define to 1 if you have the <sys/mman.h> header file. */
192 /* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR'.
196 /* Define to 1 if you have the <sys/param.h> header file. */
199 /* Define to 1 if you have the <sys/select.h> header file. */
202 /* Define to 1 if you have the <sys/socket.h> header file. */
205 /* Define to 1 if you have the <sys/stat.h> header file. */
208 /* Define to 1 if you have the <sys/sysctl.h> header file. */
211 /* Define to 1 if you have the <sys/time.h> header file. */
214 /* Define to 1 if you have the <sys/types.h> header file. */
[all …]
H A Dconfigure.in88 … for d in "/usr/include/dev/filemon" "$prefix/include/dev/filemon" "$srcdir/../../sys/dev/filemon"
211 AC_CHECK_HEADERS(sys/param.h)
212 dnl On BSDi at least we really need sys/param.h for sys/sysctl.h
213 AC_CHECK_HEADERS([sys/sysctl.h], [], [],
215 # include <sys/param.h>
228 sys/mman.h \
229 sys/select.h \
230 sys/socket.h \
231 sys/time.h \
232 sys/uio.h \
[all …]
/dflybsd-src/tools/tools/ath/
H A DMakefile.inc11 CFLAGS+=-I${.CURDIR}/../../../../sys
12 CFLAGS+=-I${.CURDIR}/../../../../sys/dev/netif/ath/ath
13 CFLAGS+=-I${.CURDIR}/../../../../sys/dev/netif/ath/ath_hal

12345678910>>...14