Searched refs:ret (Results 1 - 25 of 40) sorted by relevance

12

/solaris-userland/components/stdcxx/Solaris/
H A Drun_examples.sh224 ret=$?
225 if [ ${ret} -eq 0 ] ; then
247 ret=$?
248 if [ ${ret} -eq 0 ] ; then
260 ret=$?
261 if [ ${ret} -eq 0 ] ; then
273 ret=$?
274 if [ ${ret} -eq 0 ] ; then
286 ret=$?
287 if [ ${ret}
[all...]
H A Drun_regress_tests.sh135 ret=$?
136 if [ ${ret} -eq 0 ] ; then
H A Drun_tests.sh289 ret=$?
290 if [ ${ret} -eq 0 ] ; then
346 ret=$?
347 if [ ${ret} -eq 0 ] ; then
/solaris-userland/components/krb5/Solaris/
H A Dkt_findrealm.c20 krb5_error_code ret, ret2; local
22 ret = krb5_kt_start_seq_get(context, keytab, &cur);
23 if (ret != 0) {
24 return (ret);
27 while ((ret = krb5_kt_next_entry(context, keytab, &ent, &cur)) == 0) {
43 ret = krb5int_copy_data_contents(context,
45 if (ret) {
48 return (ret);
60 if (ret == KRB5_KT_END) {
64 return (ret
[all...]
H A Dlibgss_stubs.c78 OM_uint32 ret, dummy_minor; local
87 ret = gss_import_name(minor, &user_buf, GSS_C_NT_USER_NAME, &user_name);
88 if (GSS_ERROR(ret))
89 return (ret);
91 ret = gss_authorize_localname(minor, name, user_name);
92 if (ret == GSS_S_COMPLETE)
97 return (ret);
H A Dkadm_host_srv_names.c57 kadm5_ret_t ret = KADM5_OK; local
75 ret = ENOMEM;
77 ret = KADM5_NO_SRV;
84 return (ret);
111 kadm5_ret_t ret; local
123 if (ret = k5_locate_kadmin(context, (const krb5_data *) &realm_data, &sl))
124 return (ret);
159 kadm5_ret_t ret; local
171 if (ret = locate_kpasswd(context, (const krb5_data *) &realm_data, &sl, 0))
172 return (ret);
208 kadm5_ret_t ret; local
[all...]
/solaris-userland/components/openssl/openssl-fips/inline-t4/
H A Ddh_check.c74 int DH_check(const DH *dh, int *ret) argument
81 *ret = 0;
95 *ret |= DH_NOT_SUITABLE_GENERATOR;
97 *ret |= DH_NOT_SUITABLE_GENERATOR;
103 *ret |= DH_NOT_SUITABLE_GENERATOR;
106 *ret |= DH_CHECK_P_NOT_SAFE_PRIME;
111 *ret |= DH_CHECK_P_NOT_SAFE_PRIME;
113 *ret |= DH_CHECK_P_NOT_SAFE_PRIME;
118 *ret |= DH_NOT_SUITABLE_GENERATOR;
124 *ret |
151 DH_check_pub_key(const DH *dh, const BIGNUM *pub_key, int *ret) argument
[all...]
/solaris-userland/components/samba/Solaris/
H A Dsamba.sh70 ret=$?
71 [ $ret -eq 1 ] && exit 1
74 if [ $ret -eq 2 ] ; then
/solaris-userland/components/sendmail/files/
H A Dsendmail-client63 ret=$?
64 [ $ret -eq 1 ] && exit 1
69 if [ $ret -eq 2 ] ; then
H A Dsmtp-sendmail167 ret=$?
168 [ $ret -eq 1 ] && exit 1
173 if [ $ret -eq 2 ] ; then
/solaris-userland/components/rabbitmq/
H A Dtest.py68 ret = subprocess.call([gmake, "start-background-node", "start-rabbit-on-node", variable
74 if ret > 0:
75 sys.exit(ret)
86 ret = next((r for r in (test_ret, stopnode_ret, stopepmd_ret) if r > 0), 0) variable
88 sys.exit(ret)
/solaris-userland/components/openstack/nova/files/
H A Dnova-compute65 ret = _create_dataset(suspend_path, 'VARSHARE/zones/SYSsuspend')
66 if ret != smf_include.SMF_EXIT_OK:
67 return ret
82 ret = _create_dataset(imagecache_path, 'VARSHARE/nova/images')
83 if ret != smf_include.SMF_EXIT_OK:
84 return ret
/solaris-userland/components/openstack/swift/files/
H A Dswift-replicator-rsync48 ret = proc.wait()
49 if ret != 0:
52 print >> sys.stderr, "exit code:", ret
/solaris-userland/components/openldap/Solaris/
H A Dldap-olslapd59 ret=$?
60 [ $ret -ne 0 ] && exit 1
61 exit $ret
/solaris-userland/components/apache24/mod_auth_gss/
H A Dmod_auth_gss.c185 OM_uint32 ret; local
213 int ret = 0; local
249 ret = HTTP_INTERNAL_SERVER_ERROR;
253 return (ret);
260 int ret = 0; local
279 ret = HTTP_INTERNAL_SERVER_ERROR;
298 ret = HTTP_INTERNAL_SERVER_ERROR;
316 ret = HTTP_UNAUTHORIZED;
326 ret = HTTP_INTERNAL_SERVER_ERROR;
353 ret
507 int ret; local
[all...]
/solaris-userland/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)
/solaris-userland/components/mysql-5-5/Solaris/
H A Dmysql_5579 ret=0
87 ret=1
95 ret=1
97 return $ret
/solaris-userland/components/mysql-5-6/Solaris/
H A Dmysql_5679 ret=0
87 ret=1
95 ret=1
97 return $ret
/solaris-userland/components/mysql-5-7/Solaris/
H A Dmysql_5783 ret=0
91 ret=1
99 ret=1
101 return $ret
/solaris-userland/components/llvm/cxa_finalize/
H A Dcxa_finalize.c107 int ret = 0; local
117 ret = __init_cxxabi_list(&_list.list);
119 if (ret == -1) {
121 return ret;
132 ret = __resize_cxxabi_list(_list.list, _list.nelem, &__p, newsize);
134 if (ret == -1) {
140 return ret;
148 ret = atexit(__cxa_atexit_callback);
149 _registered = (ret == 0);
158 return ret;
[all...]
/solaris-userland/components/open-fabrics/infiniband-diags/
H A Dsolaris_set_nodedesc.c308 int ret; local
317 ret = ioctl(context->cmd_fd, UVERBS_IOCTL_GET_NODEDESC, nodedesc);
318 if (ret != 0) {
319 if (ret == EINVAL)
334 int ret; local
342 ret = ioctl(context->cmd_fd, UVERBS_IOCTL_SET_NODEDESC, nodedesc);
343 if (ret != 0) {
344 if (ret == EINVAL)
/solaris-userland/components/open-fabrics/libibverbs/
H A Dsolaris_compatibility.c580 int ret, pos = 0; local
584 ret = sscanf(path, "uverbs%d%n/", arg,
588 ret = sscanf(path, "device%n/", &pos);
591 ret = sscanf(path, "%d%n/", arg, &pos);
594 ret = sscanf(path, "gids%n/", &pos);
597 ret = sscanf(path, "pkeys%n/", &pos);
600 ret = sscanf(path, "ports%n/", &pos);
603 ret = sscanf(path, "umad%d%n/", arg, &pos);
606 ret = sscanf(path, "%n/", &pos);
609 ret
690 int i, num_dev, rv, ret = 1; local
1520 int ret; local
[all...]
/solaris-userland/components/openssl/common/engines/pkcs11/
H A De_pk11.c1691 int ret = 1; local
1711 ret = 0;
1715 return (ret);
1731 int ret = 1; local
1756 ret = 0;
1765 return (ret);
1888 int ret = 0; local
1892 ret, uselock, OP_RSA);
1898 return (ret);
1905 int ret local
1925 int ret = 1; local
1971 int ret = 0; local
1991 int ret = 0; local
2014 int ret = 1; local
2060 int ret = 0; local
2085 int ret = 1; local
2770 int ret = 0; local
2883 int ret = 0; local
[all...]
H A De_pk11_pub.c994 int ret = 0; local
1075 ret = 1;
1085 return (ret);
1104 int ret = 0; local
1180 ret = 1;
1190 return (ret);
1441 int ret; local
1454 ret = pkcs11_parse_uri(keyid, &uri_struct);
1455 if (ret == PK11_URI_OK) {
1459 } else if (ret
2441 int reuse_mem_len = 0, ret = 0; local
2669 int ret = -1; local
[all...]
/solaris-userland/components/net-snmp-57/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) {

Completed in 1293 milliseconds

12