HomeSort by: relevance | last modified time | path
    Searched defs:ls64 (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/compat/linux32/common/
linux32_ipccall.c 292 struct linux32_semid64_ds ls64; local in function:linux32_semctl
312 error = copyin(NETBSD32PTR64(lsem.l_buf), &ls64,
313 sizeof ls64);
314 linux32_to_bsd_semid64_ds(&ls64, &bs);
366 bsd_to_linux32_semid64_ds(&bs, &ls64);
367 error = copyout(&ls64, NETBSD32PTR64(lsem.l_buf), sizeof ls64);
665 struct linux32_shmid64_ds ls64; local in function:linux32_shmctl
680 bsd_to_linux32_shmid64_ds(&bs, &ls64);
681 error = copyout(&ls64, SCARG_P32(uap, ptr), sizeof ls64)
    [all...]
  /src/sys/compat/linux/common/
linux_ipc.c 573 struct linux_shmid64_ds ls64; local in function:linux_sys_shmctl
598 bsd_to_linux_shmid64_ds(&bs, &ls64);
599 error = copyout(&ls64, SCARG(uap, buf), sizeof ls64);
608 error = copyin(SCARG(uap, buf), &ls64, sizeof ls64);
609 linux_to_bsd_shmid64_ds(&ls64, &bs);

Completed in 15 milliseconds