Searched refs:rv (Results 1 - 25 of 1052) sorted by relevance

1234567891011>>

/macosx-10.9.5/apache-786.1/httpd/srclib/apr/locks/unix/
H A Dthread_cond.c27 apr_status_t rv; local
29 rv = pthread_cond_destroy(&cond->cond);
31 if (rv) {
32 rv = errno;
35 return rv;
42 apr_status_t rv; local
48 if ((rv = pthread_cond_init(&new_cond->cond, NULL))) {
50 rv = errno;
52 return rv;
66 apr_status_t rv; local
81 apr_status_t rv; local
104 apr_status_t rv; local
117 apr_status_t rv; local
[all...]
H A Dthread_mutex.c26 apr_status_t rv; local
28 rv = pthread_mutex_destroy(&mutex->mutex);
30 if (rv) {
31 rv = errno;
34 return rv;
42 apr_status_t rv; local
57 rv = pthread_mutexattr_init(&mattr);
58 if (rv) return rv;
60 rv
90 apr_status_t rv; local
104 apr_status_t rv; local
[all...]
/macosx-10.9.5/apr-30/apr/apr/locks/unix/
H A Dthread_cond.c27 apr_status_t rv; local
29 rv = pthread_cond_destroy(&cond->cond);
31 if (rv) {
32 rv = errno;
35 return rv;
42 apr_status_t rv; local
48 if ((rv = pthread_cond_init(&new_cond->cond, NULL))) {
50 rv = errno;
52 return rv;
66 apr_status_t rv; local
81 apr_status_t rv; local
104 apr_status_t rv; local
117 apr_status_t rv; local
[all...]
H A Dthread_mutex.c26 apr_status_t rv; local
28 rv = pthread_mutex_destroy(&mutex->mutex);
30 if (rv) {
31 rv = errno;
34 return rv;
42 apr_status_t rv; local
57 rv = pthread_mutexattr_init(&mattr);
58 if (rv) return rv;
60 rv
90 apr_status_t rv; local
104 apr_status_t rv; local
[all...]
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/test/
H A Dtestcond.c28 #define ABTS_SUCCESS(rv) ABTS_INT_EQUAL(tc, APR_SUCCESS, rv)
50 apr_status_t rv; local
54 rv = apr_thread_mutex_create(&mutex, APR_THREAD_MUTEX_DEFAULT, p);
55 ABTS_SUCCESS(rv);
58 rv = apr_thread_cond_create(&cond, p);
59 ABTS_SUCCESS(rv);
62 rv = apr_thread_cond_signal(cond);
63 ABTS_SUCCESS(rv);
65 rv
106 apr_status_t rv; local
122 apr_status_t rv; local
182 apr_status_t rv; local
204 apr_status_t rv; local
263 apr_status_t rv; local
281 apr_status_t rv; local
307 apr_status_t rv, retval; local
356 apr_status_t rv; local
397 apr_status_t rv; local
431 apr_status_t rv; local
517 apr_status_t rv; local
547 apr_status_t rv; local
577 apr_status_t rv, retval; local
[all...]
H A Dtestenv.c31 apr_status_t rv; local
33 rv = apr_env_set(TEST_ENVVAR_NAME, TEST_ENVVAR_VALUE, p);
34 have_env_set = (rv != APR_ENOTIMPL);
38 APR_ASSERT_SUCCESS(tc, "set environment variable", rv);
45 apr_status_t rv; local
52 rv = apr_env_get(&value, TEST_ENVVAR_NAME, p);
53 have_env_get = (rv != APR_ENOTIMPL);
58 APR_ASSERT_SUCCESS(tc, "get environment variable", rv);
65 apr_status_t rv; local
72 rv
92 apr_status_t rv; local
[all...]
H A Dechod.c31 static void reportError(const char *msg, apr_status_t rv, argument
34 fprintf(stderr, "%s\nError: %d\n'%s'\n", msg, rv,
35 apr_psprintf(pool, "%pm", &rv));
43 apr_status_t rv; local
55 rv = apr_socket_recv(socket, buf, &len);
56 if (APR_STATUS_IS_EOF(rv) || len == 0 || rv != APR_SUCCESS)
58 rv = apr_socket_send(socket, buf, &len);
59 if (len == 0 || rv != APR_SUCCESS)
61 } while (rv
71 apr_status_t rv; local
[all...]
H A Dtestsockets.c27 apr_status_t rv; local
31 rv = apr_socket_create(&sock, APR_INET, SOCK_STREAM, 0, p);
32 ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
35 rv = apr_socket_type_get(sock, &type);
36 ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
44 apr_status_t rv; local
48 rv = apr_socket_create(&sock, APR_INET, SOCK_DGRAM, 0, p);
49 ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
52 rv = apr_socket_type_get(sock, &type);
53 ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
62 apr_status_t rv; local
77 apr_status_t rv; local
94 apr_status_t rv; local
196 apr_status_t rv; local
[all...]
/macosx-10.9.5/apr-30/apr/apr/test/
H A Dtestcond.c28 #define ABTS_SUCCESS(rv) ABTS_INT_EQUAL(tc, APR_SUCCESS, rv)
50 apr_status_t rv; local
54 rv = apr_thread_mutex_create(&mutex, APR_THREAD_MUTEX_DEFAULT, p);
55 ABTS_SUCCESS(rv);
58 rv = apr_thread_cond_create(&cond, p);
59 ABTS_SUCCESS(rv);
62 rv = apr_thread_cond_signal(cond);
63 ABTS_SUCCESS(rv);
65 rv
106 apr_status_t rv; local
122 apr_status_t rv; local
182 apr_status_t rv; local
204 apr_status_t rv; local
263 apr_status_t rv; local
281 apr_status_t rv; local
307 apr_status_t rv, retval; local
356 apr_status_t rv; local
397 apr_status_t rv; local
431 apr_status_t rv; local
517 apr_status_t rv; local
547 apr_status_t rv; local
577 apr_status_t rv, retval; local
[all...]
H A Dtestenv.c31 apr_status_t rv; local
33 rv = apr_env_set(TEST_ENVVAR_NAME, TEST_ENVVAR_VALUE, p);
34 have_env_set = (rv != APR_ENOTIMPL);
38 APR_ASSERT_SUCCESS(tc, "set environment variable", rv);
45 apr_status_t rv; local
52 rv = apr_env_get(&value, TEST_ENVVAR_NAME, p);
53 have_env_get = (rv != APR_ENOTIMPL);
58 APR_ASSERT_SUCCESS(tc, "get environment variable", rv);
65 apr_status_t rv; local
72 rv
92 apr_status_t rv; local
[all...]
H A Dechod.c31 static void reportError(const char *msg, apr_status_t rv, argument
34 fprintf(stderr, "%s\nError: %d\n'%s'\n", msg, rv,
35 apr_psprintf(pool, "%pm", &rv));
43 apr_status_t rv; local
55 rv = apr_socket_recv(socket, buf, &len);
56 if (APR_STATUS_IS_EOF(rv) || len == 0 || rv != APR_SUCCESS)
58 rv = apr_socket_send(socket, buf, &len);
59 if (len == 0 || rv != APR_SUCCESS)
61 } while (rv
71 apr_status_t rv; local
116 apr_status_t rv; local
[all...]
/macosx-10.9.5/xnu-2422.115.4/libsyscall/mach/
H A Dmach_port.c42 kern_return_t rv; local
44 rv = _kernelrpc_mach_port_names(task, names, namesCnt, types,
47 return (rv);
56 kern_return_t rv; local
58 rv = _kernelrpc_mach_port_type(task, name, ptype);
60 return (rv);
69 kern_return_t rv; local
71 rv = _kernelrpc_mach_port_rename(task, old_name, new_name);
73 return (rv);
82 kern_return_t rv; local
95 kern_return_t rv; local
110 kern_return_t rv; local
125 kern_return_t rv; local
142 kern_return_t rv; local
156 kern_return_t rv; local
177 kern_return_t rv; local
192 kern_return_t rv; local
206 kern_return_t rv; local
220 kern_return_t rv; local
240 kern_return_t rv; local
255 kern_return_t rv; local
274 kern_return_t rv; local
288 kern_return_t rv; local
303 kern_return_t rv; local
319 kern_return_t rv; local
334 kern_return_t rv; local
349 kern_return_t rv; local
361 kern_return_t rv; local
374 kern_return_t rv; local
390 kern_return_t rv; local
405 kern_return_t rv; local
420 kern_return_t rv; local
434 kern_return_t rv; local
450 kern_return_t rv; local
466 kern_return_t rv; local
484 kern_return_t rv; local
498 kern_return_t rv; local
512 kern_return_t rv; local
529 kern_return_t rv; local
547 kern_return_t rv; local
564 kern_return_t rv; local
[all...]
/macosx-10.9.5/apache-786.1/httpd/srclib/apr-util/test/
H A Dtestqueue.c38 apr_status_t rv; local
46 rv = apr_queue_pop(queue, &v);
48 if (rv == APR_EINTR)
51 if (rv == APR_EOF)
55 ABTS_TRUE(tc, rv == APR_SUCCESS);
67 apr_status_t rv; local
74 rv = apr_queue_push(queue, NULL);
76 if (rv == APR_EINTR)
79 if (rv == APR_EOF)
82 ABTS_TRUE(tc, rv
93 apr_status_t rv; local
[all...]
H A Ddbd.c25 rv = func(pool, sql, driver); \
26 if (rv != 0) { \
27 printf("Error in %s: rc=%d\n\n", msg, rv); \
37 int rv = 0; local
43 rv = apr_dbd_query(driver, handle, &nrows, statement);
44 return rv;
49 int rv = 0; local
52 rv = apr_dbd_query(driver, handle, &nrows, statement);
53 return rv;
59 int rv local
96 int rv = 0; local
110 int rv = 0; local
142 int rv = 0; local
198 int rv = 0; local
271 int rv = 0; local
315 int rv = 0; local
349 int rv; local
[all...]
/macosx-10.9.5/apr-30/apr-util/apr-util/test/
H A Dtestqueue.c38 apr_status_t rv; local
46 rv = apr_queue_pop(queue, &v);
48 if (rv == APR_EINTR)
51 if (rv == APR_EOF)
55 ABTS_TRUE(tc, rv == APR_SUCCESS);
67 apr_status_t rv; local
74 rv = apr_queue_push(queue, NULL);
76 if (rv == APR_EINTR)
79 if (rv == APR_EOF)
82 ABTS_TRUE(tc, rv
93 apr_status_t rv; local
[all...]
H A Ddbd.c25 rv = func(pool, sql, driver); \
26 if (rv != 0) { \
27 printf("Error in %s: rc=%d\n\n", msg, rv); \
37 int rv = 0; local
43 rv = apr_dbd_query(driver, handle, &nrows, statement);
44 return rv;
49 int rv = 0; local
52 rv = apr_dbd_query(driver, handle, &nrows, statement);
53 return rv;
59 int rv local
96 int rv = 0; local
110 int rv = 0; local
142 int rv = 0; local
198 int rv = 0; local
271 int rv = 0; local
315 int rv = 0; local
349 int rv; local
[all...]
/macosx-10.9.5/apache-786.1/httpd/srclib/apr-util/misc/
H A Dapr_queue.c105 apr_status_t rv; local
111 rv = apr_thread_mutex_create(&queue->one_big_mutex,
114 if (rv != APR_SUCCESS) {
115 return rv;
118 rv = apr_thread_cond_create(&queue->not_empty, a);
119 if (rv != APR_SUCCESS) {
120 return rv;
123 rv = apr_thread_cond_create(&queue->not_full, a);
124 if (rv != APR_SUCCESS) {
125 return rv;
150 apr_status_t rv; local
213 apr_status_t rv; local
263 apr_status_t rv; local
327 apr_status_t rv; local
364 apr_status_t rv; local
381 apr_status_t rv; local
[all...]
/macosx-10.9.5/apr-30/apr-util/apr-util/misc/
H A Dapr_queue.c105 apr_status_t rv; local
111 rv = apr_thread_mutex_create(&queue->one_big_mutex,
114 if (rv != APR_SUCCESS) {
115 return rv;
118 rv = apr_thread_cond_create(&queue->not_empty, a);
119 if (rv != APR_SUCCESS) {
120 return rv;
123 rv = apr_thread_cond_create(&queue->not_full, a);
124 if (rv != APR_SUCCESS) {
125 return rv;
150 apr_status_t rv; local
213 apr_status_t rv; local
263 apr_status_t rv; local
327 apr_status_t rv; local
364 apr_status_t rv; local
381 apr_status_t rv; local
[all...]
/macosx-10.9.5/apache-786.1/httpd/server/
H A Dutil_ebcdic.c29 apr_status_t rv; local
32 rv = apr_xlate_open(&ap_hdrs_to_ascii, "ISO-8859-1", APR_DEFAULT_CHARSET, pool);
33 if (rv) {
34 ap_log_error(APLOG_MARK, APLOG_ERR, rv, NULL,
36 return rv;
39 rv = apr_xlate_open(&ap_hdrs_from_ascii, APR_DEFAULT_CHARSET, "ISO-8859-1", pool);
40 if (rv) {
41 ap_log_error(APLOG_MARK, APLOG_ERR, rv, NULL,
43 return rv;
46 rv
[all...]
/macosx-10.9.5/Security-55471.14.18/regressions/test/
H A Dtest-00-test.c11 int rv = 1; local
17 rv = ok(0, "ok bad");
18 if (!rv)
21 rv &= ok(1, "ok ok");
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/network_io/unix/
H A Dsocket_util.c23 apr_status_t rv; local
36 rv = apr_poll(&pfds[0], 1, &nfds, 0);
37 } while (APR_STATUS_IS_EINTR(rv));
39 if (APR_STATUS_IS_TIMEUP(rv)) {
45 else if (rv) {
47 return rv;
56 rv = apr_socket_recvfrom(&unused, sock, MSG_PEEK, &buf, &len);
57 if (rv == APR_EOF) {
61 else if (rv) {
63 return rv;
[all...]
/macosx-10.9.5/apr-30/apr/apr/network_io/unix/
H A Dsocket_util.c23 apr_status_t rv; local
36 rv = apr_poll(&pfds[0], 1, &nfds, 0);
37 } while (APR_STATUS_IS_EINTR(rv));
39 if (APR_STATUS_IS_TIMEUP(rv)) {
45 else if (rv) {
47 return rv;
56 rv = apr_socket_recvfrom(&unused, sock, MSG_PEEK, &buf, &len);
57 if (rv == APR_EOF) {
61 else if (rv) {
63 return rv;
[all...]
/macosx-10.9.5/bash-92/bash-3.2/tests/misc/
H A Dwait-bg.tests7 rv=$?
10 echo $$: Job $i: pid is $pid rv=$rv
22 rv=$?
23 echo Return value is $rv
/macosx-10.9.5/apache-786.1/httpd/server/mpm/experimental/event/
H A Dpod.c25 apr_status_t rv; local
28 rv = apr_file_pipe_create(&((*pod)->pod_in), &((*pod)->pod_out), p);
29 if (rv != APR_SUCCESS) {
30 return rv;
68 apr_status_t rv; local
70 rv = apr_file_close(pod->pod_out);
71 if (rv != APR_SUCCESS) {
72 return rv;
75 rv = apr_file_close(pod->pod_in);
76 if (rv !
84 apr_status_t rv; local
104 apr_status_t rv = APR_SUCCESS; local
[all...]
/macosx-10.9.5/apache-786.1/httpd/server/mpm/worker/
H A Dpod.c25 apr_status_t rv; local
28 rv = apr_file_pipe_create(&((*pod)->pod_in), &((*pod)->pod_out), p);
29 if (rv != APR_SUCCESS) {
30 return rv;
68 apr_status_t rv; local
70 rv = apr_file_close(pod->pod_out);
71 if (rv != APR_SUCCESS) {
72 return rv;
75 rv = apr_file_close(pod->pod_in);
76 if (rv !
84 apr_status_t rv; local
104 apr_status_t rv = APR_SUCCESS; local
[all...]

Completed in 162 milliseconds

1234567891011>>