Home
last modified time | relevance | path

Searched refs:stat (Results 1 – 25 of 2612) sorted by relevance

12345678910>>...105

/netbsd-src/external/ibm-public/postfix/dist/src/util/
H A Dmac_expand.ref4 stat=0 result=name1-value
7 stat=1 result=
9 stat=0 result=name1-value
11 stat=0 result=name1-value
13 stat=0 result=name1-value
16 stat=1 result=
19 stat=1 result=
22 stat=1 result=
25 stat=1 result=
28 stat=1 result=
[all …]
/netbsd-src/sys/arch/next68k/dev/
H A Dnextdma.c320 struct nextdma_status *stat = &nsc->sc_stat; in nextdma_reset() local
332 if ((stat->nd_map) || (stat->nd_map_cont)) { in nextdma_reset()
333 if (stat->nd_map_cont) { in nextdma_reset()
338 stat->nd_map_cont, nsc->sc_conf.nd_cb_arg); in nextdma_reset()
340 stat->nd_map_cont = 0; in nextdma_reset()
341 stat->nd_idx_cont = 0; in nextdma_reset()
345 stat->nd_map = 0; in nextdma_reset()
346 stat->nd_idx = 0; in nextdma_reset()
362 struct nextdma_status *stat = &nsc->sc_stat; in nextdma_rotate() local
368 stat->nd_map = stat->nd_map_cont; in nextdma_rotate()
[all …]
/netbsd-src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/disp/
H A Dnouveau_nvkm_engine_disp_gv100.c52 u32 stat = nvkm_rd32(device, 0x6107a8); in gv100_disp_super() local
55 nvkm_debug(subdev, "supervisor %d: %08x\n", ffs(disp->super), stat); in gv100_disp_super()
106 u32 stat = nvkm_rd32(device, 0x611020 + (chid * 12)); in gv100_disp_exception() local
107 u32 type = (stat & 0x00007000) >> 12; in gv100_disp_exception()
108 u32 mthd = (stat & 0x00000fff) << 2; in gv100_disp_exception()
122 chid, stat, type, reason ? reason->name : "", in gv100_disp_exception()
127 chid, stat, type, reason ? reason->name : "", mthd); in gv100_disp_exception()
148 u32 stat = nvkm_rd32(device, 0x611c30); in gv100_disp_intr_ctrl_disp() local
150 if (stat & 0x00000007) { in gv100_disp_intr_ctrl_disp()
151 disp->super = (stat & 0x00000007); in gv100_disp_intr_ctrl_disp()
[all …]
/netbsd-src/external/ibm-public/postfix/dist/src/global/
H A Dcompat_level_expand.ref4 stat=0 result=good
6 stat=0 result=good
8 stat=0 result=good
10 stat=0 result=good
12 stat=0 result=good
14 stat=0 result=good
16 stat=0 result=good
18 stat=0 result=good
20 stat=0 result=good
22 stat=0 result=good
[all …]
/netbsd-src/external/bsd/openldap/dist/servers/slapd/back-sql/rdbms_depend/timesten/dnreverse/
H A Ddnreverse.cpp106 TTStatus stat; in ReverseAndUpper() local
124 assignDn_ru.Execute(stat); in ReverseAndUpper()
126 catch (TTStatus stat) { in ReverseAndUpper() local
128 << dn_rn << "'): " << stat; in ReverseAndUpper()
136 conn2.Commit(stat); in ReverseAndUpper()
138 catch (TTStatus stat) { in ReverseAndUpper() local
139 cerr << "Error committing update: " << stat; in ReverseAndUpper()
229 TTStatus stat; in main() local
257 conn2.Connect("DSN=ldap_tt", stat); in main()
259 catch (TTStatus stat) { in main() local
[all …]
/netbsd-src/external/lgpl3/gmp/dist/tests/rand/
H A DMakefile.am28 EXTRA_PROGRAMS = findlc gen gen.static spect stat program
46 manual-test: gen$(EXEEXT) stat$(EXEEXT)
48 | ./stat -i 0xffff | grep '^[0-9]')
50 | ./stat -i 0xffffffff | grep '^[0-9]')
52 | ./stat -i 0x1ffffffff | grep '^[0-9]')
54 | ./stat -i 0xffffffffffffffff | grep '^[0-9]')
56 | ./stat -i 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF | grep '^[0-9]')
59 | ./stat | grep '^[0-9]')
61 | ./stat | grep '^[0-9]')
63 | ./stat | grep '^[0-9]')
[all …]
/netbsd-src/external/gpl2/grep/dist/
H A Ddepcomp61 stat=$?
62 if test $stat -eq 0; then :
65 exit $stat
84 stat=$?
85 if test $stat -eq 0; then :
88 exit $stat
126 stat=$?
127 if test $stat -eq 0; then :
130 exit $stat
178 stat=$?
[all …]
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/examples/hello-c++-kde/admin/
H A Ddepcomp61 stat=$?
62 if test $stat -eq 0; then :
65 exit $stat
84 stat=$?
85 if test $stat -eq 0; then :
88 exit $stat
126 stat=$?
127 if test $stat -eq 0; then :
130 exit $stat
178 stat=$?
[all …]
/netbsd-src/external/gpl2/diffutils/dist/config/
H A Ddepcomp70 stat=$?
71 if test $stat -eq 0; then :
74 exit $stat
93 stat=$?
94 if test $stat -eq 0; then :
97 exit $stat
135 stat=$?
136 if test $stat -eq 0; then :
139 exit $stat
187 stat=$?
[all …]
/netbsd-src/tests/lib/libc/sys/
H A Dt_stat.c61 struct stat sa, sb; in ATF_TC_BODY()
64 (void)memset(&sa, 0, sizeof(struct stat)); in ATF_TC_BODY()
65 (void)memset(&sb, 0, sizeof(struct stat)); in ATF_TC_BODY()
70 ATF_REQUIRE(stat(path, &sa) == 0); in ATF_TC_BODY()
72 ATF_REQUIRE(stat(path, &sb) == 0); in ATF_TC_BODY()
95 struct stat sa, sb; in ATF_TC_BODY()
124 (void)memset(&sa, 0, sizeof(struct stat)); in ATF_TC_BODY()
125 (void)memset(&sb, 0, sizeof(struct stat)); in ATF_TC_BODY()
127 ATF_REQUIRE(stat(ftse->fts_parent->fts_path,&sa) == 0); in ATF_TC_BODY()
129 ATF_REQUIRE(stat(".", &sb) == 0); in ATF_TC_BODY()
[all …]
/netbsd-src/sys/net/
H A Dnet_stats.h47 #define _NET_STAT_GETREF(stat) ((net_stat_ref_t)percpu_getref((stat))) argument
48 #define _NET_STAT_PUTREF(stat) percpu_putref((stat)) argument
56 #define _NET_STATINC(stat, x) \ argument
58 net_stat_ref_t _nsr_ = _NET_STAT_GETREF(stat); \
60 _NET_STAT_PUTREF(stat); \
69 #define _NET_STATDEC(stat, x) \ argument
71 net_stat_ref_t _nsr_ = _NET_STAT_GETREF(stat); \
73 _NET_STAT_PUTREF(stat); \
82 #define _NET_STATADD(stat, x, v) \ argument
84 net_stat_ref_t _nsr_ = _NET_STAT_GETREF(stat); \
[all …]
/netbsd-src/usr.sbin/rpc.lockd/
H A Dlock_proc.c378 result.stat.stat = nlm_granted; in nlm_test_1_svc()
380 result.stat.stat = nlm_denied; in nlm_test_1_svc()
381 (void)memcpy(&result.stat.nlm_testrply_u.holder, holder, in nlm_test_1_svc()
383 result.stat.nlm_testrply_u.holder.l_offset = in nlm_test_1_svc()
385 result.stat.nlm_testrply_u.holder.l_len = in nlm_test_1_svc()
412 result.stat.stat = nlm_granted; in nlm_test_msg_1_svc()
414 result.stat.stat = nlm_denied; in nlm_test_msg_1_svc()
415 (void)memcpy(&result.stat.nlm_testrply_u.holder, holder, in nlm_test_msg_1_svc()
417 result.stat.nlm_testrply_u.holder.l_offset = in nlm_test_msg_1_svc()
419 result.stat.nlm_testrply_u.holder.l_len = in nlm_test_msg_1_svc()
[all …]
/netbsd-src/external/ibm-public/postfix/dist/src/master/
H A Dmaster_status.c66 MASTER_STATUS stat; in master_status_event() local
83 switch (n = read(serv->status_fd[0], (void *) &stat, sizeof(stat))) { in master_status_event()
95 serv->ext_name, serv->name, stat.pid, n); in master_status_event()
98 case sizeof(stat): in master_status_event()
99 pid = stat.pid; in master_status_event()
102 myname, stat.pid, stat.gen, stat.avail); in master_status_event()
115 msg_info("%s: process id not found: %d", myname, stat.pid); in master_status_event()
118 if (proc->gen != stat.gen) { in master_status_event()
120 pid, stat.gen); in master_status_event()
133 if (proc->avail == stat.avail) in master_status_event()
[all …]
/netbsd-src/sys/arch/bebox/stand/boot/
H A Dfd.c140 int stat[STATUS_MAX]; /* result code */ member
226 int *stat; in fdopen() local
233 stat = un->stat; in fdopen()
243 fdSenseInt(ctlr, stat); in fdopen()
244 if (stat[1] != START_CYL) { in fdopen()
246 ctlr, unit, stat[0], stat[1]); in fdopen()
267 fdSenseInt(un->ctlr, un->stat); in fdclose()
299 int *stat = un->stat; in fdstrategy() local
307 fdDriveStatus(ctlr, unit, 0, stat); in fdstrategy()
316 fdSenseInt(ctlr, stat); in fdstrategy()
[all …]
/netbsd-src/tests/lib/librumphijack/
H A Dt_vfs.sh132 atf_check -s exit:0 -o save:stat.out \
133 stat -f "${statstr}" /rump/mnt/filename
136 atf_check -s exit:0 -o file:stat.out \
137 stat -f "${statstr}" /rump/mnt/dir/same
146 atf_check -s exit:0 -o save:stat.out \
147 stat -f "${statstr}" /rump/mnt/filename
150 atf_check -s exit:0 -o file:stat.out \
151 stat -f "${statstr}" /rump/mnt/filename
152 atf_check -s exit:0 -o file:stat.out \
153 stat -f "${statstr}" /rump/mnt/dir/same
[all …]
/netbsd-src/libexec/ftpd/
H A Dcmds.c124 struct stat *stat; /* stat of path */ member
125 struct stat *pdirstat; /* stat of path's parent dir */
228 struct stat sb, pdirstat; in mlsd()
238 if (stat(path, &pdirstat) == -1) { in mlsd()
258 f.stat = &sb; in mlsd()
278 if (stat(name, &sb) == -1) in mlsd()
297 struct stat sb; in mlst()
302 if (stat(path, &sb) == -1) { in mlst()
310 f.stat = &sb; in mlst()
429 struct stat st; in renamefrom()
[all …]
/netbsd-src/lib/libquota/
H A Dquota_kernel.c50 __quota_kernel_stat(struct quotahandle *qh, struct quotastat *stat) in __quota_kernel_stat() argument
55 args.u.stat.qc_info = stat; in __quota_kernel_stat()
62 static struct quotastat stat; in __quota_kernel_getimplname() local
64 if (__quota_kernel_stat(qh, &stat)) { in __quota_kernel_getimplname()
67 return stat.qs_implname; in __quota_kernel_getimplname()
73 struct quotastat stat; in __quota_kernel_getrestrictions() local
75 if (__quota_kernel_stat(qh, &stat)) { in __quota_kernel_getrestrictions()
79 return stat.qs_restrictions; in __quota_kernel_getrestrictions()
85 struct quotastat stat; in __quota_kernel_getnumidtypes() local
87 if (__quota_kernel_stat(qh, &stat)) { in __quota_kernel_getnumidtypes()
[all …]
/netbsd-src/external/gpl3/gdb/dist/gnulib/import/m4/
H A Dstat-time.m41 # Checks for stat-related time functions.
25 AC_CHECK_MEMBERS([struct stat.st_atim.tv_nsec],
26 [AC_CACHE_CHECK([whether struct stat.st_atim is of type struct timespec],
31 #include <sys/stat.h>
37 struct stat st;
46 [Define to 1 if the type of the st_atim member of a struct stat is
49 [AC_CHECK_MEMBERS([struct stat.st_atimespec.tv_nsec], [],
50 [AC_CHECK_MEMBERS([struct stat.st_atimensec], [],
51 [AC_CHECK_MEMBERS([struct stat.st_atim.st__tim.tv_nsec], [], [],
53 #include <sys/stat.h>])],
[all …]
/netbsd-src/external/mit/isl/dist/interface/
H A Ddepcomp192 stat=$?
193 if test $stat -ne 0; then
195 exit $stat
218 stat=$?
219 if test $stat -ne 0; then
221 exit $stat
260 stat=$?
261 if test $stat -ne 0; then
263 exit $stat
315 stat=$?
[all …]
/netbsd-src/external/mit/isl/dist/
H A Ddepcomp192 stat=$?
193 if test $stat -ne 0; then
195 exit $stat
218 stat=$?
219 if test $stat -ne 0; then
221 exit $stat
260 stat=$?
261 if test $stat -ne 0; then
263 exit $stat
315 stat=$?
[all …]
/netbsd-src/external/bsd/flex/dist/build-aux/
H A Ddepcomp192 stat=$?
193 if test $stat -ne 0; then
195 exit $stat
218 stat=$?
219 if test $stat -ne 0; then
221 exit $stat
260 stat=$?
261 if test $stat -ne 0; then
263 exit $stat
315 stat=$?
[all …]
/netbsd-src/external/bsd/openpam/dist/
H A Ddepcomp192 stat=$?
193 if test $stat -ne 0; then
195 exit $stat
218 stat=$?
219 if test $stat -ne 0; then
221 exit $stat
260 stat=$?
261 if test $stat -ne 0; then
263 exit $stat
315 stat=$?
[all …]
/netbsd-src/sys/external/isc/libsodium/dist/build-aux/
H A Ddepcomp192 stat=$?
193 if test $stat -ne 0; then
195 exit $stat
218 stat=$?
219 if test $stat -ne 0; then
221 exit $stat
260 stat=$?
261 if test $stat -ne 0; then
263 exit $stat
315 stat=$?
[all …]
/netbsd-src/external/bsd/nvi/dist/dist/
H A Ddepcomp135 stat=$?
136 if test $stat -eq 0; then :
139 exit $stat
158 stat=$?
159 if test $stat -eq 0; then :
162 exit $stat
201 stat=$?
202 if test $stat -eq 0; then :
205 exit $stat
263 stat=$?
[all …]
/netbsd-src/external/lgpl3/mpfr/dist/
H A Ddepcomp192 stat=$?
193 if test $stat -ne 0; then
195 exit $stat
218 stat=$?
219 if test $stat -ne 0; then
221 exit $stat
260 stat=$?
261 if test $stat -ne 0; then
263 exit $stat
315 stat=$?
[all …]

12345678910>>...105