Home
last modified time | relevance | path

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

/Linux-v5.4/include/linux/
Dtime32.h39 struct old_timex32 { struct
73 int get_old_timex32(struct __kernel_timex *, const struct old_timex32 __user *); argument
74 int put_old_timex32(struct old_timex32 __user *, const struct __kernel_timex *);
Dsyscalls.h740 asmlinkage long sys_adjtimex_time32(struct old_timex32 __user *txc_p);
931 struct old_timex32 __user *tx);
/Linux-v5.4/kernel/time/
Dtime.c288 int get_old_timex32(struct __kernel_timex *txc, const struct old_timex32 __user *utp) in get_old_timex32()
290 struct old_timex32 tx32; in get_old_timex32()
293 if (copy_from_user(&tx32, utp, sizeof(struct old_timex32))) in get_old_timex32()
320 int put_old_timex32(struct old_timex32 __user *utp, const struct __kernel_timex *txc) in put_old_timex32()
322 struct old_timex32 tx32; in put_old_timex32()
324 memset(&tx32, 0, sizeof(struct old_timex32)); in put_old_timex32()
346 if (copy_to_user(utp, &tx32, sizeof(struct old_timex32))) in put_old_timex32()
351 SYSCALL_DEFINE1(adjtimex_time32, struct old_timex32 __user *, utp) in SYSCALL_DEFINE1()
Dposix-timers.c1161 struct old_timex32 __user *, utp) in SYSCALL_DEFINE2()