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

  /src/sys/compat/linux32/common/
linux32_stat.c 85 bsd_to_linux32_stat(struct stat *st, struct linux32_stat *st32)
87 memset(st32, 0, sizeof(*st32));
88 st32->lst_dev = linux_fakedev(st->st_dev, 0);
89 st32->lst_ino = st->st_ino;
90 st32->lst_mode = st->st_mode;
92 st32->lst_nlink = (1 << 15) - 1;
94 st32->lst_nlink = st->st_nlink;
95 st32->lst_uid = st->st_uid;
96 st32->lst_gid = st->st_gid
150 struct linux32_stat st32; local in function:linux32_sys_stat
169 struct linux32_stat st32; local in function:linux32_sys_lstat
188 struct linux32_stat st32; local in function:linux32_sys_fstat
207 struct linux32_stat64 st32; local in function:linux32_sys_stat64
226 struct linux32_stat64 st32; local in function:linux32_sys_lstat64
245 struct linux32_stat64 st32; local in function:linux32_sys_fstat64
265 struct linux32_stat64 st32; local in function:linux32_sys_fstatat64
    [all...]
  /src/sys/compat/netbsd32/
netbsd32_drm.c 333 drm_stats32_t st32; local in function:compat_drm_getstats
337 if ((error = copyin(&st32, arg, sizeof(st32))) != 0)
340 st64.count = st32.count;
349 st32.data[i].value = st64.data[i].value;
350 st32.data[i].type = st64.data[i].type;
352 st32.count = st64.count;
354 return copyout(arg, &st32, sizeof(s32));

Completed in 12 milliseconds