Home
last modified time | relevance | path

Searched refs:tsp (Results 1 – 3 of 3) sorted by relevance

/xnu-8020.121.3/bsd/kern/
H A Dkern_time.c793 struct timespec *tsp) in nanotime() argument
800 tsp->tv_sec = tv_sec; in nanotime()
801 tsp->tv_nsec = tv_nsec; in nanotime()
806 struct timespec *tsp) in nanouptime() argument
813 tsp->tv_sec = tv_sec; in nanouptime()
814 tsp->tv_nsec = tv_nsec; in nanouptime()
H A Dkern_authorization.c195 kauth_scope_t sp, tsp; in kauth_register_scope() local
206 TAILQ_FOREACH(tsp, &kauth_scopes, ks_link) { in kauth_register_scope()
208 if (strncmp(tsp->ks_identifier, identifier, in kauth_register_scope()
209 strlen(tsp->ks_identifier) + 1) == 0) { in kauth_register_scope()
/xnu-8020.121.3/bsd/vfs/
H A Dvfs_syscalls.c187 static int getutimes(user_addr_t usrtvp, struct timespec *tsp);
7458 getutimes(user_addr_t usrtvp, struct timespec *tsp) in getutimes() argument
7466 TIMEVAL_TO_TIMESPEC(&old_tv, &tsp[0]); in getutimes()
7467 tsp[1] = tsp[0]; in getutimes()
7475 TIMEVAL64_TO_TIMESPEC(&tv[0], &tsp[0]); in getutimes()
7476 TIMEVAL64_TO_TIMESPEC(&tv[1], &tsp[1]); in getutimes()
7483 TIMEVAL_TO_TIMESPEC(&tv[0], &tsp[0]); in getutimes()
7484 TIMEVAL_TO_TIMESPEC(&tv[1], &tsp[1]); in getutimes()