Searched refs:rv (Results 251 - 275 of 1052) sorted by relevance

<<11121314151617181920>>

/macosx-10.9.5/ksh-20/ksh/src/lib/libast/sfio/
H A Dsfraise.c39 int n, rv; local
41 rv = 0;
50 rv -= 1;
53 return rv;
66 reg int local, rv; local
90 if((rv = (*disc->exceptf)(f,type,data,disc)) != 0 )
91 SFMTXRETURN(f, rv);
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/poll/unix/
H A Depoll.c30 apr_int16_t rv = 0; local
33 rv |= EPOLLIN;
35 rv |= EPOLLPRI;
37 rv |= EPOLLOUT;
40 return rv;
45 apr_int16_t rv = 0; local
48 rv |= APR_POLLIN;
50 rv |= APR_POLLPRI;
52 rv |= APR_POLLOUT;
54 rv |
92 apr_status_t rv; local
152 apr_status_t rv = APR_SUCCESS; local
203 apr_status_t rv = APR_SUCCESS; local
249 apr_status_t rv = APR_SUCCESS; local
394 apr_status_t rv = APR_SUCCESS; local
423 apr_status_t rv = APR_SUCCESS; local
[all...]
/macosx-10.9.5/apr-30/apr/apr/poll/unix/
H A Depoll.c30 apr_int16_t rv = 0; local
33 rv |= EPOLLIN;
35 rv |= EPOLLPRI;
37 rv |= EPOLLOUT;
40 return rv;
45 apr_int16_t rv = 0; local
48 rv |= APR_POLLIN;
50 rv |= APR_POLLPRI;
52 rv |= APR_POLLOUT;
54 rv |
92 apr_status_t rv; local
152 apr_status_t rv = APR_SUCCESS; local
203 apr_status_t rv = APR_SUCCESS; local
249 apr_status_t rv = APR_SUCCESS; local
394 apr_status_t rv = APR_SUCCESS; local
423 apr_status_t rv = APR_SUCCESS; local
[all...]
/macosx-10.9.5/apache-786.1/httpd/modules/filters/
H A Dmod_ext_filter.c175 apr_status_t rv; local
196 rv = apr_tokenize_to_argv(parms, &(filter->args), p);
197 if (rv != APR_SUCCESS) {
385 apr_status_t rv; local
388 rv = apr_procattr_limit_set(procattr, APR_LIMIT_CPU, conf->limit_cpu);
389 ap_assert(rv == APR_SUCCESS); /* otherwise, we're out of sync with APR */
392 rv = apr_procattr_limit_set(procattr, APR_LIMIT_MEM, conf->limit_mem);
393 ap_assert(rv == APR_SUCCESS); /* otherwise, we're out of sync with APR */
396 rv = apr_procattr_limit_set(procattr, APR_LIMIT_NPROC, conf->limit_nproc);
397 ap_assert(rv
577 apr_status_t rv; local
668 apr_status_t rv; local
700 apr_status_t rv; local
771 apr_status_t rv; local
868 apr_status_t rv; local
921 apr_status_t rv; local
[all...]
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/file_io/win32/
H A Dseek.c25 apr_status_t rv; local
30 rv = apr_file_flush(thefile);
31 if (rv != APR_SUCCESS)
32 return rv;
44 rv = APR_SUCCESS;
56 rv = apr_get_os_error();
58 rv = APR_SUCCESS;
60 if (rv == APR_SUCCESS) {
61 rv = APR_SUCCESS;
68 return rv;
159 apr_status_t rv; local
[all...]
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/threadproc/unix/
H A Dproc.c47 apr_status_t rv; local
60 if ((rv = apr_file_pipe_create_ex(&attr->child_in, &attr->parent_in,
62 rv = apr_file_inherit_unset(attr->parent_in);
63 if (rv != APR_SUCCESS)
64 return rv;
70 if ((rv = apr_file_pipe_create_ex(&attr->parent_out, &attr->child_out,
72 rv = apr_file_inherit_unset(attr->parent_out);
73 if (rv != APR_SUCCESS)
74 return rv;
80 if ((rv
97 apr_status_t rv = APR_SUCCESS; local
131 apr_status_t rv = APR_SUCCESS; local
165 apr_status_t rv = APR_SUCCESS; local
318 apr_status_t rv; local
337 apr_status_t rv; local
[all...]
/macosx-10.9.5/apr-30/apr/apr/file_io/win32/
H A Dseek.c25 apr_status_t rv; local
30 rv = apr_file_flush(thefile);
31 if (rv != APR_SUCCESS)
32 return rv;
44 rv = APR_SUCCESS;
56 rv = apr_get_os_error();
58 rv = APR_SUCCESS;
60 if (rv == APR_SUCCESS) {
61 rv = APR_SUCCESS;
68 return rv;
159 apr_status_t rv; local
[all...]
/macosx-10.9.5/apr-30/apr/apr/threadproc/unix/
H A Dproc.c50 apr_status_t rv; local
63 if ((rv = apr_file_pipe_create_ex(&attr->child_in, &attr->parent_in,
65 rv = apr_file_inherit_unset(attr->parent_in);
66 if (rv != APR_SUCCESS)
67 return rv;
73 if ((rv = apr_file_pipe_create_ex(&attr->parent_out, &attr->child_out,
75 rv = apr_file_inherit_unset(attr->parent_out);
76 if (rv != APR_SUCCESS)
77 return rv;
83 if ((rv
100 apr_status_t rv = APR_SUCCESS; local
134 apr_status_t rv = APR_SUCCESS; local
168 apr_status_t rv = APR_SUCCESS; local
325 apr_status_t rv; local
344 apr_status_t rv; local
[all...]
/macosx-10.9.5/apache-786.1/httpd/modules/generators/
H A Dmod_asis.c35 apr_status_t rv; local
50 if ((rv = apr_file_open(&f, r->filename, APR_READ,
52 ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r,
83 rv = apr_file_seek(f, APR_CUR, &pos);
84 if (rv != APR_SUCCESS) {
85 ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r,
117 rv = ap_pass_brigade(r->output_filters, bb);
118 if (rv != APR_SUCCESS) {
119 ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r,
/macosx-10.9.5/apache-786.1/httpd/srclib/apr-util/include/
H A Dapr_optional_hooks.h95 ret rv; \
104 rv=(pHook[n].pFunc)args_use; \
106 if(rv != ok && rv != decline) \
107 return rv; \
/macosx-10.9.5/apr-30/apr-util/apr-util/include/
H A Dapr_optional_hooks.h95 ret rv; \
104 rv=(pHook[n].pFunc)args_use; \
106 if(rv != ok && rv != decline) \
107 return rv; \
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Quartz/PyObjCTest/
H A Dtest_cvopenglbufferpool.py19 rv, pool = CVOpenGLBufferPoolCreate(None, {
23 self.failUnlessEqual(rv, 0)
38 rv, buf = CVOpenGLBufferPoolCreateOpenGLBuffer(None, pool, None)
39 self.failUnlessIsInstance(rv, (int, long))
40 if rv == 0:
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Quartz/PyObjCTest/
H A Dtest_cvopenglbufferpool.py19 rv, pool = CVOpenGLBufferPoolCreate(None, {
23 self.assertEqual(rv, 0)
38 rv, buf = CVOpenGLBufferPoolCreateOpenGLBuffer(None, pool, None)
39 self.assertIsInstance(rv, (int, long))
40 if rv == 0:
/macosx-10.9.5/apache-786.1/httpd/server/
H A Dcore_filters.c106 apr_status_t rv; local
155 rv = apr_brigade_split_line(b, ctx->b, block, HUGE_STRING_LEN);
160 if (APR_STATUS_IS_EAGAIN(rv)) {
161 rv = APR_SUCCESS;
163 return rv;
188 rv = apr_bucket_read(e, &str, &len, APR_NONBLOCK_READ);
190 if (rv != APR_SUCCESS)
191 return rv;
245 rv = apr_bucket_read(e, &str, &len, block);
247 if (APR_STATUS_IS_EAGAIN(rv)) {
313 apr_status_t rv; local
368 apr_status_t rv; local
455 apr_status_t rv = APR_SUCCESS; local
537 apr_status_t rv; local
[all...]
/macosx-10.9.5/SmartcardCCID-55005/ccid/ccid/examples/
H A Dscardcontrol.c50 #define PCSC_ERROR_EXIT(rv, text) \
51 if (rv != SCARD_S_SUCCESS) \
53 printf(text ": %s (0x%lX)\n", pcsc_stringify_error(rv), rv); \
59 #define PCSC_ERROR_CONT(rv, text) \
60 if (rv != SCARD_S_SUCCESS) \
61 printf(text ": %s (0x%lX)\n", pcsc_stringify_error(rv), rv); \
67 LONG rv; local
106 rv
[all...]
/macosx-10.9.5/SmartCardServices-55111/src/PCSC/
H A Dwinscard_msg.cpp96 int rv = SHMMessageReceive(msgStruct, sizeof(*msgStruct), dwClientID, blockamount); local
98 return rv;
121 int rv = SHMMessageReceive(msgStruct, headerSize, dwClientID, blockamount); local
122 Log3(rv?PCSC_LOG_CRITICAL:PCSC_LOG_DEBUG, "SHMClientReadMessage: read message header error: 0x%08X [0x%08X]", rv, rv);
123 secdebug("pcscd", "SHMClientReadMessage: read message header error: 0x%08X [0x%08X]", rv, rv);
124 if (rv)
125 return rv;
[all...]
/macosx-10.9.5/Libinfo-449.1.3/rpc.subproj/
H A Dxdr_float.c230 bool_t rv; local
245 rv = XDR_PUTINT32(xdrs, i32p);
246 if (!rv)
247 return (rv);
248 rv = XDR_PUTINT32(xdrs, i32p+1);
250 rv = XDR_PUTINT32(xdrs, i32p+1);
251 if (!rv)
252 return (rv);
253 rv = XDR_PUTINT32(xdrs, i32p);
255 return (rv);
[all...]
/macosx-10.9.5/Security-55471.14.18/include/security_smime/
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...]
/macosx-10.9.5/Security-55471.14.18/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...]
/macosx-10.9.5/apache-786.1/httpd/srclib/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.9.5/apache-786.1/httpd/srclib/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.9.5/apr-30/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.9.5/apr-30/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.9.5/apache-786.1/httpd/srclib/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.9.5/apache-786.1/httpd/srclib/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;

Completed in 308 milliseconds

<<11121314151617181920>>