Home
last modified time | relevance | path

Searched refs:nst (Results 1 – 25 of 26) sorted by relevance

12

/netbsd-src/lib/libc/compat/sys/
H A Dcompat_statfs.c69 struct statvfs nst; in __strong_alias() local
72 if ((ret = __statvfs90(file, &nst)) == -1) in __strong_alias()
74 statvfs_to_statfs12(&nst, ost); in __strong_alias()
81 struct statvfs nst; in __compat_fstatfs() local
84 if ((ret = __fstatvfs90(f, &nst)) == -1) in __compat_fstatfs()
86 statvfs_to_statfs12(&nst, ost); in __compat_fstatfs()
93 struct statvfs nst; in __compat_fhstatfs() local
96 if ((ret = __fhstatvfs190(fh, FHANDLE30_SIZE, &nst, ST_WAIT)) == -1) in __compat_fhstatfs()
98 statvfs_to_statfs12(&nst, ost); in __compat_fhstatfs()
105 struct statvfs *nst; in __compat_getfsstat() local
[all …]
H A Dcompat___stat30.c98 struct stat nst; in __compat___stat30() local
101 if ((ret = __stat50(file, &nst)) == -1) in __compat___stat30()
103 cvtstat(ost, &nst); in __compat___stat30()
110 struct stat nst; in __compat___fstat30() local
113 if ((ret = __fstat50(f, &nst)) == -1) in __compat___fstat30()
115 cvtstat(ost, &nst); in __compat___fstat30()
122 struct stat nst; in __compat___lstat30() local
125 if ((ret = __lstat50(file, &nst)) == -1) in __compat___lstat30()
127 cvtstat(ost, &nst); in __compat___lstat30()
134 struct stat nst; in __compat___fhstat40() local
[all …]
H A Dcompat___stat13.c101 struct stat nst; in __compat___stat13() local
104 if ((ret = __stat50(file, &nst)) == -1) in __compat___stat13()
106 cvtstat(ost, &nst); in __compat___stat13()
113 struct stat nst; in __compat___fstat13() local
116 if ((ret = __fstat50(f, &nst)) == -1) in __compat___fstat13()
118 cvtstat(ost, &nst); in __compat___fstat13()
125 struct stat nst; in __compat___lstat13() local
128 if ((ret = __lstat50(file, &nst)) == -1) in __compat___lstat13()
130 cvtstat(ost, &nst); in __compat___lstat13()
137 struct stat nst; in __compat_fhstat() local
[all …]
H A Dcompat_stat.c95 struct stat nst; in __compat_stat() local
98 if ((ret = __stat50(file, &nst)) < 0) in __compat_stat()
100 cvtstat(&nst, ost); in __compat_stat()
107 struct stat nst; in __compat_fstat() local
110 if ((ret = __fstat50(f, &nst)) < 0) in __compat_fstat()
112 cvtstat(&nst, ost); in __compat_fstat()
119 struct stat nst; in __compat_lstat() local
122 if ((ret = __lstat50(file, &nst)) < 0) in __compat_lstat()
124 cvtstat(&nst, ost); in __compat_lstat()
/netbsd-src/sys/net/npf/
H A Dnpf_state.c145 npf_state_init(npf_cache_t *npc, npf_state_t *nst) in npf_state_init() argument
153 memset(nst, 0, sizeof(npf_state_t)); in npf_state_init()
158 ret = npf_state_tcp(npc, nst, NPF_FLOW_FORW); in npf_state_init()
164 nst->nst_state = npf_generic_fsm[nst->nst_state][NPF_FLOW_FORW]; in npf_state_init()
170 NPF_STATE_SAMPLE(nst, ret); in npf_state_init()
175 npf_state_destroy(npf_state_t *nst) in npf_state_destroy() argument
177 nst->nst_state = 0; in npf_state_destroy()
187 npf_state_inspect(npf_cache_t *npc, npf_state_t *nst, const npf_flow_t flow) in npf_state_inspect() argument
195 ret = npf_state_tcp(npc, nst, flow); in npf_state_inspect()
201 nst->nst_state = npf_generic_fsm[nst->nst_state][flow]; in npf_state_inspect()
[all …]
H A Dnpf_state_tcp.c292 npf_tcp_inwindow(npf_cache_t *npc, npf_state_t *nst, const npf_flow_t flow) in npf_tcp_inwindow() argument
332 fstate = &nst->nst_tcpst[flow]; in npf_tcp_inwindow()
333 tstate = &nst->nst_tcpst[!flow]; in npf_tcp_inwindow()
392 if (seq == 0 && nst->nst_state == NPF_TCPS_SYN_SENT) { in npf_tcp_inwindow()
458 npf_state_tcp(npf_cache_t *npc, npf_state_t *nst, npf_flow_t flow) in npf_state_tcp() argument
461 const unsigned tcpfl = th->th_flags, state = nst->nst_state; in npf_state_tcp()
464 KASSERT(nst->nst_state < NPF_TCP_NSTATES); in npf_state_tcp()
478 if (!npf_tcp_inwindow(npc, nst, flow)) { in npf_state_tcp()
485 nst->nst_state = nstate; in npf_state_tcp()
490 npf_state_tcp_timeout(npf_t *npf, const npf_state_t *nst) in npf_state_tcp_timeout() argument
[all …]
/netbsd-src/tests/lib/libc/c063/
H A Dt_linkat.c64 struct stat ost, nst; in ATF_TC_BODY() local
78 ATF_REQUIRE(stat(TARGET, &nst) == 0); in ATF_TC_BODY()
79 ATF_REQUIRE(ost.st_ino == nst.st_ino); in ATF_TC_BODY()
91 struct stat ost, nst; in ATF_TC_BODY() local
101 ATF_REQUIRE(stat(TARGET, &nst) == 0); in ATF_TC_BODY()
102 ATF_REQUIRE(ost.st_ino == nst.st_ino); in ATF_TC_BODY()
150 struct stat ost, nst; in ATF_TC_BODY() local
166 ATF_REQUIRE(lstat(TARGET, &nst) == 0); in ATF_TC_BODY()
167 ATF_REQUIRE(ost.st_ino != nst.st_ino); in ATF_TC_BODY()
170 ATF_REQUIRE(lstat(TARGET, &nst) == 0); in ATF_TC_BODY()
[all …]
H A Dt_renameat.c62 struct stat ost, nst; in ATF_TC_BODY() local
77 ATF_REQUIRE(stat(TARGET, &nst) == 0); in ATF_TC_BODY()
78 ATF_REQUIRE(ost.st_ino == nst.st_ino); in ATF_TC_BODY()
91 struct stat ost, nst; in ATF_TC_BODY() local
102 ATF_REQUIRE(stat(TARGET, &nst) == 0); in ATF_TC_BODY()
103 ATF_REQUIRE(ost.st_ino == nst.st_ino); in ATF_TC_BODY()
H A Dt_symlinkat.c62 struct stat ost, nst; in ATF_TC_BODY() local
74 ATF_REQUIRE(stat(LINK, &nst) == 0); in ATF_TC_BODY()
75 ATF_REQUIRE(ost.st_ino == nst.st_ino); in ATF_TC_BODY()
87 struct stat ost, nst; in ATF_TC_BODY() local
97 ATF_REQUIRE(stat(LINK, &nst) == 0); in ATF_TC_BODY()
98 ATF_REQUIRE(ost.st_ino == nst.st_ino); in ATF_TC_BODY()
/netbsd-src/usr.sbin/npf/npftest/libnpftest/
H A Dnpf_state_test.c134 process_packet(const int i, npf_state_t *nst, bool *snew) in process_packet() argument
141 npf_state_destroy(nst); in process_packet()
148 ret = npf_state_init(npc, nst); in process_packet()
152 ret = npf_state_inspect(npc, nst, in process_packet()
162 npf_state_t nst; in npf_state_test() local
167 if (process_packet(i, &nst, &snew)) { in npf_state_test()
172 npf_state_dump(&nst); in npf_state_test()
H A Dnpf_test_subr.c212 npf_state_sample(npf_state_t *nst, bool retval) in npf_state_sample() argument
215 cstream_ptr = nst; in npf_state_sample()
216 memcpy(&cstream_state, nst, sizeof(npf_state_t)); in npf_state_sample()
/netbsd-src/external/ibm-public/postfix/dist/src/postconf/
H A Dpostconf_builtin.c389 const CONFIG_NINT_TABLE *nst; in pcf_register_builtin_parameters() local
433 for (nst = pcf_nint_table; nst->name; nst++) in pcf_register_builtin_parameters()
434 PCF_PARAM_TABLE_ENTER(pcf_param_table, nst->name, in pcf_register_builtin_parameters()
435 PCF_PARAM_FLAG_BUILTIN, (void *) nst, in pcf_register_builtin_parameters()
/netbsd-src/external/bsd/unbound/dist/testdata/
H A Dtest_ldnsrr.171 aero. 172800 IN NS a0.aero.afilias-nst.info.
72 aero. 172800 IN NS a2.aero.afilias-nst.info.
73 aero. 172800 IN NS b0.aero.afilias-nst.org.
74 aero. 172800 IN NS b2.aero.afilias-nst.org.
75 aero. 172800 IN NS c0.aero.afilias-nst.info.
76 aero. 172800 IN NS d0.aero.afilias-nst.org.
91 ag. 172800 IN NS a0.cctld.afilias-nst.info.
92 ag. 172800 IN NS a2.cctld.afilias-nst.info.
93 ag. 172800 IN NS b0.cctld.afilias-nst.org.
94 ag. 172800 IN NS b2.cctld.afilias-nst.org.
[all …]
H A Dtest_ldnsrr.c1140 aero. 172800 IN NS a0.aero.afilias-nst.info.
142 aero. 172800 IN NS a2.aero.afilias-nst.info.
144 aero. 172800 IN NS b0.aero.afilias-nst.org.
146 aero. 172800 IN NS b2.aero.afilias-nst.org.
148 aero. 172800 IN NS c0.aero.afilias-nst.info.
150 aero. 172800 IN NS d0.aero.afilias-nst.org.
180 ag. 172800 IN NS a0.cctld.afilias-nst.info.
182 ag. 172800 IN NS a2.cctld.afilias-nst.info.
184 ag. 172800 IN NS b0.cctld.afilias-nst.org.
186 ag. 172800 IN NS b2.cctld.afilias-nst.org.
[all …]
H A Diter_pcdirect.rpl52 org. IN NS a0.org.afilias-nst.org.
54 a0.org.afilias-nst.org. IN A 199.19.56.1
84 ; a0.org.afilias-nst.org.
94 org. IN NS a0.org.afilias-nst.org.
96 a0.org.afilias-nst.org. IN A 199.19.56.1
/netbsd-src/external/gpl3/gcc.old/dist/libcpp/
H A Dcharset.c916 struct normalize_state *nst) in ucn_valid_in_identifier() argument
958 if (ucnranges[mn].combine != 0 && ucnranges[mn].combine < nst->prev_class) in ucn_valid_in_identifier()
959 nst->level = normalized_none; in ucn_valid_in_identifier()
963 cppchar_t p = nst->previous; in ucn_valid_in_identifier()
981 nst->level = MAX (nst->level, normalized_identifier_C); in ucn_valid_in_identifier()
983 nst->level = normalized_none; in ucn_valid_in_identifier()
989 nst->level = MAX (nst->level, normalized_C); in ucn_valid_in_identifier()
991 nst->level = MAX (nst->level, normalized_identifier_C); in ucn_valid_in_identifier()
993 nst->level = normalized_none; in ucn_valid_in_identifier()
995 nst->previous = c; in ucn_valid_in_identifier()
[all …]
H A Dlex.c1457 struct normalize_state *nst, cpp_hashnode **spelling) in lex_identifier() argument
1472 NORMALIZE_STATE_UPDATE_IDNUM (nst, *(cur - 1)); in lex_identifier()
1475 if (starts_ucn || forms_identifier_p (pfile, false, nst)) in lex_identifier()
1482 NORMALIZE_STATE_UPDATE_IDNUM (nst, *pfile->buffer->cur); in lex_identifier()
1485 } while (forms_identifier_p (pfile, false, nst)); in lex_identifier()
1542 struct normalize_state *nst) in lex_number() argument
1557 NORMALIZE_STATE_UPDATE_IDNUM (nst, *cur); in lex_number()
1566 while (forms_identifier_p (pfile, false, nst)); in lex_number()
2800 struct normalize_state nst = INITIAL_NORMALIZE_STATE; in _cpp_lex_direct() local
2802 lex_number (pfile, &result->val.str, &nst); in _cpp_lex_direct()
[all …]
H A Dinternal.h809 struct normalize_state *nst,
/netbsd-src/external/gpl3/gcc/dist/libcpp/
H A Dcharset.cc933 struct normalize_state *nst) in ucn_valid_in_identifier() argument
969 if (ucnranges[mn].combine != 0 && ucnranges[mn].combine < nst->prev_class) in ucn_valid_in_identifier()
970 nst->level = normalized_none; in ucn_valid_in_identifier()
974 cppchar_t p = nst->previous; in ucn_valid_in_identifier()
992 nst->level = MAX (nst->level, normalized_identifier_C); in ucn_valid_in_identifier()
994 nst->level = normalized_none; in ucn_valid_in_identifier()
1000 nst->level = MAX (nst->level, normalized_C); in ucn_valid_in_identifier()
1002 nst->level = MAX (nst->level, normalized_identifier_C); in ucn_valid_in_identifier()
1004 nst->level = normalized_none; in ucn_valid_in_identifier()
1006 nst->previous = c; in ucn_valid_in_identifier()
[all …]
H A Dlex.cc2014 struct normalize_state *nst, cpp_hashnode **spelling) in lex_identifier() argument
2030 NORMALIZE_STATE_UPDATE_IDNUM (nst, *(cur - 1)); in lex_identifier()
2033 if (starts_ucn || forms_identifier_p (pfile, false, nst)) in lex_identifier()
2040 NORMALIZE_STATE_UPDATE_IDNUM (nst, *pfile->buffer->cur); in lex_identifier()
2043 } while (forms_identifier_p (pfile, false, nst)); in lex_identifier()
2102 struct normalize_state *nst) in lex_number() argument
2120 NORMALIZE_STATE_UPDATE_IDNUM (nst, *cur); in lex_number()
2136 while (forms_identifier_p (pfile, false, nst)); in lex_number()
3635 struct normalize_state nst = INITIAL_NORMALIZE_STATE; in _cpp_lex_direct() local
3637 lex_number (pfile, &result->val.str, &nst); in _cpp_lex_direct()
[all …]
H A Dinternal.h834 struct normalize_state *nst,
H A DChangeLog3948 checks. Only store starter characters in nst->previous.
/netbsd-src/usr.bin/xlint/lint1/
H A Dtree.c3793 should_warn_about_pointer_cast(const type_t *nstp, tspec_t nst, in convert_constant_from_floating()
3797 while (nst == ARRAY)
3798 nstp = nstp->t_subt, nst = nstp->t_tspec; in convert_constant_to_floating()
3802 if (nst == STRUCT && ost == STRUCT && in convert_constant_to_floating()
3810 if (nst == CHAR || nst == UCHAR) in convert_constant_to_floating()
3816 if (nst == STRUCT && ost == STRUCT) {
3831 if (nst == UNION || ost == UNION) { in convert_constant_check_range_bitand()
3832 const type_t *union_tp = nst == UNION ? nstp : ostp; in convert_constant_check_range_bitand()
3833 const type_t *other_tp = nst in convert_constant_check_range_bitand()
3562 should_warn_about_pointer_cast(const type_t * nstp,tspec_t nst,const type_t * ostp,tspec_t ost) should_warn_about_pointer_cast() argument
3624 tspec_t nst = nstp->t_tspec; convert_pointer_from_pointer() local
[all...]
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dmatch.pd4020 tree nst = build_int_cst (integer_type_node, ns);
4022 (bit_and (convert (rshift:utype (convert:utype @1) {nst;})) @3))))))))
4044 (with { tree nst = build_int_cst (integer_type_node, prec - 8); }
4045 (rshift (convert (lshift:st (convert:st @0) {nst;})) @1))
4053 tree nst = build_int_cst (integer_type_node, bits & 7);
4057 (convert (rshift:bt (convert:bt @0) {nst;})))))))))
4068 tree nst = build_int_cst (integer_type_node, prec - 8);
4070 (bit_and (convert (rshift:utype (convert:utype @0) {nst;})) @1)))))
/netbsd-src/etc/
H A Dservices10635 nst 4687/tcp # Network Scanner Tool FTP [Mala_Bhat] …
10636 nst 4687/udp # Network Scanner Tool FTP [Mala_Bhat] …

12