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

/solaris-userland-s11u3/components/libusb/wrapper/src/
H A Dtestlibusb.c126 int i, ret; local
136 ret = usb_get_string_simple(udev, dev->descriptor.iManufacturer, string, sizeof(string));
137 if (ret > 0)
140 printf("- Unable to fetch manufacturer string %d\n", ret);
145 ret = usb_get_string_simple(udev, dev->descriptor.iProduct, string, sizeof(string));
146 if (ret > 0)
153 ret = usb_get_string_simple(udev, dev->descriptor.iSerialNumber, string, sizeof(string));
154 if (ret > 0)
H A Dwr_libusb.c56 * Case1: ret = PLUGIN_EXCLUSIVE [2]:
59 * Case2: ret = FAILURE [-1]
62 * Case3: ret = SUCCESS [0]:
731 int ret; local
756 ret = load_plugins();
757 if (ret < 0) {
783 ret = (*hdl_libusb_init)();
787 p_info[pindex].p_name, ret);
789 switch (ret) {
1064 int ret; local
[all...]
/solaris-userland-s11u3/components/net-snmp/sun/agent/modules/entityMib/
H A DentPhysicalContainsTable.c728 int i, ret; local
733 ret = 0;
742 ret = isRecursiveChild(childlist[i], childIndex);
743 if (ret == 1) {
757 ret = isRecursiveChild(childlist2[i], childIndex);
758 if (ret == 1) {
/solaris-userland-s11u3/components/open-fabrics/infiniband-diags/
H A Dsolaris_set_nodedesc.c338 int ret; local
347 ret = ioctl(context->cmd_fd, UVERBS_IOCTL_GET_NODEDESC, nodedesc);
348 if (ret != 0) {
349 if (ret == EINVAL)
364 int ret; local
372 ret = ioctl(context->cmd_fd, UVERBS_IOCTL_SET_NODEDESC, nodedesc);
373 if (ret != 0) {
374 if (ret == EINVAL)
/solaris-userland-s11u3/components/apache2/mod_auth_gss/
H A Dmod_auth_gss.c232 OM_uint32 ret; local
260 int ret = 0; local
296 ret = HTTP_INTERNAL_SERVER_ERROR;
300 return (ret);
307 int ret = 0; local
326 ret = HTTP_INTERNAL_SERVER_ERROR;
345 ret = HTTP_INTERNAL_SERVER_ERROR;
363 ret = HTTP_UNAUTHORIZED;
373 ret = HTTP_INTERNAL_SERVER_ERROR;
400 ret
554 int ret; local
[all...]
/solaris-userland-s11u3/components/apache24/mod_auth_gss/
H A Dmod_auth_gss.c192 OM_uint32 ret; local
220 int ret = 0; local
256 ret = HTTP_INTERNAL_SERVER_ERROR;
260 return (ret);
267 int ret = 0; local
286 ret = HTTP_INTERNAL_SERVER_ERROR;
305 ret = HTTP_INTERNAL_SERVER_ERROR;
323 ret = HTTP_UNAUTHORIZED;
333 ret = HTTP_INTERNAL_SERVER_ERROR;
360 ret
514 int ret; local
[all...]
/solaris-userland-s11u3/components/proftpd/
H A Dmod_solaris_audit.c527 cmd_rec *cmd, const char* path, adt_stat_t **ret)
532 if (ret == NULL)
535 *ret = NULL;
545 *ret = ptr;
989 MODRET ret; local
991 ret = __solaris_audit_post(cmd, "RNFR", ADT_FAILURE, ADT_FAILURE,
997 return ret;
525 __fill_attr( cmd_rec *cmd, const char* path, adt_stat_t **ret) argument
/solaris-userland-s11u3/components/net-snmp/sun/agent/modules/healthMonitor/
H A Dkr_iostat.c221 int ret; local
223 ret=kstat_chain_update(kc);
224 if (ret == 0) { /* no change */
228 } else if (ret > 0) { /* changed */
/solaris-userland-s11u3/components/openssl/common/engines/pkcs11/
H A De_pk11_pub.c1002 int ret = 0; local
1094 ret = 1;
1105 return (ret);
1123 int ret = 0; local
1211 ret = 1;
1222 return (ret);
1241 int ret; local
1277 ret = pk11_process_pkcs11_uri(privkey_id, &uri_struct, &file);
1279 if (ret == 0)
1283 if (ret
1416 int ret; local
2587 int reuse_mem_len = 0, ret = 0; local
2844 int ret = -1; local
[all...]
H A De_pk11.c1722 int ret = 1; local
1743 ret = 0;
1746 return (ret);
1761 int ret = 1; local
1790 ret = 0;
1799 return (ret);
1928 int ret = 0; local
1933 ret, uselock, OP_RSA);
1939 return (ret);
1946 int ret local
1967 int ret = 1; local
2016 int ret = 0; local
2038 int ret = 0; local
2063 int ret = 1; local
2112 int ret = 0; local
2139 int ret = 1; local
2831 int ret = 0; local
2947 int ret = 0; local
[all...]
/solaris-userland-s11u3/components/open-fabrics/libibverbs/
H A Dsolaris_compatibility.c626 int ret, pos = 0; local
630 ret = sscanf(path, "uverbs%d%n/", arg,
634 ret = sscanf(path, "device%n/", &pos);
637 ret = sscanf(path, "%d%n/", arg, &pos);
640 ret = sscanf(path, "gids%n/", &pos);
643 ret = sscanf(path, "pkeys%n/", &pos);
646 ret = sscanf(path, "ports%n/", &pos);
649 ret = sscanf(path, "umad%d%n/", arg, &pos);
652 ret = sscanf(path, "%n/", &pos);
655 ret
736 int i, num_dev, rv, ret = 1; local
1566 int ret; local
[all...]
/solaris-userland-s11u3/components/libusb/ugen/src/
H A Dlibusbugen.c713 int ret, langid, si, di; local
735 ret = usb_get_string(dev, index, 0, tbuf, sizeof (tbuf));
736 usb_dprintf(DEBUG_DETAILED, "usb_get_string() returned %d\n", ret);
738 if (ret < 4) {
746 ret = usb_get_string(dev, index, langid, tbuf, sizeof (tbuf));
747 if (ret < 0) {
749 return (ret);
755 if (tbuf[0] > ret) {
1257 ssize_t ret; local
1269 ret
[all...]

Completed in 84 milliseconds