Home
last modified time | relevance | path

Searched refs:curpps (Results 1 – 4 of 4) sorted by relevance

/xnu-10002.41.9/bsd/security/audit/
H A Daudit_bsd.c423 _audit_ppsratecheck(struct timeval *lasttime, int *curpps, int maxpps) in _audit_ppsratecheck() argument
443 *curpps = 0; in _audit_ppsratecheck()
447 } else if (*curpps < maxpps) { in _audit_ppsratecheck()
452 if (*curpps + 1 > 0) { in _audit_ppsratecheck()
453 *curpps = *curpps + 1; in _audit_ppsratecheck()
H A Daudit_bsd.h307 int _audit_ppsratecheck(struct timeval *lasttime, int *curpps, int maxpps);
/xnu-10002.41.9/bsd/kern/
H A Dkern_time.c918 ppsratecheck(struct timeval *lasttime, int *curpps, int maxpps) in ppsratecheck() argument
938 *curpps = 0; in ppsratecheck()
942 } else if (*curpps < maxpps) { in ppsratecheck()
950 if (*curpps + 1 > 0) { in ppsratecheck()
951 *curpps = *curpps + 1; in ppsratecheck()
961 *curpps = *curpps + 1; in ppsratecheck()
/xnu-10002.41.9/bsd/sys/
H A Dtime.h229 int ppsratecheck(struct timeval *lasttime, int *curpps, int maxpps);