Searched refs:rv (Results 101 - 125 of 1052) sorted by relevance

1234567891011>>

/macosx-10.9.5/apr-30/apr/apr/test/
H A Dtesttime.c73 apr_status_t rv; local
76 rv = apr_time_exp_gmt(&xt, now);
77 if (rv == APR_ENOTIMPL) {
80 ABTS_TRUE(tc, rv == APR_SUCCESS);
87 apr_status_t rv; local
92 rv = apr_time_exp_lt(&xt, now);
93 if (rv == APR_ENOTIMPL) {
96 ABTS_TRUE(tc, rv == APR_SUCCESS);
115 apr_status_t rv; local
120 rv
133 apr_status_t rv; local
151 apr_status_t rv; local
167 apr_status_t rv; local
180 apr_status_t rv; local
199 apr_status_t rv; local
216 apr_status_t rv; local
232 apr_status_t rv; local
254 apr_status_t rv; local
[all...]
H A Dtestfile.c37 apr_status_t rv; local
40 rv = apr_file_open(&thefile, FILENAME,
43 ABTS_TRUE(tc, rv != APR_SUCCESS);
44 ABTS_INT_EQUAL(tc, 1, APR_STATUS_IS_EACCES(rv));
50 apr_status_t rv; local
53 rv = apr_file_open(&thefile, FILENAME,
56 ABTS_TRUE(tc, rv != APR_SUCCESS);
57 ABTS_INT_EQUAL(tc, 1, APR_STATUS_IS_EEXIST(rv));
63 apr_status_t rv; local
66 rv
76 apr_status_t rv; local
85 apr_status_t rv; local
93 apr_status_t rv; local
113 apr_status_t rv; local
131 apr_status_t rv; local
149 apr_status_t rv; local
167 apr_status_t rv; local
180 apr_status_t rv; local
193 apr_status_t rv; local
207 apr_status_t rv; local
224 apr_status_t rv; local
239 apr_status_t rv; local
291 apr_status_t rv; local
307 apr_status_t rv; local
331 apr_status_t rv; local
348 apr_status_t rv; local
379 apr_status_t rv; local
394 apr_status_t rv; local
417 apr_status_t rv; local
439 apr_status_t rv; local
462 apr_status_t rv; local
504 apr_status_t rv; local
739 apr_status_t rv; local
776 apr_status_t rv; local
849 apr_status_t rv; local
880 apr_status_t rv; local
925 apr_status_t rv; local
[all...]
H A Dsockperf.c61 static void reportError(const char *msg, apr_status_t rv, argument
65 if (rv != APR_SUCCESS)
66 fprintf(stderr, "Error: %d\n'%s'\n", rv,
67 apr_psprintf(pool, "%pm", &rv));
81 apr_status_t rv; local
88 rv = apr_sockaddr_info_get(&sockAddr, "127.0.0.1", APR_UNSPEC,
90 if (rv != APR_SUCCESS) {
91 reportError("Unable to get socket info", rv, pool);
92 return rv;
97 rv
177 apr_status_t rv; local
206 apr_status_t rv; local
[all...]
H A Dtestpoll.c48 apr_status_t rv; local
50 rv = apr_sockaddr_info_get(sa, "127.0.0.1", APR_UNSPEC, port, 0, p);
51 ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
53 rv = apr_socket_create(sock, (*sa)->family, SOCK_DGRAM, 0, p);
54 ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
56 rv = apr_socket_bind((*sock), (*sa));
57 ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
65 apr_status_t rv; local
69 rv = apr_poll_revents_get(&event, sockarray[which],
71 ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
88 apr_status_t rv; local
103 apr_status_t rv; local
128 apr_status_t rv; local
146 apr_status_t rv; local
164 apr_status_t rv; local
176 apr_status_t rv; local
190 apr_status_t rv; local
205 apr_status_t rv; local
219 apr_status_t rv; local
234 apr_status_t rv; local
249 apr_status_t rv; local
271 apr_status_t rv; local
289 apr_status_t rv; local
296 apr_status_t rv; local
350 apr_status_t rv; local
369 apr_status_t rv; local
381 apr_status_t rv; local
397 apr_status_t rv; local
410 apr_status_t rv; local
433 apr_status_t rv; local
448 apr_status_t rv; local
464 apr_status_t rv; local
478 apr_status_t rv; local
489 apr_status_t rv; local
573 apr_status_t rv; local
600 apr_status_t rv; local
627 apr_status_t rv; local
642 apr_status_t rv; local
777 apr_status_t rv; local
[all...]
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/test/
H A Dtestfile.c37 apr_status_t rv; local
40 rv = apr_file_open(&thefile, FILENAME,
43 ABTS_TRUE(tc, rv != APR_SUCCESS);
44 ABTS_INT_EQUAL(tc, 1, APR_STATUS_IS_EACCES(rv));
50 apr_status_t rv; local
53 rv = apr_file_open(&thefile, FILENAME,
56 ABTS_TRUE(tc, rv != APR_SUCCESS);
57 ABTS_INT_EQUAL(tc, 1, APR_STATUS_IS_EEXIST(rv));
63 apr_status_t rv; local
66 rv
76 apr_status_t rv; local
85 apr_status_t rv; local
93 apr_status_t rv; local
113 apr_status_t rv; local
131 apr_status_t rv; local
149 apr_status_t rv; local
167 apr_status_t rv; local
180 apr_status_t rv; local
193 apr_status_t rv; local
207 apr_status_t rv; local
224 apr_status_t rv; local
239 apr_status_t rv; local
291 apr_status_t rv; local
307 apr_status_t rv; local
331 apr_status_t rv; local
348 apr_status_t rv; local
379 apr_status_t rv; local
394 apr_status_t rv; local
417 apr_status_t rv; local
439 apr_status_t rv; local
462 apr_status_t rv; local
504 apr_status_t rv; local
739 apr_status_t rv; local
777 apr_status_t rv; local
850 apr_status_t rv; local
881 apr_status_t rv; local
926 apr_status_t rv; local
[all...]
H A Dtestpoll.c48 apr_status_t rv; local
50 rv = apr_sockaddr_info_get(sa, "127.0.0.1", APR_UNSPEC, port, 0, p);
51 ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
53 rv = apr_socket_create(sock, (*sa)->family, SOCK_DGRAM, 0, p);
54 ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
56 rv = apr_socket_bind((*sock), (*sa));
57 ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
65 apr_status_t rv; local
69 rv = apr_poll_revents_get(&event, sockarray[which],
71 ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
88 apr_status_t rv; local
103 apr_status_t rv; local
128 apr_status_t rv; local
146 apr_status_t rv; local
164 apr_status_t rv; local
176 apr_status_t rv; local
190 apr_status_t rv; local
205 apr_status_t rv; local
219 apr_status_t rv; local
234 apr_status_t rv; local
249 apr_status_t rv; local
271 apr_status_t rv; local
289 apr_status_t rv; local
296 apr_status_t rv; local
350 apr_status_t rv; local
369 apr_status_t rv; local
381 apr_status_t rv; local
397 apr_status_t rv; local
410 apr_status_t rv; local
433 apr_status_t rv; local
448 apr_status_t rv; local
464 apr_status_t rv; local
478 apr_status_t rv; local
489 apr_status_t rv; local
573 apr_status_t rv; local
600 apr_status_t rv; local
627 apr_status_t rv; local
642 apr_status_t rv; local
777 apr_status_t rv; local
[all...]
H A Dglobalmutexchild.c36 apr_status_t rv; local
48 rv = apr_global_mutex_create(&global_lock, LOCKNAME, mech, p);
49 if (rv != APR_SUCCESS) {
50 exit(-rv);
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/file_io/unix/
H A Dreadwrite.c31 apr_ssize_t rv; local
37 rv = apr_file_flush_locked(thefile);
38 if (rv) {
39 return rv;
46 rv = 0;
53 while (rv == 0 && size > 0) {
59 rv = APR_EOF;
63 rv = errno;
80 rv = 0;
82 return rv;
87 apr_ssize_t rv; local
149 apr_size_t rv; local
230 apr_status_t rv; local
311 apr_status_t rv = APR_SUCCESS; local
336 apr_status_t rv = APR_SUCCESS; local
351 apr_status_t rv = APR_SUCCESS; local
375 apr_status_t rv = APR_SUCCESS; local
403 apr_status_t rv = APR_SUCCESS; /* get rid of gcc warning */ local
[all...]
H A Dbuffer.c25 apr_status_t rv; local
31 rv = apr_file_flush_locked(file);
32 if (rv != APR_SUCCESS) {
34 return rv;
/macosx-10.9.5/apache-786.1/httpd/srclib/apr-util/test/
H A Dtestxlate.c38 apr_status_t rv; local
40 rv = apr_xlate_conv_buffer(convset, inbuf, &inbytes_left, buf, &outbytes_left);
41 ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
43 if (rv != APR_SUCCESS)
46 rv = apr_xlate_conv_buffer(convset, NULL, NULL, buf + sizeof(buf) -
48 ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
59 apr_status_t rv; local
62 rv = apr_xlate_open(&convset, cs2, cs1, pool);
63 ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
65 if (rv !
86 apr_status_t rv; local
[all...]
/macosx-10.9.5/apr-30/apr/apr/file_io/unix/
H A Dreadwrite.c31 apr_ssize_t rv; local
37 rv = apr_file_flush_locked(thefile);
38 if (rv) {
39 return rv;
46 rv = 0;
53 while (rv == 0 && size > 0) {
59 rv = APR_EOF;
63 rv = errno;
80 rv = 0;
82 return rv;
87 apr_ssize_t rv; local
149 apr_size_t rv; local
230 apr_status_t rv; local
311 apr_status_t rv = APR_SUCCESS; local
336 apr_status_t rv = APR_SUCCESS; local
351 apr_status_t rv = APR_SUCCESS; local
375 apr_status_t rv = APR_SUCCESS; local
403 apr_status_t rv = APR_SUCCESS; /* get rid of gcc warning */ local
[all...]
H A Dseek.c22 apr_status_t rv; local
25 rv = apr_file_flush_locked(thefile);
26 if (rv) {
27 return rv;
35 rv = APR_SUCCESS;
41 rv = APR_SUCCESS;
44 rv = errno;
48 return rv;
54 apr_off_t rv; local
87 rv
[all...]
/macosx-10.9.5/apr-30/apr-util/apr-util/test/
H A Dtestxlate.c38 apr_status_t rv; local
40 rv = apr_xlate_conv_buffer(convset, inbuf, &inbytes_left, buf, &outbytes_left);
41 ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
43 if (rv != APR_SUCCESS)
46 rv = apr_xlate_conv_buffer(convset, NULL, NULL, buf + sizeof(buf) -
48 ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
59 apr_status_t rv; local
62 rv = apr_xlate_open(&convset, cs2, cs1, pool);
63 ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
65 if (rv !
86 apr_status_t rv; local
[all...]
/macosx-10.9.5/Libc-997.90.3/gen/
H A Dsync_volume_np.c49 int rv; local
58 rv = (fsctl(path, FSCTL_SYNC_VOLUME, &full_sync, 0) == -1) ? errno : 0;
60 return rv;
67 int rv; local
76 rv = (ffsctl(fd, FSCTL_SYNC_VOLUME, &full_sync, 0) == -1) ? errno : 0;
78 return rv;
/macosx-10.9.5/bash-92/bash-3.2/tests/
H A Djobs3.sub8 rv=$?
11 # echo $$: Job $i: pid is $pid rv=$rv
23 rv=$?
24 echo job $i returns $rv
/macosx-10.9.5/bind9-45.100/bind9/bin/pkcs11/
H A Dpkcs11-list.c72 CK_RV rv; local
152 rv = C_Initialize(NULL_PTR);
153 if (rv != CKR_OK) {
154 if (rv == 0xfe)
159 fprintf(stderr, "C_Initialize: Error = 0x%.8lX\n", rv);
164 rv = C_OpenSession(slot, CKF_SERIAL_SESSION,
166 if (rv != CKR_OK) {
167 fprintf(stderr, "C_OpenSession: Error = 0x%.8lX\n", rv);
176 rv = C_Login(hSession, CKU_USER, pin, strlen((char *)pin));
178 if (rv !
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/roken/
H A Dtest-mini_inetd.c48 int rv; local
57 rv = getaddrinfo("127.0.0.1", PORT_S, &ai, ret);
58 if (rv)
59 warnx("getaddrinfo: %s", gai_strerror(rv));
60 return rv;
67 int rv = 0; local
70 rv = get_address(0, &ai);
71 if (rv)
72 return rv;
76 rv
109 int rv; local
181 int rv, srv; local
254 int rv = 0; local
273 int rv = 0; local
[all...]
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/sfio/
H A Dsfprintf.c37 reg int rv; local
48 rv = sfvprintf(f,form,args);
51 return rv;
65 ssize_t rv; local
72 if((rv = sfvprintf(f,form,args)) >= 0 )
74 { if((rv+1) >= n)
77 n = rv;
81 _Sfi = rv;
86 return rv;
97 ssize_t rv; local
[all...]
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/tm/
H A Dtvsleep.c51 * with remaining time in rv
55 tvsleep(register const Tv_t* tv, register Tv_t* rv) argument
66 if ((r = nanosleep(&stv, &srv)) && rv)
68 rv->tv_sec = srv.tv_sec;
69 rv->tv_nsec = srv.tv_nsec;
83 if (rv)
84 *rv = *tv;
87 if (rv)
89 rv->tv_sec = stv.tv_sec;
90 rv
[all...]
/macosx-10.9.5/Libc-997.90.3/gdtoa/FreeBSD/
H A Dgdtoa-strtod.c79 U adj, aadj1, rv, rv0; local
123 dval(&rv) = 0.;
172 ULtod(((U*)&rv)->L, bits, exp, i);
285 word0(&rv) = 0x7ff00000;
286 word1(&rv) = 0;
297 word0(&rv) = 0x7ff00000 | bits[1];
298 word1(&rv) = bits[0];
302 word0(&rv) = NAN_WORD0;
303 word1(&rv) = NAN_WORD1;
330 dval(&rv)
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/js1_5/GetSet/
H A Dgetset-001.js35 var rv;
38 rv = "got " + this._y;
40 rv = this._y;
42 return rv;
H A Dgetset-002.js30 var rv;
32 rv = "got " + this._y;
34 rv = this._y;
36 return rv;
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/file_io/os2/
H A Dbuffer.c24 apr_status_t rv; local
30 rv = apr_file_flush(file);
31 if (rv != APR_SUCCESS) {
33 return rv;
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/file_io/win32/
H A Dbuffer.c24 apr_status_t rv; local
30 rv = apr_file_flush(file);
31 if (rv != APR_SUCCESS) {
33 return rv;
/macosx-10.9.5/apr-30/apr/apr/file_io/os2/
H A Dbuffer.c24 apr_status_t rv; local
30 rv = apr_file_flush(file);
31 if (rv != APR_SUCCESS) {
33 return rv;

Completed in 209 milliseconds

1234567891011>>