Home
last modified time | relevance | path

Searched refs:__retval (Results 1 – 12 of 12) sorted by relevance

/trueos/usr.sbin/bsdconfig/usermgmt/share/
HDuser_input.subr180 local __menu_choice __retval
194 __retval=$?
198 $__retval "$__menu_choice"
201 [ $__retval -eq $DIALOG_OK ] || return $__retval
379 local __retval __password1 __password2
418 __retval=$?
419 if [ $__retval -eq $DIALOG_ESC ]; then
420 return $__retval
421 elif [ $__retval -eq $DIALOG_OK ]; then
552 local __retval __date_type
[all …]
HDgroup_input.subr205 local __retval __password1 __password2
218 __retval=$?
222 [ $__retval -eq $DIALOG_OK ] || return $__retval
235 __retval=$?
239 [ $__retval -eq $DIALOG_OK ] || return $__retval
250 __retval=$?
251 if [ $__retval -eq $DIALOG_ESC ]; then
252 return $__retval
253 elif [ $__retval -eq $DIALOG_OK ]; then
313 local __menu_choice __retval
[all …]
/trueos/sys/dev/ieee488/
HDibfoo.c151 ap->__retval = ap->__ibsta; in ib_set_error()
161 ap->__retval = ap->__ibsta; in ib_had_timeout()
174 ap->__retval = ap->__ibsta; in ib_set_errno()
337 ib->ap->__retval |= END; in gpib_ib_wait_xfer()
341 ib->ap->__retval |= SRQI; in gpib_ib_wait_xfer()
588 ib->ap->__retval = h->handle; in ibdev()
1030 ap->__retval = 0; in gpib_ib_ioctl()
HDibfoo_int.h116 int __retval; member
/trueos/lib/msun/src/
HDmath_private.h298 long double __retval; \
304 __retval = (x); \
307 RETURNF(__retval); \
/trueos/usr.sbin/bsdconfig/share/
HDcommon.subr298 local __retval=$?
301 \"\$__var_to_get\" \"\$${__var_to_set:-value}\" \$__retval
303 return $__retval
944 local __cmd __output __retval
949 __retval=$?
953 $__retval "$__output"
955 f_dprintf "%s: retval=%i <no output>" "$__funcname" $__retval
958 ! [ "$__no_dialog" -o "$nonInteractive" -o $__retval -eq $SUCCESS ] &&
965 return $__retval
HDdialog.subr366 local __retval=$SUCCESS
383 __retval=$FAILURE
387 __retval=$FAILURE
395 __retval=$FAILURE
435 return $__retval # success if no debug warnings were printed
481 __retval=$FAILURE
485 __retval=$FAILURE
493 __retval=$FAILURE
563 return $__retval # success if no debug warnings were printed
1856 local __retval=$?
[all …]
/trueos/usr.sbin/bsdconfig/startup/share/
HDrcvar.subr161 local __retval=$?
163 if [ $__retval -eq $SUCCESS ]; then
HDrcconf.subr163 local __retval=$?
165 if [ $__retval -eq $SUCCESS ]; then
/trueos/contrib/libc++/include/experimental/
Dstring_view378 int __retval = _Traits::compare(data(), __sv.data(), __rlen);
379 if ( __retval == 0 ) // first __rlen chars matched
380 __retval = size() == __sv.size() ? 0 : ( size() < __sv.size() ? -1 : 1 );
381 return __retval;
/trueos/lib/libgpib/
HDibfoo.c59 return (ap->__retval); in __ibsubmit()
/trueos/contrib/libstdc++/
DChangeLog-20002955 * bits/fstream.tcc: Shorten __retval to __ret.