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

  /src/lib/libc/compat/sys/
compat_stat.c 95 struct stat nst; local in function:__compat_stat
98 if ((ret = __stat50(file, &nst)) < 0)
100 cvtstat(&nst, ost);
107 struct stat nst; local in function:__compat_fstat
110 if ((ret = __fstat50(f, &nst)) < 0)
112 cvtstat(&nst, ost);
119 struct stat nst; local in function:__compat_lstat
122 if ((ret = __lstat50(file, &nst)) < 0)
124 cvtstat(&nst, ost);
compat___stat13.c 101 struct stat nst; local in function:__compat___stat13
104 if ((ret = __stat50(file, &nst)) == -1)
106 cvtstat(ost, &nst);
113 struct stat nst; local in function:__compat___fstat13
116 if ((ret = __fstat50(f, &nst)) == -1)
118 cvtstat(ost, &nst);
125 struct stat nst; local in function:__compat___lstat13
128 if ((ret = __lstat50(file, &nst)) == -1)
130 cvtstat(ost, &nst);
137 struct stat nst; local in function:__compat_fhstat
    [all...]
compat___stat30.c 98 struct stat nst; local in function:__compat___stat30
101 if ((ret = __stat50(file, &nst)) == -1)
103 cvtstat(ost, &nst);
110 struct stat nst; local in function:__compat___fstat30
113 if ((ret = __fstat50(f, &nst)) == -1)
115 cvtstat(ost, &nst);
122 struct stat nst; local in function:__compat___lstat30
125 if ((ret = __lstat50(file, &nst)) == -1)
127 cvtstat(ost, &nst);
134 struct stat nst; local in function:__compat___fhstat40
    [all...]
compat_statfs.c 69 struct statvfs nst; variable in typeref:struct:statvfs
72 if ((ret = __statvfs90(file, &nst)) == -1)
74 statvfs_to_statfs12(&nst, ost);
81 struct statvfs nst; local in function:__compat_fstatfs
84 if ((ret = __fstatvfs90(f, &nst)) == -1)
86 statvfs_to_statfs12(&nst, ost);
93 struct statvfs nst; local in function:__compat_fhstatfs
96 if ((ret = __fhstatvfs190(fh, FHANDLE30_SIZE, &nst, ST_WAIT)) == -1)
98 statvfs_to_statfs12(&nst, ost);
105 struct statvfs *nst; local in function:__compat_getfsstat
    [all...]
  /src/tests/lib/libc/c063/
t_renameat.c 62 struct stat ost, nst; local in function:ATF_TC_BODY
77 ATF_REQUIRE(stat(TARGET, &nst) == 0);
78 ATF_REQUIRE(ost.st_ino == nst.st_ino);
91 struct stat ost, nst; local in function:ATF_TC_BODY
102 ATF_REQUIRE(stat(TARGET, &nst) == 0);
103 ATF_REQUIRE(ost.st_ino == nst.st_ino);
t_symlinkat.c 62 struct stat ost, nst; local in function:ATF_TC_BODY
74 ATF_REQUIRE(stat(LINK, &nst) == 0);
75 ATF_REQUIRE(ost.st_ino == nst.st_ino);
87 struct stat ost, nst; local in function:ATF_TC_BODY
97 ATF_REQUIRE(stat(LINK, &nst) == 0);
98 ATF_REQUIRE(ost.st_ino == nst.st_ino);
t_linkat.c 64 struct stat ost, nst; local in function:ATF_TC_BODY
78 ATF_REQUIRE(stat(TARGET, &nst) == 0);
79 ATF_REQUIRE(ost.st_ino == nst.st_ino);
91 struct stat ost, nst; local in function:ATF_TC_BODY
101 ATF_REQUIRE(stat(TARGET, &nst) == 0);
102 ATF_REQUIRE(ost.st_ino == nst.st_ino);
150 struct stat ost, nst; local in function:ATF_TC_BODY
166 ATF_REQUIRE(lstat(TARGET, &nst) == 0);
167 ATF_REQUIRE(ost.st_ino != nst.st_ino);
170 ATF_REQUIRE(lstat(TARGET, &nst) == 0)
183 struct stat ost, nst; local in function:ATF_TC_BODY
    [all...]
  /src/usr.sbin/npf/npftest/libnpftest/
npf_state_test.c 134 process_packet(const int i, npf_state_t *nst, bool *snew)
141 npf_state_destroy(nst);
148 ret = npf_state_init(npc, nst);
152 ret = npf_state_inspect(npc, nst,
162 npf_state_t nst; local in function:npf_state_test
167 if (process_packet(i, &nst, &snew)) {
172 npf_state_dump(&nst);
  /src/usr.bin/xlint/lint1/
tree.c 3837 should_warn_about_pointer_cast(const type_t *nstp, tspec_t nst,
3841 while (nst == ARRAY)
3842 nstp = nstp->t_subt, nst = nstp->t_tspec;
3846 if (nst == STRUCT && ost == STRUCT &&
3854 if (nst == CHAR || nst == UCHAR)
3860 if (nst == STRUCT && ost == STRUCT) {
3875 if (nst == UNION || ost == UNION) {
3876 const type_t *union_tp = nst == UNION ? nstp : ostp;
3877 const type_t *other_tp = nst == UNION ? ostp : nstp
3899 tspec_t nst = nstp->t_tspec; local in function:convert_pointer_from_pointer
    [all...]

Completed in 65 milliseconds