Searched defs:ret (Results 1 - 25 of 903) sorted by relevance

1234567891011>>

/osnet-11/usr/src/cmd/sendmail/libmilter/
H A Dhandler.c31 int ret; local
43 ret = MI_FAILURE;
45 ret = mi_engine(ctx);
48 return ret;
/osnet-11/usr/src/cmd/sendmail/libsm/
H A Dflags.c39 int ret; local
44 ret = SMRD;
48 ret = SMWR;
52 ret = SMWR;
56 ret = SMRW;
60 ret = 0;
64 ret |= SM_IO_BINARY;
65 return ret;
H A Derrstring.c55 char *ret; local
276 ret = strerror(errnum);
277 if (ret == NULL)
284 return ret;
H A Dvsnprintf.c49 int ret; local
77 ret = sm_io_vfprintf(&fake, SM_TIME_FOREVER, fmt, ap);
79 return ret;
H A Dfprintf.c49 int ret; local
54 ret = sm_io_vfprintf(fp, timeout, fmt, ap);
56 return ret;
H A Dfscanf.c49 int ret; local
54 ret = sm_vfscanf(fp, timeout, fmt, ap);
56 return ret;
H A Dvasprintf.c63 int ret; local
84 ret = sm_io_vfprintf(&fake, SM_TIME_FOREVER, fmt, ap);
85 if (ret == -1)
90 base = (unsigned char *) sm_realloc(fake.f_bf.smb_base, ret + 1);
94 return ret;
/osnet-11/usr/src/lib/libnisdb/yptol/
H A Dshim_lockmap.c62 int ret; local
64 ret = lock_core(map->hash_val);
66 return (ret);
82 int ret; local
84 ret = unlock_core(map->hash_val);
85 return (ret);
/osnet-11/usr/src/lib/libcurses/screen/
H A Dcurs_set.c52 int ret = cur_term->_cursorstate; local
56 ret = ERR;
58 if (visibility != ret)
63 return (ret);
H A Dendwin.c163 int ret; local
171 ret = doupdate();
173 return (ret);
/osnet-11/usr/src/cmd/sendmail/db/os/
H A Dos_seek.c39 int ret; local
42 ret = __db_jump.j_seek(fd,
49 ret = lseek(fd, offset, whence);
51 return (ret == -1 ? errno : 0);
H A Dos_unlink.c34 int ret; local
36 ret = __db_jump.j_unlink != NULL ?
38 return (ret == -1 ? errno : 0);
H A Dos_config.c122 int ret; local
132 if (value != 0 && (ret = __db_mapanon_ok(0)) != 0)
133 return (ret);
140 if (value != 0 && (ret = __db_mapanon_ok(1)) != 0)
141 return (ret);
H A Dos_fsync.c55 int ret; local
57 ret = __db_jump.j_fsync != NULL ? __db_jump.j_fsync(fd) : fsync(fd);
58 return (ret == 0 ? 0 : errno);
/osnet-11/usr/src/lib/lvm/libmeta/common/
H A Dmeta_lib_prv.c59 int ret = -1; local
64 ret = fclose(mfp);
68 return (ret);
/osnet-11/usr/src/lib/sun_fc/common/
H A DSun_fcGetNumberOfAdapters.cc44 HBA_UINT32 ret = list->getNumberofAdapters(); local
45 if (ret == 0) {
53 return (ret);
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/
H A Drd_error.c54 krb5_error_code ret; local
60 ret = decode_krb5_error(enc_errbuf, dec_error);
62 KERBEROS_PROBE_KRB_ERROR(READ, enc_errbuf, ret == 0 ? *dec_error : NULL);
64 return(ret);
/osnet-11/usr/src/grub/grub2/grub-core/gnulib/
H A Dwcrtomb.c43 int ret = wctomb (s, wc); local
45 if (ret >= 0)
46 return ret;
/osnet-11/usr/src/grub/grub2/grub-core/lib/i386/pc/
H A Dbiosnum.c28 int ret = -1; local
39 ret = (int) dev->disk->id;
44 return ret;
/osnet-11/usr/src/lib/libc/port/i18n/
H A Dstrtows.c38 size_t ret; local
40 ret = mbstowcs(s1, s2, TMP_MAX);
41 if (ret == (size_t)-1) {
51 size_t ret; local
53 ret = wcstombs(s1, s2, TMP_MAX);
54 if (ret == (size_t)-1) {
/osnet-11/usr/src/lib/libnisdb/
H A Dldap_cto.c48 int ret; local
63 ret = (*fptr) (domain, type, protocol);
65 if (ret >= 0 && timeout > 0) {
66 if (setsockopt(ret, IPPROTO_TCP, TCP_CONN_ABORT_THRESHOLD,
73 return (ret);
/osnet-11/usr/src/lib/libnsl/nsl/
H A D_errlst.c132 int *ret; local
136 ret = thr_get_storage(&t_errno_key, sizeof (int), free);
138 return (ret ? ret : &t_errno);
/osnet-11/usr/src/grub/grub-0.97/stage2/
H A Dstage1_5.c41 int ret; local
54 ret = grub_read ((char *) 0x8000 + SECTOR_SIZE * 2, -1);
58 if (ret)
/osnet-11/usr/src/cmd/sendmail/db/mp/
H A Dmp_fput.c38 int wrote, ret; local
47 if ((ret = __db_fchk(dbmp->dbenv, "memp_fput", flags,
49 return (ret);
50 if ((ret = __db_fcchk(dbmp->dbenv, "memp_fput",
52 return (ret);
H A Dmp_fset.c38 int ret; local
49 if ((ret = __db_fchk(dbmp->dbenv, "memp_fset", flags,
51 return (ret);
52 if ((ret = __db_fcchk(dbmp->dbenv, "memp_fset",
54 return (ret);

Completed in 63 milliseconds

1234567891011>>