Searched refs:wstat (Results 1 – 12 of 12) sorted by relevance
/freebsd/lib/libproc/ |
H A D | proc_util.c | 68 if (phdl->status == PS_STOP && WSTOPSIG(phdl->wstat) != SIGTRAP) in proc_continue() 69 pending = WSTOPSIG(phdl->wstat); in proc_continue() 165 phdl->wstat = status; in proc_wstatus() 177 return (phdl->wstat); in proc_getwstat()
|
H A D | _libproc.h | 69 int wstat; /* Process wait status. */ member
|
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/scripts/ |
H A D | dtest.pl | 441 $wstat = $?; 442 $wifexited = ($wstat & 0xFF) == 0; 443 $wexitstat = ($wstat >> 8) & 0xFF; 444 $wtermsig = ($wstat & 0x7F);
|
/freebsd/cddl/contrib/opensolaris/cmd/plockstat/ |
H A D | plockstat.c | 676 int wstat = proc_getwstat(P); in prochandler() 695 if (WIFSIGNALED(wstat)) { in prochandler() 697 proc_signame(WTERMSIG(wstat), in prochandler() 699 } else if (WEXITSTATUS(wstat) != 0) { in prochandler() 701 pid, WEXITSTATUS(wstat)); in prochandler()
|
/freebsd/contrib/lib9p/backend/ |
H A D | backend.h | 44 int (*wstat)(void *, struct l9p_request *); member
|
H A D | fs.c | 3012 backend->wstat = fs_wstat; in l9p_backend_fs_init()
|
/freebsd/sys/dev/usb/wlan/ |
H A D | if_mtw.c | 2093 uint16_t(*wstat)[3]; in mtw_drain_fifo() local 2124 wstat = &(sc->wcid_stats[wcid]); in mtw_drain_fifo() 2125 (*wstat)[MTW_TXCNT]++; in mtw_drain_fifo() 2127 (*wstat)[MTW_SUCCESS]++; in mtw_drain_fifo() 2138 (*wstat)[MTW_TXCNT] += retry; in mtw_drain_fifo() 2139 (*wstat)[MTW_RETRY] += retry; in mtw_drain_fifo() 2156 uint16_t(*wstat)[3]; in mtw_iter_func() local 2193 wstat = &(sc->wcid_stats[MTW_AID2WCID(ni->ni_associd)]); in mtw_iter_func() 2195 if (wstat == &(sc->wcid_stats[0]) || in mtw_iter_func() 2196 wstat > &(sc->wcid_stats[MTW_WCID_MAX])) in mtw_iter_func() [all …]
|
H A D | if_run.c | 2625 uint16_t (*wstat)[3]; in run_drain_fifo() local 2655 wstat = &(sc->wcid_stats[wcid]); in run_drain_fifo() 2656 (*wstat)[RUN_TXCNT]++; in run_drain_fifo() 2658 (*wstat)[RUN_SUCCESS]++; in run_drain_fifo() 2669 (*wstat)[RUN_TXCNT] += retry; in run_drain_fifo() 2670 (*wstat)[RUN_RETRY] += retry; in run_drain_fifo() 2686 uint16_t (*wstat)[3]; in run_iter_func() local 2721 wstat = &(sc->wcid_stats[RUN_AID2WCID(ni->ni_associd)]); in run_iter_func() 2723 if (wstat == &(sc->wcid_stats[0]) || in run_iter_func() 2724 wstat > &(sc->wcid_stats[RT2870_WCID_MAX])) in run_iter_func() [all …]
|
/freebsd/cddl/contrib/opensolaris/lib/libdtrace/common/ |
H A D | dt_cc.c | 1860 int wstat, estat; in dt_preproc() local 1959 } while (waitpid(pid, &wstat, 0) == -1 && errno == EINTR); in dt_preproc() 1964 dt_dprintf("%s returned exit status 0x%x\n", dtp->dt_cpp_path, wstat); in dt_preproc() 1965 estat = WIFEXITED(wstat) ? WEXITSTATUS(wstat) : -1; in dt_preproc()
|
/freebsd/contrib/lib9p/ |
H A D | request.c | 974 error = be->wstat != NULL ? be->wstat(be->softc, req) : ENOSYS; in l9p_dispatch_twstat()
|
/freebsd/contrib/lib9p/pytest/ |
H A D | client.py | 612 clnt.wstat(d1fid, name=b'd2')
|
H A D | p9conn.py | 1024 def wstat(self, fid, statobj=None, **kwargs): member in P9Client
|