Home
last modified time | relevance | path

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

/xnu-12377.1.9/bsd/kern/
H A Dkern_time.c841 struct timespec *tsp) in nanotime() argument
848 tsp->tv_sec = tv_sec; in nanotime()
849 tsp->tv_nsec = tv_nsec; in nanotime()
854 struct timespec *tsp) in nanouptime() argument
861 tsp->tv_sec = tv_sec; in nanouptime()
862 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-12377.1.9/bsd/vfs/
H A Dvfs_syscalls.c192 static int getutimes(user_addr_t usrtvp, struct timespec *tsp);
8456 getutimes(user_addr_t usrtvp, struct timespec *tsp) in getutimes() argument
8464 TIMEVAL_TO_TIMESPEC(&old_tv, &tsp[0]); in getutimes()
8465 tsp[1] = tsp[0]; in getutimes()
8473 TIMEVAL64_TO_TIMESPEC(&tv[0], &tsp[0]); in getutimes()
8474 TIMEVAL64_TO_TIMESPEC(&tv[1], &tsp[1]); in getutimes()
8481 TIMEVAL_TO_TIMESPEC(&tv[0], &tsp[0]); in getutimes()
8482 TIMEVAL_TO_TIMESPEC(&tv[1], &tsp[1]); in getutimes()