Searched defs:ret (Results 476 - 500 of 903) sorted by relevance

<<11121314151617181920>>

/osnet-11/usr/src/lib/libresolv2/common/resolv/
H A Dres_init.c373 int ret; local
375 if ((ret = sysinfo(SI_SRPC_DOMAIN, buf, sizeof(buf))) > 0 &&
376 (unsigned int)ret <= sizeof(buf)) {
/osnet-11/usr/src/lib/libsasl/lib/
H A Dclient.c359 int ret; local
367 ret = _sasl_load_plugins(gctx, 0, _ep_list,
370 return (ret);
394 int ret; local
400 ret = LOCK_MUTEX(&init_client_mutex);
401 if (ret < 0) {
404 ret = LOCK_MUTEX(&client_active_mutex);
405 if (ret < 0) {
432 ret=init_mechlist(gctx);
434 if (ret!
1151 int ret; local
[all...]
H A Dsaslutil.c253 int ret; local
280 ret = sasl_randcreate(&pool);
281 if(ret != SASL_OK) return 0; /* xxx sasl return code? */
342 void getranddata(unsigned short ret[RPOOL_SIZE]) argument
346 memset(ret, 0, RPOOL_SIZE*sizeof(unsigned short));
354 unsigned char *buf = (unsigned char *)ret;
372 ret[0] ^= (unsigned short) getpid();
388 ret[0] ^= (unsigned short) (tv.tv_sec & 0xFFFF);
389 ret[1] ^= (unsigned short) (clock() & 0xFFFF);
390 ret[
[all...]
/osnet-11/usr/src/lib/libsip/common/
H A Dsip_headers.c377 int ret = 0; local
388 ret = _sip_copy_header(_new_msg, header, NULL, B_TRUE);
389 if (ret != 0)
395 return (ret);
406 int ret; local
418 ret = _sip_copy_header(_new_msg, header, extra_param, B_TRUE);
421 return (ret);
433 int ret = 0; local
444 ret = _sip_copy_header(_new_msg, header, NULL, B_FALSE);
445 if (ret !
549 int ret; local
[all...]
H A Dsip_msg.c329 int ret; local
371 ret = sip_add_content_length(msg, msg->sip_msg_content_len);
372 if (ret != 0) {
374 return (ret);
379 msg->sip_msg_buf = sip_msg_to_msgbuf((sip_msg_t)msg, &ret);
382 return (ret);
545 int ret; local
572 ret = sip_parse_first_line(_sip_response->sip_msg_start_line,
577 return (ret);
717 int ret; local
808 int ret; local
[all...]
H A Dsip_parse_generic.c499 int ret; local
503 if ((ret = sip_prim_parsers(hdr, phdr)) != 0)
504 return (ret);
628 ret = sip_parse_params(hdr, &value->sip_param_list);
629 if (ret == EPROTO) {
631 } else if (ret != 0) {
633 return (ret);
669 int ret = 0; local
672 if ((ret = sip_prim_parsers(hdr, phdr)) != 0)
673 return (ret);
724 int ret; local
929 int ret; local
978 int ret; local
1180 int ret; local
[all...]
H A Dsip_parse_hdrs.c106 int ret; local
109 if ((ret = sip_prim_parsers(hdr, phdr)) != 0)
110 return (ret);
477 int ret; local
479 if ((ret = sip_prim_parsers(sip_header, header)) != 0)
480 return (ret);
501 ret = sip_atoi(sip_header, &(value->intstr_int));
502 if (ret != 0)
585 int ret; local
587 if ((ret
687 int ret; local
791 int ret; local
1067 int ret; local
1162 int ret; local
1419 int ret; local
[all...]
/osnet-11/usr/src/lib/libsldap/common/
H A Dns_confmgr.c109 int ret; local
178 ret = __ns_ldap_setParamValue(ptr, i, value,
180 if (ret != NS_SUCCESS) {
182 return (ret);
198 ret = __ns_ldap_setParamValue(ptr, i, value,
200 if (ret != NS_SUCCESS) {
202 return (ret);
376 ns_parse_status ret; local
389 ret = read_file(ptr, 0, &error);
390 if (ret !
798 ns_ldap_error_t *ret; local
[all...]
H A Dns_sasl.c289 char *ret = NULL; local
299 ret = cred->realm;
302 ret = cred->authid;
305 ret = cred->passwd;
308 ret = cred->authzid;
316 if (ret) {
318 * No need to do strdup(ret), the data is always
320 * free it either. strdup(ret) causes memory
323 interact->result = ret;
324 interact->len = strlen(ret);
[all...]
/osnet-11/usr/src/lib/libsmbfs/common/
H A Dsmbfs_gss.c408 boolean_t ret = B_FALSE; local
412 ret = B_TRUE;
414 ret = B_TRUE;
420 return (ret);
H A Dsmbfs_mbuf.c531 smbfs_md_get_mbuf(mdchain_t *mbp, int size, mbuf_t **ret) argument
546 *ret = m;
/osnet-11/usr/src/lib/libsmedia/plugins/scsi/common/
H A Ds_generic.c797 off_t file_size, ret; local
840 ret = lseek(fd, 0, SEEK_SET);
841 if (ret == -1) {
/osnet-11/usr/src/lib/libkmf/libkmf/common/
H A Dcsrcrlop.c70 KMF_RETURN ret; local
75 CLEAR_ERROR(handle, ret);
76 if (ret != KMF_OK)
77 return (ret);
86 ret = plugin->funclist->EncodePubkeyData(handle,
94 ret = DerDecodeSPKI(&KeyData, spki_ptr);
98 return (ret);
187 KMF_RETURN ret = KMF_OK; local
195 ret = add_an_extension(exts, extn);
197 return (ret);
229 KMF_RETURN ret = KMF_OK; local
245 KMF_RETURN ret = KMF_OK; local
260 KMF_RETURN ret = KMF_OK; local
370 KMF_RETURN ret = KMF_OK; local
644 KMF_RETURN ret; local
688 KMF_RETURN ret; local
706 KMF_RETURN ret; local
725 KMF_RETURN ret; local
742 KMF_RETURN ret; local
798 KMF_RETURN ret; local
843 KMF_RETURN ret = KMF_OK; local
872 KMF_RETURN ret = KMF_OK; local
[all...]
H A Drdn_parser.c270 KMF_RETURN ret = KMF_OK; local
282 return (ret);
/osnet-11/usr/src/lib/libmalloc/common/
H A Dmalloc.c182 void *ret; local
185 ret = malloc_unlocked(nbytes, 0);
187 return (ret);
1057 void * ret; local
1068 ret = sbrk(0);
1072 if (ret != sbrk(0))
1080 ret = sbrk(bytes);
1082 return (ret);
/osnet-11/usr/src/lib/libmapid/common/
H A Dmapid.c953 int ret, bufsz = NS_MAXCDNAME; local
959 ret = nfs_smf_get_prop("nfsmapid_domain", value, DEFAULT_INSTANCE,
961 if (ret == 0 && *value != NULL) {
/osnet-11/usr/src/lib/libnisdb/
H A Ddb.cc604 int ret; local
610 ret = f.execute_on_log(&(apply_log_entry), (char *) &internal_db);
612 WRITEUNLOCK2(this, (&internal_db), ret, ret,
615 return (ret);
666 bool_t ret = FALSE; local
675 ret = checkpoint();
678 return (ret);
829 db_status ret; local
833 ret
[all...]
H A Ddb_mindex3.cc337 int ret, stat = LDAP_SUCCESS, stat2, stat3; local
840 ret = endTransaction(xid, dirObj);
842 ret = abort_transaction(xid);
844 ret = 0;
845 if (ret != 0) {
H A Dldap_xdr.c687 bool_t ret; local
725 ret = (memcmp(b1, b2, l1) == 0);
730 ret = FALSE;
736 return (ret);
/osnet-11/usr/src/lib/libnsl/netselect/
H A Dnetselect.c105 int *ret; local
109 ret = thr_get_storage(&nc_error_key, sizeof (int), free);
111 return (ret ? ret : &nc_error);
/osnet-11/usr/src/lib/libnsl/rpc/
H A Dsvcauth_des.c143 int ret = cache_init(); local
144 if (ret == -1) {
/osnet-11/usr/src/lib/libntfs/common/libntfs/
H A Dmft.c564 int ret, mp_size; local
594 ret = (int)ntfs_attr_pread(lcnbmp_na, lcn >> 3, 1, &b);
595 if (ret < 0) {
599 ntfs_log_debug("Read %i byte%s.\n", ret, ret == 1 ? "" : "s");
601 if (ret == 1 && b != 0xff && !(b & tb)) {
604 ret = (int)ntfs_attr_pwrite(lcnbmp_na, lcn >> 3, 1, &b);
605 if (ret < 1) {
608 if (!ret)
628 ret
[all...]
/osnet-11/usr/src/lib/libpctx/common/
H A Dlibpctx.c408 int ret = 0; local
416 ret = action(pctx, pstatus->pr_pid, 1, pctx->uarg);
418 return (ret);
446 ret = -1;
452 return (ret);
/osnet-11/usr/src/lib/libcommputil/common/
H A Dsdp_parse.c588 int ret; local
649 if ((ret = add_value_to_list(&new_repeat->r_offset, begin,
651 if (ret == ENOMEM) {
/osnet-11/usr/src/lib/libdhcputil/common/
H A Ddhcp_symbol.c227 int ret = DSYM_SUCCESS; local
239 ret = DSYM_VALUE_OUT_OF_RANGE;
242 return (ret);
288 int ret = DSYM_SUCCESS; local
309 for (i = 0; ret == DSYM_SUCCESS; i++) {
320 ret = DSYM_EXCEEDS_CLASS_SIZE;
325 ret = DSYM_SYNTAX_ERROR;
340 ret = DSYM_NO_MEMORY;
347 if (ret != DSYM_SUCCESS) {
351 return (ret);
369 int ret = DSYM_SUCCESS; local
434 int ret; local
467 int ret; local
584 int ret; local
656 int ret = DSYM_SUCCESS; local
736 int ret = DSYM_SUCCESS; local
806 int ret = DSYM_SUCCESS; local
847 int ret; local
874 int ret; local
899 int ret; local
[all...]

Completed in 81 milliseconds

<<11121314151617181920>>