HomeSort by: relevance | last modified time | path
    Searched refs:ost (Results 1 - 22 of 22) sorted by relevancy

  /src/lib/libc/compat/sys/
compat___stat13.c 73 cvtstat(struct stat13 *ost, const struct stat *st)
76 ost->st_dev = (uint32_t)st->st_dev;
77 ost->st_ino = (uint32_t)st->st_ino;
78 ost->st_mode = st->st_mode;
79 ost->st_nlink = st->st_nlink;
80 ost->st_uid = st->st_uid;
81 ost->st_gid = st->st_gid;
82 ost->st_rdev = (uint32_t)st->st_rdev;
83 ost->st_atimespec.tv_sec = (int32_t)st->st_atimespec.tv_sec;
84 ost->st_atimespec.tv_nsec = st->st_atimespec.tv_nsec
    [all...]
compat_stat.c 66 cvtstat(const struct stat *st, struct stat12 *ost)
69 ost->st_dev = (uint32_t)st->st_dev;
70 ost->st_ino = (uint32_t)st->st_ino;
71 ost->st_mode = st->st_mode;
73 ost->st_nlink = (1 << 15) - 1;
75 ost->st_nlink = st->st_nlink;
76 ost->st_uid = st->st_uid;
77 ost->st_gid = st->st_gid;
78 ost->st_rdev = (uint32_t)st->st_rdev;
79 ost->st_atimespec.tv_sec = (int32_t)st->st_atimespec.tv_sec
    [all...]
compat___stat30.c 74 cvtstat(struct stat30 *ost, const struct stat *st)
77 ost->st_dev = (uint32_t)st->st_dev;
78 ost->st_ino = st->st_ino;
79 ost->st_mode = st->st_mode;
80 ost->st_nlink = st->st_nlink;
81 ost->st_uid = st->st_uid;
82 ost->st_gid = st->st_gid;
83 ost->st_rdev = (uint32_t)st->st_rdev;
84 timespec_to_timespec50(&st->st_atimespec, &ost->st_atimespec);
85 timespec_to_timespec50(&st->st_mtimespec, &ost->st_mtimespec)
    [all...]
compat_statfs.c 67 __compat_statfs(const char *file, struct statfs12 *ost)
74 statvfs_to_statfs12(&nst, ost);
79 __compat_fstatfs(int f, struct statfs12 *ost)
86 statvfs_to_statfs12(&nst, ost);
91 __compat_fhstatfs(const struct compat_30_fhandle *fh, struct statfs12 *ost)
98 statvfs_to_statfs12(&nst, ost);
103 __compat_getfsstat(struct statfs12 *ost, long size, int flags)
107 size_t bsize = (size_t)(size / sizeof(*ost)) * sizeof(*nst);
109 if (ost != NULL) {
119 statvfs_to_statfs12(&nst[i], &ost[i])
    [all...]
  /src/sys/compat/common/
vfs_syscalls_50.c 90 cvtstat(struct stat30 *ost, const struct stat *st)
94 memset(ost, 0, sizeof(*ost));
95 ost->st_dev = st->st_dev;
96 ost->st_ino = st->st_ino;
97 ost->st_mode = st->st_mode;
98 ost->st_nlink = st->st_nlink;
99 ost->st_uid = st->st_uid;
100 ost->st_gid = st->st_gid;
101 ost->st_rdev = st->st_rdev
    [all...]
vfs_syscalls_12.c 82 compat_12_stat_conv(const struct stat *st, struct stat12 *ost)
85 memset(ost, 0, sizeof(*ost));
86 ost->st_dev = st->st_dev;
87 ost->st_ino = st->st_ino;
88 ost->st_mode = st->st_mode & 0xffff;
90 ost->st_nlink = (1 << 15) - 1;
92 ost->st_nlink = st->st_nlink;
93 ost->st_uid = st->st_uid;
94 ost->st_gid = st->st_gid
    [all...]
vfs_syscalls_30.c 83 cvtstat(struct stat13 *ost, const struct stat *st)
87 memset(ost, 0, sizeof(*ost));
88 ost->st_dev = st->st_dev;
89 ost->st_ino = (uint32_t)st->st_ino;
90 ost->st_mode = st->st_mode;
91 ost->st_nlink = st->st_nlink;
92 ost->st_uid = st->st_uid;
93 ost->st_gid = st->st_gid;
94 ost->st_rdev = st->st_rdev
    [all...]
vfs_syscalls_43.c 120 cvtstat(struct stat43 *ost, const struct stat *st)
124 memset(ost, 0, sizeof(*ost));
125 ost->st_dev = st->st_dev;
126 ost->st_ino = st->st_ino;
127 ost->st_mode = st->st_mode & 0xffff;
128 ost->st_nlink = st->st_nlink;
129 ost->st_uid = st->st_uid;
130 ost->st_gid = st->st_gid;
131 ost->st_rdev = st->st_rdev
    [all...]
  /src/tests/lib/libc/c063/
t_linkat.c 64 struct stat ost, nst; local in function:ATF_TC_BODY
77 ATF_REQUIRE(stat(FILE, &ost) == 0);
79 ATF_REQUIRE(ost.st_ino == nst.st_ino);
91 struct stat ost, nst; local in function:ATF_TC_BODY
100 ATF_REQUIRE(stat(FILE, &ost) == 0);
102 ATF_REQUIRE(ost.st_ino == nst.st_ino);
150 struct stat ost, nst; local in function:ATF_TC_BODY
165 ATF_REQUIRE(lstat(LINK, &ost) == 0);
167 ATF_REQUIRE(ost.st_ino != nst.st_ino);
169 ATF_REQUIRE(lstat(FILE, &ost) == 0)
183 struct stat ost, nst; local in function:ATF_TC_BODY
    [all...]
t_symlinkat.c 62 struct stat ost, nst; local in function:ATF_TC_BODY
73 ATF_REQUIRE(stat(FILE, &ost) == 0);
75 ATF_REQUIRE(ost.st_ino == nst.st_ino);
87 struct stat ost, nst; local in function:ATF_TC_BODY
96 ATF_REQUIRE(stat(FILE, &ost) == 0);
98 ATF_REQUIRE(ost.st_ino == nst.st_ino);
t_renameat.c 62 struct stat ost, nst; local in function:ATF_TC_BODY
69 ATF_REQUIRE(stat(FILE, &ost) == 0);
78 ATF_REQUIRE(ost.st_ino == nst.st_ino);
91 struct stat ost, nst; local in function:ATF_TC_BODY
98 ATF_REQUIRE(stat(FILE, &ost) == 0);
103 ATF_REQUIRE(ost.st_ino == nst.st_ino);
  /src/sys/conf/
newvers.sh 231 ost="NetBSD"
234 fullversion="${ost} ${osr} (${id})${reproversion}\n"
257 const char ostype[] = "${ost}";
  /src/sys/external/gpl2/dts/dist/arch/mips/boot/dts/ingenic/
cu1000-neo.dts 91 &ost {
93 assigned-clocks = <&ost OST_CLK_PERCPU_TIMER>, <&ost OST_CLK_GLOBAL_TIMER>;
cu1830-neo.dts 91 &ost {
93 assigned-clocks = <&ost OST_CLK_PERCPU_TIMER>, <&ost OST_CLK_GLOBAL_TIMER>;
jz4780.dtsi 138 ost: timer@e0 { label in label:tcu
139 compatible = "ingenic,jz4780-ost", "ingenic,jz4770-ost";
143 clock-names = "ost";
x1830.dtsi 83 ost: timer@12000000 { label
84 compatible = "ingenic,x1830-ost", "ingenic,x1000-ost";
90 clock-names = "ost";
jz4725b.dtsi 105 ost: timer@e0 { label in label:tcu
106 compatible = "ingenic,jz4725b-ost";
110 clock-names = "ost";
jz4770.dtsi 118 ost: timer@e0 { label in label:tcu
119 compatible = "ingenic,jz4770-ost";
123 clock-names = "ost";
x1000.dtsi 90 ost: timer@12000000 { label
91 compatible = "ingenic,x1000-ost";
97 clock-names = "ost";
  /src/bin/csh/
exec.c 271 Char *lastsh[2], **vp, *st0, **ost; local in function:texec
326 ost = st;
328 ost[0] = st0;
  /src/sys/compat/sys/
stat.h 178 void compat_12_stat_conv(const struct stat *st, struct stat12 *ost);
  /src/usr.bin/xlint/lint1/
tree.c 3838 const type_t *ostp, tspec_t ost)
3843 while (ost == ARRAY)
3844 ostp = ostp->t_subt, ost = ostp->t_tspec;
3846 if (nst == STRUCT && ost == STRUCT &&
3856 if (ost == CHAR || ost == UCHAR)
3860 if (nst == STRUCT && ost == STRUCT) {
3875 if (nst == UNION || ost == UNION) {
3882 if (is_struct_or_union(nst) && is_struct_or_union(ost))
3886 enum rank_kind rk2 = type_properties(ost)->tt_rank_kind
3900 tspec_t ost = ostp->t_tspec; local in function:convert_pointer_from_pointer
    [all...]

Completed in 143 milliseconds