Searched refs:rv (Results 201 - 225 of 921) sorted by relevance

1234567891011>>

/macosx-10.10/Security-57031.1.35/Security/libsecurity_smime/lib/
H A Dcmsenvdata.c62 OSStatus rv; local
76 rv = SecCmsContentInfoSetContentEncAlg((SecArenaPoolRef)poolp, &(envd->contentInfo), algorithm, NULL, keysize);
77 if (rv != SECSuccess)
129 OSStatus rv; local
138 rv = SecCmsArrayAdd(edp->cmsg->poolp, (void ***)&(edp->recipientInfos), (void *)rip);
139 if (rv != SECSuccess) {
171 OSStatus rv; local
210 rv = SecCmsContentInfoSetContentEncAlg((SecArenaPoolRef)poolp, cinfo, SEC_OID_DES_EDE3_CBC, NULL, 168);
211 if (rv != SECSuccess)
219 rv
323 OSStatus rv = SECFailure; local
[all...]
H A Dcmspubkey.c68 OSStatus rv; local
71 rv = SecCertificateCopyPublicKey(cert,&publickey);
75 rv = SecCmsUtilEncryptSymKeyRSAPubKey(poolp, publickey, bulkkey, encKey);
77 return rv;
85 OSStatus rv; local
103 rv = SecKeyGetStrengthInBits(publickey, NULL, &data_len);
104 if (rv)
115 rv = WRAP_PubWrapSymKey(publickey, bulkkey, encKey);
116 if (rv != SECSuccess)
156 OSStatus rv
863 OSStatus rv = noErr; local
1240 OSStatus rv = noErr; local
[all...]
/macosx-10.10/apr-32/apr/apr/shmem/win32/
H A Dshm.c42 apr_status_t rv = APR_SUCCESS; local
46 rv = apr_get_os_error();
49 rv = rv != APR_SUCCESS ? rv : apr_get_os_error();
54 rv = rv != APR_SUCCESS ? rv : rc;
56 return rv;
66 apr_status_t rv; local
175 apr_status_t rv = shm_cleanup(m); local
269 apr_status_t rv = shm_cleanup(m); local
[all...]
/macosx-10.10/apr-32/apr/apr/user/win32/
H A Duserinfo.c75 apr_status_t rv;
86 if ((rv = apr_uid_get(&uid, &gid, username, p)) != APR_SUCCESS)
87 return rv;
101 if ((rv = RegOpenKeyEx(HKEY_LOCAL_MACHINE, regkey, 0,
103 return APR_FROM_OS_ERROR(rv);
109 rv = RegQueryValueExW(key, L"ProfileImagePath", NULL, &type,
112 if (rv != ERROR_SUCCESS)
113 return APR_FROM_OS_ERROR(rv);
116 if ((rv = unicode_to_utf8_path(retdir, sizeof(retdir),
118 return rv;
[all...]
/macosx-10.10/Security-57031.1.35/libsecurity_smime/Security/
H A Dcmsdigdata.c159 OSStatus rv = SECSuccess; local
163 rv = SecCmsDigestContextFinishSingle(digd->contentInfo.digcx, &data);
164 if (rv == SECSuccess)
165 rv = SECITEM_CopyItem(digd->contentInfo.cmsg->poolp, &(digd->digest), &data);
166 if (rv == SECSuccess)
171 return rv;
205 OSStatus rv = SECSuccess; local
209 rv = SecCmsDigestContextFinishSingle(digd->contentInfo.digcx, &data);
210 if (rv == SECSuccess)
211 rv
[all...]
/macosx-10.10/Security-57031.1.35/libsecurity_smime/lib/
H A Dcmsdigdata.c159 OSStatus rv = SECSuccess; local
163 rv = SecCmsDigestContextFinishSingle(digd->contentInfo.digcx, &data);
164 if (rv == SECSuccess)
165 rv = SECITEM_CopyItem(digd->contentInfo.cmsg->poolp, &(digd->digest), &data);
166 if (rv == SECSuccess)
171 return rv;
205 OSStatus rv = SECSuccess; local
209 rv = SecCmsDigestContextFinishSingle(digd->contentInfo.digcx, &data);
210 if (rv == SECSuccess)
211 rv
[all...]
/macosx-10.10/Security-57031.1.35/libsecurity_smime/security_smime/
H A Dcmsdigdata.c159 OSStatus rv = SECSuccess; local
163 rv = SecCmsDigestContextFinishSingle(digd->contentInfo.digcx, &data);
164 if (rv == SECSuccess)
165 rv = SECITEM_CopyItem(digd->contentInfo.cmsg->poolp, &(digd->digest), &data);
166 if (rv == SECSuccess)
171 return rv;
205 OSStatus rv = SECSuccess; local
209 rv = SecCmsDigestContextFinishSingle(digd->contentInfo.digcx, &data);
210 if (rv == SECSuccess)
211 rv
[all...]
/macosx-10.10/apache-793/httpd/modules/echo/
H A Dmod_echo.c75 apr_status_t rv; local
77 if ((rv = apr_bucket_read(b, &str, &len, APR_NONBLOCK_READ))
79 return rv;
148 apr_status_t rv; local
151 if (((rv = ap_get_brigade(c->input_filters, bb, AP_MODE_GETLINE,
154 if (!APR_STATUS_IS_EOF(rv) && ! APR_STATUS_IS_TIMEUP(rv))
155 ap_log_error(APLOG_MARK, APLOG_INFO, rv, c->base_server, APLOGNO(01611)
164 ap_log_error(APLOG_MARK, APLOG_INFO, rv, c->base_server, APLOGNO(01612)
180 rv
[all...]
/macosx-10.10/apr-32/apr/apr/dso/win32/
H A Ddso.c58 apr_status_t rv; local
67 if ((rv = utf8_to_unicode_path(wpath, sizeof(wpath)
71 return ((*res_handle)->load_error = rv);
81 rv = apr_get_os_error();
107 rv = apr_get_os_error();
109 rv = APR_SUCCESS;
117 if (rv) {
118 return ((*res_handle)->load_error = rv);
142 apr_status_t rv; local
144 rv
[all...]
/macosx-10.10/apr-32/apr/apr/file_io/netware/
H A Dmktemp.c29 apr_status_t rv; local
42 if ((rv = apr_file_open(fp, template, flags|APR_FOPEN_NOCLEANUP,
62 return rv;
/macosx-10.10/apr-32/apr/apr/test/
H A Dtestpath.c49 apr_status_t rv; local
53 rv = apr_filepath_list_split(&pathelts, path_in, p);
55 ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
64 apr_status_t rv; local
70 rv = apr_filepath_list_split(&pathelts, parts_in[i], p);
72 ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
87 apr_status_t rv; local
95 rv = apr_filepath_list_merge(&liststr, pathelts, p);
97 ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
105 apr_status_t rv; local
[all...]
H A Dreadchild.c27 apr_status_t rv; local
38 while ((rv = apr_file_read(in, buf, &nbytes)) == APR_SUCCESS) {
H A Dtestlockperf.c227 apr_status_t rv; local
241 if ((rv = apr_getopt_init(&opt, pool, argc, argv)) != APR_SUCCESS) {
243 rv, apr_strerror(rv, errmsg, sizeof errmsg));
247 while ((rv = apr_getopt(opt, "v", &optchar, &optarg)) == APR_SUCCESS) {
253 if (rv != APR_SUCCESS && rv != APR_EOF) {
255 rv, apr_strerror(rv, errmsg, sizeof errmsg));
260 if ((rv
[all...]
H A Dteststr.c117 int rv; local
119 rv = apr_snprintf(NULL, 0, "%sBAR", "FOO");
120 ABTS_INT_EQUAL(tc, 6, rv);
125 int rv; local
128 rv = apr_snprintf(buff, 0, "%sBAR", "FOO");
129 ABTS_INT_EQUAL(tc, 6, rv);
136 int rv; local
138 rv = apr_snprintf(buf, sizeof buf, "%.2f", (double)0.0001);
139 ABTS_INT_EQUAL(tc, 4, rv);
142 rv
153 char buf[128], *rv; local
369 int rv; local
[all...]
/macosx-10.10/apr-32/apr-util/apr-util/buckets/
H A Dapr_buckets_refcount.c23 apr_status_t rv; local
25 if ((rv = apr_bucket_simple_split(a, point)) != APR_SUCCESS) {
26 return rv;
H A Dapr_buckets_pipe.c24 apr_status_t rv; local
36 rv = apr_file_read(p, buf, len);
42 if (rv != APR_SUCCESS && rv != APR_EOF) {
44 return rv;
71 if (rv == APR_EOF) {
/macosx-10.10/bash-94.1.2/bash-3.2/lib/sh/
H A Dnetconn.c49 int rv; local
54 rv = getpeername(fd, &sa, &l);
56 return ((rv < 0 && (errno == ENOTSOCK || errno == ENOTCONN || errno == EINVAL)) ? 0 : 1);
/macosx-10.10/apache-793/httpd/modules/proxy/
H A Dmod_proxy_wstunnel.c96 int rv; local
103 rv = ap_get_brigade(c_i->input_filters, bb, AP_MODE_READBYTES,
105 if (rv == APR_SUCCESS) {
117 rv = ap_pass_brigade(c_o->output_filters, bb);
118 if (rv == APR_SUCCESS) {
122 ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r, APLOGNO(02441)
126 } else if (!APR_STATUS_IS_EAGAIN(rv) && !APR_STATUS_IS_EOF(rv)) {
127 ap_log_rerror(APLOG_MARK, APLOG_DEBUG, rv, r, APLOGNO(02442)
131 } while (rv
172 apr_status_t rv = APR_SUCCESS; local
[all...]
/macosx-10.10/SmartCardServices-55111/src/PCSC/
H A Deventhandler.cpp201 LONG rv; local
208 rv = IFDStatusICC(rContext, &dwStatus, ucAtr, &dwAtrLen);
209 if (rv != SCARD_S_SUCCESS)
241 rv = SYS_ThreadCreate(&rContext->pthThread, THREAD_ATTR_DETACHED,
243 secdebug("pcscd", "EHSpawnEventHandler after thread create: %d [%04X]", rv, rv);
244 if (rv == 1)
252 LONG rv; local
271 rv = IFDStatusICC(rContext, &dwStatus, rs->xcardAtr(), &tmpCardAtrLength);
272 secdebug("pcscd", "EHStatusHandlerThread: initial call to IFDStatusICC: %d [%04X]", rv, r
[all...]
/macosx-10.10/ksh-23/ksh/src/lib/libast/sfio/
H A Dsfscanf.c37 reg int rv; local
49 rv = (f && form) ? sfvscanf(f,form,args) : -1;
51 return rv;
88 reg int rv; local
99 rv = (s && form) ? sfvsscanf(s,form,args) : -1;
101 return rv;
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/examples/controlwidget/
H A Ddemo-rdial.tcl5 array set disp_value {rs -30.0 rh 120.0 rv 10.0}
25 "rv" {
35 label .lv -textvariable disp_value(rv)
36 controlwidget::rdial .rv -callback {show_value rv} -value $disp_value(rv)\
44 -width $disp_value(rh) -height $disp_value(rv)
/macosx-10.10/Security-57031.1.35/Security/include/security_smime/
H A Dcmspubkey.c68 OSStatus rv; local
71 rv = SecCertificateCopyPublicKey(cert,&publickey);
75 rv = SecCmsUtilEncryptSymKeyRSAPubKey(poolp, publickey, bulkkey, encKey);
77 return rv;
85 OSStatus rv; local
103 rv = SecKeyGetStrengthInBits(publickey, NULL, &data_len);
104 if (rv)
115 rv = WRAP_PubWrapSymKey(publickey, bulkkey, encKey);
116 if (rv != SECSuccess)
156 OSStatus rv
863 OSStatus rv = noErr; local
1240 OSStatus rv = noErr; local
[all...]
/macosx-10.10/apr-32/apr/apr/poll/unix/
H A Dpollcb.c81 apr_status_t rv; local
117 rv = (*provider->create)(pollcb, size, p, flags);
118 if (rv == APR_ENOTIMPL) {
120 return rv;
124 return rv;
132 rv = (*provider->create)(pollcb, size, p, flags);
133 if (rv != APR_SUCCESS) {
134 return rv;
/macosx-10.10/apr-32/apr/apr/threadproc/unix/
H A Dsignals.c402 int rv; local
420 if ((rv = sigprocmask(SIG_SETMASK, &sig_mask, NULL)) != 0) {
421 rv = errno;
424 if ((rv = pthread_sigmask(SIG_SETMASK, &sig_mask, NULL)) != 0) {
426 rv = errno;
430 return rv;
439 int rv; local
446 if ((rv = sigprocmask(SIG_BLOCK, &sig_mask, NULL)) != 0) {
447 rv = errno;
450 if ((rv
466 int rv; local
[all...]
/macosx-10.10/apache-793/httpd/modules/aaa/
H A Dmod_authz_dbd.c115 int rv; local
136 rv = apr_dbd_pvquery(dbd->driver, r->pool, dbd->handle, &nrows,
138 if (rv == 0) {
146 message = apr_dbd_error(dbd->driver, dbd->handle, rv);
165 else if ((rv = apr_dbd_pvselect(dbd->driver, r->pool, dbd->handle,
167 for (rv = apr_dbd_get_row(dbd->driver, r->pool, res, &row, -1);
168 rv != -1;
169 rv = apr_dbd_get_row(dbd->driver, r->pool, res, &row, -1)) {
170 if (rv != 0) {
171 message = apr_dbd_error(dbd->driver, dbd->handle, rv);
201 int rv; local
253 int i, rv; local
[all...]

Completed in 307 milliseconds

1234567891011>>