Searched refs:_ret (Results 1 – 14 of 14) sorted by relevance
/freebsd/sys/net/route/ |
H A D | nhop_utils.h | 88 #define CHT_SLIST_FIND(_head, _PX, _key, _ret) do { \ argument 90 _ret = CHT_FIRST(_head, _buck); \ 91 for ( ; _ret != NULL; _ret = _PX##_next(_ret)) { \ 92 if (_PX##_cmp(_key, (_ret))) \ 100 #define CHT_SLIST_FIND_BYOBJ(_head, _PX, _obj, _ret) do { \ argument 102 _ret = CHT_FIRST(_head, _buck); \ 103 for ( ; _ret != NULL; _ret = _PX##_next(_ret)) { \ 104 if (_PX##_cmp(_obj, _ret)) \ 116 #define CHT_SLIST_REMOVE(_head, _PX, _obj, _ret) do { \ argument 119 _ret = CHT_FIRST(_head, _buck); \ [all …]
|
/freebsd/contrib/netbsd-tests/lib/libpthread/ |
H A D | h_common.h | 8 int _ret = (x); \ 9 ATF_REQUIRE_MSG(_ret == 0, "%s: %s", #x, strerror(_ret)); \ 14 int _ret = (x); \ 15 ATF_REQUIRE_MSG(_ret == (v), "%s: %s", #x, strerror(_ret)); \
|
/freebsd/libexec/rc/rc.d/ |
H A D | routing | 26 local _cmd _af _if _a _ret 30 _ret=0 40 setroutes $_cmd $_a $_if || _ret=1 45 setroutes $_cmd $_af $_if || _ret=1 52 return $_ret 92 local _ret 93 _ret=0 97 _ret=$? 104 _ret=$? 108 return $_ret
|
H A D | sendmail | 217 _ret=$? 226 _ret=$(( _ret > $? ? _ret : $? )) 229 (exit "$_ret")
|
H A D | mdconfig | 43 local _mp _ret 46 _ret=`mount | while read _line; do 57 if [ -n "${_ret}" ]; then
|
H A D | mdconfig2 | 44 local _mp _ret 47 _ret=`mount | while read _line; do 58 if [ -n "${_ret}" ]; then
|
/freebsd/libexec/rc/ |
H A D | network.subr | 660 local _if _ret 662 _ret=1 671 ifalias ${_if} inet alias && _ret=0 673 return $_ret 680 local _if _ret 682 _ret=1 688 ifalias ${_if} inet6 alias && _ret=0 689 ipv6_prefix_hostid_addr_common ${_if} alias && _ret=0 691 return $_ret 698 local _if _ifs _ret inetList oldifs _inet [all …]
|
/freebsd/sys/contrib/openzfs/contrib/dracut/90zfs/ |
H A D | zfs-lib.sh.in | 49 _ret=0 56 "${exec}" "${dataset}" "${mountpoint}" || _ret=$? 63 exit "${_ret}"
|
/freebsd/sys/sys/ |
H A D | mutex.h | 267 int _ret; \ 272 _ret = 0; \ 276 _ret = 1; \ 278 _ret; \ 295 int _ret; \ 300 _ret = 0; \ 303 _ret = 1; \ 305 _ret; \
|
/freebsd/sys/ofed/include/rdma/ |
H A D | uverbs_ioctl.h | 684 #define IS_UVERBS_COPY_ERR(_ret) ((_ret) && (_ret) != -ENOENT) argument 940 int _ret = _uverbs_get_const(&_val, _attrs_bundle, _idx, \ 944 _ret; \ 951 int _ret = \ 956 _ret; \
|
/freebsd/sys/contrib/xen/arch-x86/ |
H A D | xen-mca.h | 316 #define x86_mcinfo_lookup(_ret, _mi, _type) \ argument 322 (_ret) = NULL; \ 332 (_ret) = found ? _mic : NULL; \
|
/freebsd/contrib/llvm-project/libunwind/src/ |
H A D | config.h | 182 bool _ret = x; \ 183 if (!_ret) \
|
/freebsd/contrib/elftoolchain/libelf/ |
H A D | _libelf_ar.h | 55 unsigned int _base, size_t *_ret);
|
/freebsd/contrib/ofed/opensm/opensm/ |
H A D | osm_sa.c | 1072 #define PARSE_AHEAD(p, x, name, val_ptr) { int _ret; \ 1082 _ret = unpack_##x(p, (val_ptr)); \ 1083 if (_ret < 0) { \ 1087 ret = _ret; \ 1090 p += _ret; \
|