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

<<11121314151617181920>>

/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Quartz/PyObjCTest/
H A Dtest_cvpixelbufferpool.py21 rv, pool = CVPixelBufferPoolCreate(None, {
29 self.failUnlessEqual(rv, 0)
44 rv, image = CVPixelBufferPoolCreatePixelBuffer(None, pool, None)
45 self.failUnlessEqual(rv, 0)
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Quartz/PyObjCTest/
H A Dtest_cvpixelbufferpool.py19 rv, pool = CVPixelBufferPoolCreate(None, {
27 self.assertEqual(rv, 0)
42 rv, image = CVPixelBufferPoolCreatePixelBuffer(None, pool, None)
43 self.assertEqual(rv, 0)
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Quartz-2.5.1/PyObjCTest/
H A Dtest_cvpixelbufferpool.py34 rv, pool = CVPixelBufferPoolCreate(None, {
42 self.assertEqual(rv, 0)
57 rv, image = CVPixelBufferPoolCreatePixelBuffer(None, pool, None)
58 self.assertEqual(rv, 0)
/macosx-10.10/ruby-106/ruby/lib/rexml/dtd/
H A Dentitydecl.rb38 rv = "<!ENTITY #@name "
39 rv << "#@middle " if @middle.size > 0
40 rv << @content
41 rv
/macosx-10.10/apache-793/httpd/modules/arch/win32/
H A Dmod_isapi.c126 apr_status_t rv; local
143 if ((rv = apr_stat(&tmp, fspec, APR_FINFO_TYPE,
145 ap_log_error(APLOG_MARK, APLOG_WARNING, rv, cmd->server, APLOGNO(02104)
156 rv = isapi_lookup(cmd->pool, cmd->server, NULL, fspec, &isa);
157 if (rv != APR_SUCCESS) {
158 ap_log_error(APLOG_MARK, APLOG_WARNING, rv, cmd->server, APLOGNO(02106)
256 apr_status_t rv; local
271 rv = apr_dso_load(&isa->handle, isa->filename, p);
272 if (rv)
274 ap_log_error(APLOG_MARK, APLOG_ERR, rv,
311 apr_status_t rv = apr_get_os_error(); local
329 apr_status_t rv; local
818 apr_status_t rv = APR_SUCCESS; local
873 apr_status_t rv; local
1411 apr_status_t rv; local
1648 apr_status_t rv; local
1686 apr_status_t rv; local
[all...]
/macosx-10.10/apache-793/httpd/modules/cache/
H A Dmod_cache_disk.c112 apr_status_t rv; local
121 rv = apr_dir_make(file,
123 if (rv != APR_SUCCESS && !APR_STATUS_IS_EEXIST(rv)) {
124 return rv;
139 apr_status_t rv; local
141 rv = apr_file_rename(src, dest, pool);
143 if (rv != APR_SUCCESS) {
146 for (i = 0; i < 2 && rv != APR_SUCCESS; i++) {
150 rv
164 apr_status_t rv = APR_SUCCESS; local
220 apr_status_t rv; local
716 apr_status_t rv; local
750 apr_status_t rv; local
781 apr_status_t rv; local
903 apr_status_t rv; local
957 apr_status_t rv; local
1128 apr_status_t rv = APR_SUCCESS; local
1319 apr_status_t rv; local
1360 apr_status_t rv; local
[all...]
/macosx-10.10/apache-793/httpd/modules/http/
H A Dchunk_filter.c54 apr_status_t rv; local
97 rv = apr_bucket_read(e, &data, &len, APR_BLOCK_READ);
98 if (rv != APR_SUCCESS) {
99 return rv;
188 rv = ap_pass_brigade(f->next, b);
189 if (rv != APR_SUCCESS || eos != NULL) {
190 return rv;
/macosx-10.10/apache-793/httpd/modules/proxy/
H A Dajp_utils.c29 apr_status_t rc, rv; local
75 rv = ajp_ilink_receive(sock, msg);
76 if (rv != APR_SUCCESS) {
83 rv = ajp_msg_get_uint8(msg, &result);
84 if (rv != APR_SUCCESS) {
93 rv = APR_EGENERAL;
108 return rv;
H A Dmod_proxy_connect.c150 int rv; local
157 rv = ap_get_brigade(c_i->input_filters, bb, AP_MODE_READBYTES,
159 if (rv == APR_SUCCESS) {
171 rv = ap_pass_brigade(c_o->output_filters, bb);
172 if (rv == APR_SUCCESS) {
176 ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r, APLOGNO(01017)
180 } else if (!APR_STATUS_IS_EAGAIN(rv)) {
181 ap_log_rerror(APLOG_MARK, APLOG_DEBUG, rv, r, APLOGNO(01018)
185 } while (rv == APR_SUCCESS);
187 if (APR_STATUS_IS_EAGAIN(rv)) {
208 apr_status_t rv; local
[all...]
/macosx-10.10/apr-32/apr/apr/file_io/unix/
H A Dmktemp.c100 apr_status_t rv; local
131 rv = apr_stat(&sbuf, path, APR_FINFO_TYPE, p);
133 if (rv != APR_SUCCESS)
134 return rv;
143 if ((rv = apr_file_open(doopen, path, flags,
146 if (!APR_STATUS_IS_EEXIST(rv))
147 return rv;
/macosx-10.10/apr-32/apr-util/apr-util/ldap/
H A Dapr_ldap_stub.c38 apr_status_t rv; local
43 rv = apu_dso_mutex_lock();
44 if (rv) {
45 return rv;
53 rv = apu_dso_load(NULL, &symbol, modname, "apr__ldap_fns", pool);
54 if (rv == APR_SUCCESS) {
59 return rv;
/macosx-10.10/ruby-106/ruby/lib/rexml/
H A Dxmldecl.rb90 rv = XMLDecl.new( "1.0" )
91 rv.nowrite
92 rv
109 rv = "version='#@version'"
110 rv << " encoding='#{enc}'" if @writeencoding || enc !~ /\Autf-8\z/i
111 rv << " standalone='#@standalone'" if @standalone
112 rv
/macosx-10.10/apache-793/httpd/modules/filters/
H A Dmod_data.c70 apr_status_t rv = APR_SUCCESS; local
129 while (APR_SUCCESS == rv && !APR_BRIGADE_EMPTY(bb)) {
157 rv = ap_pass_brigade(f->next, ctx->bb);
160 if ((APR_SUCCESS == rv) && (!APR_BRIGADE_EMPTY(bb))) {
161 rv = ap_pass_brigade(f->next, bb);
174 rv = ap_pass_brigade(f->next, ctx->bb);
193 if (APR_SUCCESS == (rv = apr_bucket_read(e, &data, &size,
226 rv = ap_pass_brigade(f->next, ctx->bb);
227 if (rv) {
237 return rv;
[all...]
/macosx-10.10/apache-793/httpd/modules/slotmem/
H A Dmod_slotmem_shm.c178 apr_status_t rv; local
189 rv = apr_file_open(&fp, storename, APR_CREATE | APR_READ | APR_WRITE,
191 if (APR_STATUS_IS_EEXIST(rv)) {
193 rv = apr_file_open(&fp, storename, APR_CREATE | APR_READ | APR_WRITE,
196 if (rv != APR_SUCCESS) {
205 rv = apr_file_write_full(fp, slotmem->persist, nbytes, NULL);
206 if (rv == APR_SUCCESS) {
207 rv = apr_file_write_full(fp, digest, APR_MD5_DIGESTSIZE, NULL);
210 if (rv != APR_SUCCESS) {
222 apr_status_t rv local
344 apr_status_t rv; local
498 apr_status_t rv; local
[all...]
/macosx-10.10/apr-32/apr/apr/file_io/os2/
H A Ddir.c56 int rv = 0; local
59 rv = DosFindClose(thedir->handle);
61 if (rv == 0) {
66 return APR_FROM_OS_ERROR(rv);
74 int rv; local
79 rv = DosFindFirst(apr_pstrcat(thedir->pool, thedir->dirname, "/*", NULL), &thedir->handle,
83 rv = DosFindNext(thedir->handle, &thedir->entry, sizeof(thedir->entry), &entries);
90 if (rv == 0 && entries == 1) {
118 if (rv)
119 return APR_FROM_OS_ERROR(rv);
[all...]
/macosx-10.10/apr-32/apr-util/apr-util/test/
H A Dtestcrypto.c37 apr_status_t rv; local
39 rv = apr_crypto_init(pool);
40 ABTS_ASSERT(tc, "failed to init apr_crypto", rv == APR_SUCCESS);
42 rv = apr_crypto_get_driver(&driver, name, params, &err, pool);
43 if (APR_SUCCESS != rv && err) {
47 if (APR_ENOTIMPL == rv) {
51 ABTS_ASSERT(tc, "failed to apr_crypto_get_driver", rv == APR_SUCCESS);
53 if (!driver || rv) {
106 apr_status_t rv; local
113 rv
156 apr_status_t rv; local
236 apr_status_t rv; local
363 apr_status_t rv; local
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/roken/
H A Dflock.c89 BOOL rv = FALSE;
108 rv = UnlockFileEx(hFile, 0,
113 rv = LockFileEx(hFile, f, 0,
118 rv = LockFileEx(hFile, f|LOCKFILE_EXCLUSIVE_LOCK, 0,
128 if (!rv) {
/macosx-10.10/apache-793/httpd/support/
H A Dhtpasswd.c167 apr_status_t rv; local
172 rv = apr_getopt_init(&state, pool, argc, argv);
173 if (rv != APR_SUCCESS)
176 while ((rv = apr_getopt(state, "cnmspdBbDiC:v", &opt, &opt_arg)) == APR_SUCCESS) {
201 if (rv != APR_EOF)
253 apr_status_t rv; local
258 rv = apr_password_validate(ctx->passwd, hash);
259 if (rv == APR_SUCCESS)
261 if (APR_STATUS_IS_EMISMATCH(rv)) {
266 &rv);
290 apr_status_t rv; local
[all...]
/macosx-10.10/apr-32/apr-util/apr-util/buckets/
H A Dapr_buckets_socket.c24 apr_status_t rv; local
36 rv = apr_socket_recv(p, buf, len);
42 if (rv != APR_SUCCESS && rv != APR_EOF) {
44 return rv;
H A Dapr_brigade.c112 apr_status_t rv; local
143 rv = apr_bucket_read(e, &s, &len, APR_BLOCK_READ);
144 if (rv != APR_SUCCESS) {
146 return rv;
157 if ((rv = apr_bucket_split(e, (apr_size_t)point64))
160 return rv;
165 rv = apr_bucket_read(e, &s, &len, APR_BLOCK_READ);
166 if (rv != APR_SUCCESS) {
168 return rv;
175 rv
275 apr_status_t rv; local
315 apr_status_t rv; local
365 apr_status_t rv; local
400 apr_status_t rv; local
575 apr_status_t rv = flush(b, ctx); local
621 apr_status_t rv; local
635 apr_status_t rv; local
[all...]
/macosx-10.10/apr-32/apr-util/apr-util/xlate/
H A Dxlate.c94 int rv = errno; local
97 return rv ? rv : APR_EINVAL;
153 apr_status_t rv; local
160 rv = apr_iconv(convset->ich, (ICONV_INBUF_TYPE)&inbufptr,
164 if ((rv == APR_SUCCESS)
183 rv = apr_iconv_open(convset->topage, convset->frompage,
203 apr_status_t rv; local
240 rv = apr_iconv_open(topage, frompage, pool, &new->ich);
241 if (rv !
253 int rv = errno; local
[all...]
/macosx-10.10/ruby-106/ruby/lib/rss/
H A Dxml-stylesheet.rb56 rv = ""
58 rv << %Q[<?xml-stylesheet]
61 rv << %Q[ #{name}="#{h __send__(name)}"]
64 rv << %Q[?>]
66 rv
/macosx-10.10/apr-32/apr/apr/file_io/win32/
H A Dopen.c55 apr_status_t rv; local
89 if ((rv = apr_conv_utf8_to_ucs2(srcstr, &srcremains, t, &retlen))) {
90 return (rv == APR_INCOMPLETE) ? APR_EINVAL : rv;
111 apr_status_t rv; local
130 if ((rv = apr_conv_ucs2_to_utf8(srcstr, &srcremains, t, &retlen))) {
131 return rv;
229 apr_status_t rv; local
246 rv = APR_SUCCESS;
250 rv
330 apr_status_t rv; local
510 apr_status_t rv; local
535 apr_status_t rv; local
587 apr_status_t rv = APR_SUCCESS; local
646 apr_status_t rv; local
[all...]
/macosx-10.10/apache-793/httpd/server/
H A Dutil_mutex.c173 apr_status_t rv; local
188 rv = ap_parse_mutex(mechdir, p, &mech, &mutexdir);
189 if (rv == APR_ENOTIMPL) {
193 else if (rv == APR_BADARG
198 else if (rv == APR_ENOLOCK) { /* "none" */
386 static void log_create_failure(apr_status_t rv, server_rec *s, const char *type, argument
389 ap_log_error(APLOG_MARK, APLOG_EMERG, rv, s, APLOGNO(00023)
397 static void log_perms_failure(apr_status_t rv, server_rec *s, const char *type) argument
399 ap_log_error(APLOG_MARK, APLOG_EMERG, rv, s, APLOGNO(00024)
413 apr_status_t rv; local
460 apr_status_t rv; local
[all...]
/macosx-10.10/apache-793/httpd/server/mpm/winnt/
H A Dmpm_winnt.c278 apr_status_t rv; local
310 if ((rv = apr_os_proc_mutex_put(child_start_mutex, &os_start, s->process->pool))
312 ap_log_error(APLOG_MARK, APLOG_CRIT, rv, ap_server_conf, APLOGNO(00387)
325 if ((rv = apr_os_shm_put(scoreboard_shm, &hScore, s->process->pool))
327 ap_log_error(APLOG_MARK, APLOG_CRIT, rv, ap_server_conf, APLOGNO(00389)
332 rv = ap_reopen_scoreboard(s->process->pool, scoreboard_shm, 1);
333 if (rv || !(sb_shared = apr_shm_baseaddr_get(*scoreboard_shm))) {
334 ap_log_error(APLOG_MARK, APLOG_CRIT, rv, ap_server_conf, APLOGNO(00390)
356 apr_status_t rv; local
369 if ((rv
491 apr_status_t rv; local
542 apr_status_t rv; local
749 int rv, cld; local
926 winnt_query(int query_code, int *result, apr_status_t *rv) argument
1008 apr_status_t rv; local
1382 apr_status_t rv; local
1499 apr_status_t rv = 0; local
1653 apr_status_t rv; local
[all...]

Completed in 165 milliseconds

<<11121314151617181920>>