Searched refs:rv (Results 126 - 150 of 1052) sorted by relevance

1234567891011>>

/macosx-10.9.5/apr-30/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.9.5/apr-30/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.9.5/apr-30/apr/apr/test/
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.9.5/xnu-2422.115.4/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.9.5/Heimdal-323.92.1/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.9.5/apache-786.1/httpd/srclib/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.9.5/apr-30/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
158 rv = apr_reslist_acquire(rl, (void**)&resources[i]);
159 ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
179 apr_status_t rv; local
221 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.9.5/remote_cmds-41.90.1/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.9.5/apache-786.1/httpd/srclib/apr/test/
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.9.5/apache-786.1/httpd/srclib/apr/file_io/win32/
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.9.5/lukemftp-13.92.1/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.9.5/CPANInternal-140/XML-LibXML/
H A DAv_CharPtrPtr.h1 char ** XS_unpack_charPtrPtr _(( SV *rv ));
/macosx-10.9.5/Libc-997.90.3/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.9.5/apache-786.1/httpd/srclib/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;
/macosx-10.9.5/apr-30/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;
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_nsrulerview.py8 def rulerView_didMoveMarker_(self, rv, mk): pass
9 def rulerView_shouldRemoveMarker_(self, rv, mk): return 1
10 def rulerView_didRemoveMarker_(self, rv, mk): pass
11 def rulerView_shouldAddMarker_(self, rv, mk): return 1
12 def rulerView_willAddMarker_atLocation_(self, rv, mk, l): return 1
13 def rulerView_didAddMarker_(self, rv, mk): pass
14 def rulerView_handleMouseDown_(self, rv , ev): pass
15 def rulerView_willSetClientView_(self, rv, vw): pass
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_nsrulerview.py8 def rulerView_didMoveMarker_(self, rv, mk): pass
9 def rulerView_shouldRemoveMarker_(self, rv, mk): return 1
10 def rulerView_didRemoveMarker_(self, rv, mk): pass
11 def rulerView_shouldAddMarker_(self, rv, mk): return 1
12 def rulerView_willAddMarker_atLocation_(self, rv, mk, l): return 1
13 def rulerView_didAddMarker_(self, rv, mk): pass
14 def rulerView_handleMouseDown_(self, rv , ev): pass
15 def rulerView_willSetClientView_(self, rv, vw): pass

Completed in 137 milliseconds

1234567891011>>