HomeSort by: relevance | last modified time | path
    Searched refs:acct (Results 1 - 25 of 72) sorted by relevancy

1 2 3

  /src/etc/
daily 139 if checkyesno purge_accounting && [ -f /var/account/acct ]; then
142 if [ -f /var/account/acct.0.gz ]; then
143 mv /var/account/acct.2.gz /var/account/acct.3.gz 2>/dev/null
144 mv /var/account/acct.1.gz /var/account/acct.2.gz 2>/dev/null
145 mv /var/account/acct.0.gz /var/account/acct.1.gz 2>/dev/null
147 mv /var/account/acct.2 /var/account/acct.3 2>/dev/nul
    [all...]
  /src/usr.sbin/accton/
accton.c 72 if (acct(NULL))
73 err(1, "acct");
76 if (acct(*argv))
77 err(1, "acct `%s'", *argv);
  /src/sys/kern/
kern_acct.c 79 #include <sys/acct.h>
338 if ((pad = (va.va_size % sizeof(struct acct))) != 0) {
343 (unsigned long)sizeof(struct acct));
404 * "acct.h" header file.)
409 struct acct acct; local
419 memset(&acct, 0, sizeof(acct)); /* to zerofill padded data */
444 strncpy(acct.ac_comm, p->p_comm, sizeof(acct.ac_comm))
    [all...]
  /src/sys/arch/alpha/alpha/
linux_trap.c 38 #include <sys/acct.h>
  /src/sys/arch/arm/arm/
linux_trap.c 38 #include <sys/acct.h>
ast.c 51 #include <sys/acct.h>
  /src/sys/arch/m68k/m68k/
linux_trap.c 38 #include <sys/acct.h>
linux_syscall.c 77 #include <sys/acct.h>
  /src/sys/arch/mips/mips/
linux_trap.c 38 #include <sys/acct.h>
  /src/sys/arch/powerpc/powerpc/
linux_trap.c 38 #include <sys/acct.h>
  /src/usr.bin/lastcomm/
lastcomm.c 47 #include <sys/acct.h>
67 static int requested(char *[], const struct acct *);
74 struct acct ab;
120 lwidth = (int)fldsiz(acct, ac_comm) - ((wflag)? 0: 6);
130 p < &ab.ac_comm[fldsiz(acct, ac_comm)] && *p; ++p)
197 requested(char *argv[], const struct acct *acp)
204 if (!strncmp(acp->ac_comm, *argv, fldsiz(acct, ac_comm)))
  /src/sys/sys/
acct.h 1 /* $NetBSD: acct.h,v 1.28 2021/09/14 17:10:46 christos Exp $ */
36 * @(#)acct.h 8.3 (Berkeley) 7/10/94
49 struct acct { struct
  /src/sys/arch/evbmips/loongson/
loongson_bus_io.c 72 bus_space_handle_t *hp, int acct)
89 return __BS(map)(v, addr, size, flags, hp, acct);
  /src/sys/arch/alpha/jensenio/
jensenio_bus_intio.c 139 bus_space_handle_t *iohp, int acct)
151 if (acct) {
173 int acct)
178 if (acct == 0)
  /src/external/cddl/osnet/dist/lib/pyzfs/common/
userspace.py 103 def process_one_raw(acct, options, prop, elem):
104 """Update the acct dict to incorporate the
120 v = acct[key]
125 acct[key] = v
216 acct = dict()
221 process_one_raw(acct, options, prop, elem)
244 for val in acct.itervalues():
  /src/sys/arch/alpha/gbus/
gbus_io.c 71 int acct __unused)
85 int acct __unused)
  /src/share/man/man5/
Makefile 8 MAN= a.out.5 acct.5 ar.5 boot.cfg.5 \
  /src/sys/compat/common/
kern_exit_43.c 61 #include <sys/acct.h>
  /src/sys/compat/netbsd32/
netbsd32_kern_proc.c 80 #include <sys/acct.h>
  /src/sys/arch/mips/adm5120/
adm5120_cfio.c 207 cf_bs_unmap(void *cookie, bus_space_handle_t bh, bus_size_t size, int acct)
209 KASSERT(acct == 1);
257 bus_space_handle_t *bhp, int acct)
261 KASSERT(acct == 1);
  /src/external/bsd/wpa/dist/src/ap/
ieee802_1x.h 62 struct radius_msg *msg, int acct);
  /src/usr.sbin/sa/
main.c 50 #include <sys/acct.h>
300 struct acct ac;
320 if (fread(&ac, sizeof(struct acct), 1, fp) != 1) {
379 * /usr/src/sys/sys/acct.h
  /src/sys/arch/x86/x86/
linux_trap.c 42 #include <sys/acct.h>
  /src/external/bsd/wpa/dist/src/radius/
radius_client.c 325 * radius_client_set_interim_erro_cb - Register an interim acct error callback
388 bool acct = false; local
394 acct = true;
455 if ((acct && radius->acct_tls && !radius->acct_tls_ready) ||
456 (!acct && radius->auth_tls && !radius->auth_tls_ready)) {
478 /* Update Acct-Delay-Time to show wait time in queue */
483 "RADIUS: Updated Acct-Delay-Time to %u for retransmission",
859 bool acct = false; local
864 acct = true;
916 if ((acct && radius->acct_tls && !radius->acct_tls_ready) |
    [all...]
  /src/include/
unistd.h 339 int acct(const char *);

Completed in 38 milliseconds

1 2 3