Searched refs:rv (Results 76 - 100 of 921) sorted by relevance

1234567891011>>

/macosx-10.10/apache-793/httpd/modules/ssl/
H A Dssl_engine_mutex.c36 apr_status_t rv; local
50 if ((rv = ap_global_mutex_create(&mc->pMutex, NULL, SSL_CACHE_MUTEX_TYPE,
62 apr_status_t rv; local
71 if ((rv = apr_global_mutex_child_init(&mc->pMutex,
75 ap_log_error(APLOG_MARK, APLOG_ERR, rv, s, APLOGNO(02024)
79 ap_log_error(APLOG_MARK, APLOG_WARNING, rv, s, APLOGNO(02025)
89 apr_status_t rv; local
91 if ((rv = apr_global_mutex_lock(mc->pMutex)) != APR_SUCCESS) {
92 ap_log_error(APLOG_MARK, APLOG_WARNING, rv, s, APLOGNO(02026)
102 apr_status_t rv; local
[all...]
/macosx-10.10/ksh-23/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
75 if((rv = sfvprintf(f,form,args)) < 0 )
78 { if((rv+1) >= n)
81 n = rv;
88 _Sfi = rv;
90 return rv;
101 ssize_t rv; local
[all...]
/macosx-10.10/ksh-23/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.10/apr-32/apr/apr/test/
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);
H A Dtestoc.c63 apr_status_t rv; local
69 rv = apr_procattr_create(&procattr, p);
70 ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
72 rv = apr_procattr_io_set(procattr, APR_FULL_BLOCK, APR_NO_PIPE,
74 ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
76 rv = apr_procattr_cmdtype_set(procattr, APR_PROGRAM_ENV);
77 APR_ASSERT_SUCCESS(tc, "Couldn't set copy environment", rv);
79 rv = apr_proc_create(&newproc, TESTBINPATH "occhild" EXTENSION, args, NULL, procattr, p);
80 ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
90 rv
[all...]
H A Dsockchild.c26 apr_status_t rv; local
37 rv = apr_sockaddr_info_get(&remote_sa, "127.0.0.1", APR_UNSPEC, 8021, 0, p);
38 if (rv != APR_SUCCESS) {
47 rv = apr_socket_timeout_set(sock, apr_time_from_sec(3));
48 if (rv) {
57 apr_status_t rv; local
60 rv = apr_socket_recv(sock, datarecv, &length);
62 if (APR_STATUS_IS_TIMEUP(rv)) {
/macosx-10.10/Libc-1044.1.2/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.10/Heimdal-398.1.2/lib/hcrypto/
H A Drand-w32.c51 BOOL rv; local
57 rv = CryptAcquireContext(&cryptprovider, NULL,
62 rv = CryptAcquireContext(&cryptprovider, NULL,
67 if (rv) {
69 rv = CryptAcquireContext(&cryptprovider, NULL, 0, PROV_RSA_FULL,
73 rv = CryptAcquireContext(&cryptprovider, NULL,
79 if (rv) {
81 rv = CryptAcquireContext(&cryptprovider, NULL, 0, PROV_RNG,
85 if (rv &&
/macosx-10.10/JavaScriptCore-7600.1.17/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.10/apr-32/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;
/macosx-10.10/apr-32/apr/apr/file_io/unix/
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.10/apr-32/apr/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;
H A Dfilesys.c68 apr_status_t rv; local
73 if ((rv = utf8_to_unicode_path(wpath, sizeof(wpath)
75 return rv;
76 rv = GetDriveTypeW(wpath);
80 rv = GetDriveType(path);
82 if (rv == DRIVE_UNKNOWN || rv == DRIVE_NO_ROOT_DIR)
98 apr_status_t rv; local
106 if ((rv = unicode_to_utf8_path(path, sizeof(path), wpath)))
107 return rv;
141 apr_status_t rv; local
181 apr_status_t rv; local
213 apr_status_t rv; local
[all...]
/macosx-10.10/apr-32/apr-util/apr-util/test/
H A Dtestdbd.c27 apr_status_t rv; local
29 rv = apr_dbd_init(pool);
30 ABTS_ASSERT(tc, "failed to init apr_dbd", rv == APR_SUCCESS);
38 apr_status_t rv; local
40 rv = apr_dbd_query(driver, handle, &nrows, sql);
42 ABTS_ASSERT(tc, sql, rv == APR_SUCCESS);
79 apr_status_t rv; local
83 rv = apr_dbd_query(driver, handle, &nrows, sqf);
84 ABTS_ASSERT(tc, sqf, rv == APR_SUCCESS);
92 apr_status_t rv; local
152 apr_status_t rv; local
178 apr_status_t rv; local
206 apr_status_t rv; local
[all...]
H A Dtestreslist.c110 apr_status_t rv; local
122 rv = apr_reslist_acquire(rl, &vp);
123 ABTS_INT_EQUAL(thread_info->tc, APR_SUCCESS, rv);
130 rv = apr_reslist_release(rl, res);
131 ABTS_INT_EQUAL(thread_info->tc, APR_SUCCESS, rv);
133 rv = apr_reslist_invalidate(rl, res);
134 ABTS_INT_EQUAL(thread_info->tc, APR_SUCCESS, rv);
143 apr_status_t rv; local
157 rv = apr_reslist_acquire(rl, (void**)&resources[i]);
158 ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
176 apr_status_t rv; local
218 apr_status_t rv; local
[all...]
H A Dtestrmm.c35 apr_status_t rv; local
44 rv = apr_pool_create(&pool, p);
45 ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
49 rv = apr_shm_create(&shm, size, NULL, pool);
50 ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
52 if (rv != APR_SUCCESS)
55 rv = apr_rmm_init(&rmm, NULL, apr_shm_baseaddr_get(shm), size, pool);
56 ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
58 if (rv != APR_SUCCESS)
102 rv
[all...]
/macosx-10.10/remote_cmds-47/talk.tproj/
H A Dget_iface.c59 int s, rv; local
76 rv = bind(s, (struct sockaddr *)&local, sizeof local);
78 } while(rv < 0 && errno == EADDRINUSE);
80 if (rv < 0) {
86 rv = connect(s, (struct sockaddr *)&remote, sizeof remote);
88 } while(rv < 0 && errno == EADDRINUSE);
90 if (rv < 0) {
96 rv = getsockname(s, (struct sockaddr *)&local, &namelen);
98 if (rv < 0)
/macosx-10.10/xnu-2782.1.97/libsyscall/wrappers/legacy/
H A Dmprotect.c47 int rv; local
57 rv = __mprotect(aligned_addr, len, prot);
58 if (rv == -1 && errno == ENOMEM) {
66 return rv;
/macosx-10.10/apache-793/httpd/modules/cache/
H A Dmod_socache_memcache.c86 apr_status_t rv; local
103 rv = apr_memcache_create(p, nservers, 0, &ctx->mc);
104 if (rv != APR_SUCCESS) {
105 ap_log_error(APLOG_MARK, APLOG_CRIT, rv, s, APLOGNO(00785)
108 return rv;
120 rv = apr_parse_addr_port(&host_str, &scope_id, &port, split, p);
121 if (rv != APR_SUCCESS) {
122 ap_log_error(APLOG_MARK, APLOG_CRIT, rv, s, APLOGNO(00786)
124 return rv;
128 ap_log_error(APLOG_MARK, APLOG_CRIT, rv,
202 apr_status_t rv; local
228 apr_status_t rv; local
262 apr_status_t rv; local
[all...]
/macosx-10.10/apache-793/httpd/server/
H A Dcore_filters.c98 apr_status_t rv; local
124 rv = ap_run_insert_network_bucket(f->c, ctx->b, net->client_socket);
125 if (rv != APR_SUCCESS)
126 return rv;
147 rv = apr_brigade_split_line(b, ctx->b, block, HUGE_STRING_LEN);
152 if (APR_STATUS_IS_EAGAIN(rv) && block == APR_NONBLOCK_READ) {
153 rv = APR_SUCCESS;
155 return rv;
180 rv = apr_bucket_read(e, &str, &len, APR_NONBLOCK_READ);
182 if (rv !
381 apr_status_t rv; local
622 apr_status_t rv; local
731 apr_status_t rv; local
769 apr_status_t rv = APR_SUCCESS, arv; local
839 apr_status_t rv = APR_SUCCESS; local
[all...]
/macosx-10.10/lukemftp-14/tnftp/libedit/
H A Del.c142 int rv = 0; local
151 rv = prompt_set(el, va_arg(va, el_pfunc_t), op);
155 rv = term_set(el, va_arg(va, char *));
159 rv = map_set_editor(el, va_arg(va, char *));
185 rv = map_bind(el, i, argv);
190 rv = term_telltc(el, i, argv);
195 rv = term_settc(el, i, argv);
200 rv = term_echotc(el, i, argv);
205 rv = tty_stty(el, i, argv);
209 rv
291 int rv; local
[all...]
/macosx-10.10/Libc-1044.1.2/stdio/FreeBSD/
H A Dftell.c55 off_t rv; local
57 rv = ftello(fp);
58 if (rv > LONG_MAX) {
62 return (rv);
72 fpos_t rv; local
76 ret = _ftello(fp, &rv);
80 if (rv < 0) { /* Unspecified value because of ungetc() at 0 */
84 return (rv);
/macosx-10.10/apr-32/apr/apr/user/unix/
H A Dgroupinfo.c41 apr_status_t rv; local
44 rv = getgrgid_r(groupid, &grp, grbuf, sizeof(grbuf), &gr);
45 if (rv) {
46 return rv;
69 apr_status_t rv; local
72 rv = getgrnam_r(groupname, &grp, grbuf, sizeof(grbuf), &gr);
73 if (rv) {
74 return rv;

Completed in 157 milliseconds

1234567891011>>