Home
last modified time | relevance | path

Searched refs:_ret (Results 1 – 13 of 13) sorted by relevance

/freebsd/sys/net/route/
H A Dnhop_utils.h90 _ret = CHT_FIRST(_head, _buck); \
91 for ( ; _ret != NULL; _ret = _PX##_next(_ret)) { \
92 if (_PX##_cmp(_key, (_ret))) \
102 _ret = CHT_FIRST(_head, _buck); \
103 for ( ; _ret != NULL; _ret = _PX##_next(_ret)) { \
104 if (_PX##_cmp(_obj, _ret)) \
119 _ret = CHT_FIRST(_head, _buck); \
121 for ( ; _ret != NULL; _tmp = _ret, _ret = _PX##_next(_ret)) { \
122 if (_obj == _ret) \
125 if (_ret != NULL) { \
[all …]
/freebsd/contrib/netbsd-tests/lib/libpthread/
H A Dh_common.h8 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 Drouting26 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 Dmdconfig43 local _mp _ret
46 _ret=`mount | while read _line; do
57 if [ -n "${_ret}" ]; then
H A Dmdconfig244 local _mp _ret
47 _ret=`mount | while read _line; do
58 if [ -n "${_ret}" ]; then
/freebsd/sys/contrib/openzfs/contrib/dracut/90zfs/
H A Dzfs-lib.sh.in49 _ret=0
56 "${exec}" "${dataset}" "${mountpoint}" || _ret=$?
63 exit "${_ret}"
/freebsd/libexec/rc/
H A Dnetwork.subr662 _ret=1
673 return $_ret
682 _ret=1
701 _ret=1
721 _ret=0
735 _ret=1
761 _ret=0
775 local _ret
776 _ret=1
1011 _ret=1
[all …]
/freebsd/sys/sys/
H A Dmutex.h267 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 Duverbs_ioctl.h684 #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 Dxen-mca.h316 #define x86_mcinfo_lookup(_ret, _mi, _type) \ argument
322 (_ret) = NULL; \
332 (_ret) = found ? _mic : NULL; \
/freebsd/contrib/llvm-project/libunwind/src/
H A Dconfig.h182 bool _ret = x; \
183 if (!_ret) \
/freebsd/contrib/elftoolchain/libelf/
H A D_libelf_ar.h55 unsigned int _base, size_t *_ret);
/freebsd/contrib/ofed/opensm/opensm/
H A Dosm_sa.c1072 #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; \