Searched refs:rv (Results 26 - 50 of 591) sorted by relevance

1234567891011>>

/freebsd-10.0-release/contrib/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;
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...]
/freebsd-10.0-release/contrib/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...]
/freebsd-10.0-release/sys/powerpc/powerpc/
H A Dcopystr.c54 int rv; local
56 rv = ENAMETOOLONG;
60 rv = 0;
67 return rv;
/freebsd-10.0-release/usr.bin/talk/
H A Dget_iface.c56 int s, rv; local
73 rv = bind(s, (struct sockaddr *)&local, sizeof local);
75 } while(rv < 0 && errno == EADDRINUSE);
77 if (rv < 0) {
83 rv = connect(s, (struct sockaddr *)&remote, sizeof remote);
85 } while(rv < 0 && errno == EADDRINUSE);
87 if (rv < 0) {
93 rv = getsockname(s, (struct sockaddr *)&local, &namelen);
95 if (rv < 0)
/freebsd-10.0-release/contrib/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;
H A Duserinfo.c41 apr_status_t rv; local
48 rv = getpwnam_r(username, pw, pwbuf, PWBUF_SIZE, &pwptr);
49 if (rv) {
50 return rv;
75 apr_status_t rv; local
77 if ((rv = getpwnam_safe(username, &pw, pwbuf)) != APR_SUCCESS)
78 return rv;
109 apr_status_t rv; local
111 if ((rv = getpwnam_safe(username, &pw, pwbuf)) != APR_SUCCESS)
112 return rv;
127 apr_status_t rv; local
[all...]
/freebsd-10.0-release/lib/libc/stdio/
H A Dftell.c54 off_t rv; local
56 rv = ftello(fp);
57 if (rv > LONG_MAX) {
61 return (rv);
70 fpos_t rv; local
74 ret = _ftello(fp, &rv);
78 if (rv < 0) { /* Unspecified value because of ungetc() at 0 */
82 return (rv);
/freebsd-10.0-release/contrib/gdtoa/
H A DstrtoIg.c42 int i, nb, nw, nw1, rv, rv1, swap; local
47 rv = strtodg(s00, se, fpi, exp, b->x);
48 if (!(rv & STRTOG_Inexact)) {
50 return *rvp = rv;
53 rv1 = rv ^ STRTOG_Inexact;
61 if (rv & STRTOG_Inexlo) {
64 if ((rv & STRTOG_Retmask) == STRTOG_Zero) {
82 else if ((rv & STRTOG_Retmask) == STRTOG_Denormal) {
91 if ((rv & STRTOG_Retmask) == STRTOG_Infinite) {
98 if ((rv
[all...]
H A DstrtoIQ.c44 int k, rv[2]; local
49 k = strtoIg(s, sp, &fpi, exp, B, rv);
50 ULtoQ(L, B[0]->x, exp[0], rv[0]);
53 ULtoQ(M, B[1]->x, exp[1], rv[1]);
/freebsd-10.0-release/contrib/apr/locks/unix/
H A Dproc_mutex.c226 apr_status_t rv; local
232 rv = errno;
234 return rv;
238 rv = errno;
240 return rv;
317 apr_status_t rv; local
320 if ((rv = pthread_mutex_unlock(mutex->pthread_interproc))) {
322 rv = errno;
324 return rv;
329 if ((rv
345 apr_status_t rv; local
431 apr_status_t rv; local
454 apr_status_t rv; local
481 apr_status_t rv; local
545 int rv; local
665 int rv; local
742 int rv; local
851 apr_status_t rv; local
864 apr_status_t rv; local
885 apr_status_t rv; local
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/objects/
H A Dobj_xref.c94 const nid_triple *rv = NULL; local
101 rv = sk_nid_triple_value(sig_app, idx);
105 if (rv == NULL)
107 rv = OBJ_bsearch_sig(&tmp, sigoid_srt,
111 if (rv == NULL)
114 *pdig_nid = rv->hash_id;
116 *ppkey_nid = rv->pkey_id;
124 const nid_triple **rv = NULL; local
135 rv = &t;
140 if (rv
212 int i, rv; local
[all...]
/freebsd-10.0-release/contrib/apr-util/memcache/
H A Dapr_memcache.c134 apr_status_t rv = APR_SUCCESS; local
143 return rv;
227 apr_status_t rv; local
232 rv = apr_reslist_acquire(ms->conns, (void **)conn);
235 rv = APR_SUCCESS;
238 if (rv != APR_SUCCESS) {
239 return rv;
249 return rv;
273 apr_status_t rv = APR_SUCCESS; local
276 return rv;
290 apr_status_t rv = APR_SUCCESS; local
320 apr_status_t rv = APR_SUCCESS; local
395 apr_status_t rv = APR_SUCCESS; local
442 apr_status_t rv = APR_SUCCESS; local
571 apr_status_t rv = APR_SUCCESS; local
603 apr_status_t rv; local
729 apr_status_t rv; local
861 apr_status_t rv; local
930 apr_status_t rv; local
1031 apr_status_t rv; local
1078 apr_status_t rv; local
1131 mget_conn_result(int serverup, int connup, apr_status_t rv, apr_memcache_t *mc, apr_memcache_server_t *ms, apr_memcache_conn_t *conn, struct cache_server_query_t *server_query, apr_hash_t *values, apr_hash_t *server_queries) argument
1174 apr_status_t rv; local
1642 apr_status_t rv; local
[all...]
/freebsd-10.0-release/share/examples/find_interface/
H A Dfind_interface.c61 int s, rv, namelen; local
89 rv = bind(s, (struct sockaddr *)&local, sizeof local);
91 } while(rv < 0 && errno == EADDRINUSE);
93 if (rv < 0)
97 rv = connect(s, (struct sockaddr *)&remote, sizeof remote);
99 } while(rv < 0 && errno == EADDRINUSE);
101 if (rv < 0)
105 rv = getsockname(s, (struct sockaddr *)&local, &namelen);
106 if (rv < 0)
/freebsd-10.0-release/contrib/apr-util/crypto/
H A Dapr_passwd.c106 apr_status_t rv;
113 rv = APR_EMISMATCH;
115 rv = (strcmp(crypt_pw, hash) == 0) ? APR_SUCCESS : APR_EMISMATCH;
117 return rv;
119 apr_status_t rv;
144 rv = APR_EMISMATCH;
146 rv = (strcmp(crypt_pw, hash) == 0) ? APR_SUCCESS : APR_EMISMATCH;
148 return rv;
159 apr_status_t rv;
167 rv
[all...]
/freebsd-10.0-release/lib/libc/amd64/sys/
H A D__vdso_gettc.c39 uint32_t rv; local
42 : "=a" (rv) : "c" (th->th_x86_shift) : "edx");
43 return (rv);
/freebsd-10.0-release/lib/libc/i386/sys/
H A D__vdso_gettc.c39 uint32_t rv; local
42 : "=a" (rv) : "c" (th->th_x86_shift) : "edx");
43 return (rv);
/freebsd-10.0-release/contrib/apr-util/misc/
H A Dapr_reslist.c118 apr_status_t rv; local
123 rv = reslist->constructor(&res->opaque, reslist->params, reslist->pool);
126 return rv;
140 apr_status_t rv = APR_SUCCESS; local
154 rv = rv1; /* loses info in the unlikely event of
169 return rv;
179 apr_status_t rv; local
190 rv = create_resource(reslist, &res);
191 if (rv != APR_SUCCESS) {
196 return rv;
259 apr_status_t rv; local
329 apr_status_t rv; local
[all...]
/freebsd-10.0-release/contrib/flex/
H A Dtables.c147 int sz, rv;
164 if ((rv = yytbl_writen (wr, th->th_version, sz)) != sz)
166 bwritten += rv;
169 if ((rv = yytbl_writen (wr, th->th_name, sz)) != sz)
171 bwritten += rv;
174 if ((rv = yytbl_write_pad64 (wr)) < 0)
176 bwritten += rv;
193 int rv;
198 if ((rv = yytbl_write16 (wr, td->td_id)) < 0)
200 bwritten += rv;
146 int sz, rv; local
192 int rv; local
270 int rv; local
287 size_t bytes, rv; local
306 size_t bytes, rv; local
324 size_t bytes, rv; local
[all...]
/freebsd-10.0-release/usr.sbin/sa/
H A Ddb.c62 int error, rv, version; local
85 rv = DB_GET(ddb, &key, &data, 0);
86 if (rv < 0) {
90 } else if (rv == 0) { /* It's there; verify version. */
106 for (rv = DB_SEQ(ddb, &key, &data, R_FIRST); rv == 0;
107 rv = DB_SEQ(ddb, &key, &data, R_NEXT)) {
122 if ((rv = DB_PUT(*mdb, &key, &data, 0)) < 0) {
128 if (rv < 0) {
153 int error, rv, versio local
[all...]
/freebsd-10.0-release/contrib/apr/poll/unix/
H A Dport.c31 apr_int16_t rv = 0; local
34 rv |= POLLIN;
36 rv |= POLLPRI;
38 rv |= POLLOUT;
41 return rv;
46 apr_int16_t rv = 0; local
49 rv |= APR_POLLIN;
51 rv |= APR_POLLPRI;
53 rv |= APR_POLLOUT;
55 rv |
95 apr_status_t rv = APR_SUCCESS; local
161 apr_status_t rv = APR_SUCCESS; local
215 apr_status_t rv = APR_SUCCESS; local
267 apr_status_t rv = APR_SUCCESS; local
352 apr_status_t rv = APR_SUCCESS; local
545 apr_status_t rv; local
[all...]
/freebsd-10.0-release/contrib/tcp_wrappers/
H A DMakefile95 LIBS= RANLIB=ranlib ARFLAGS=rv AUX_OBJ=setenv.o \
101 LIBS= RANLIB=ranlib ARFLAGS=rv AUX_OBJ=setenv.o \
107 LIBS=-lresolv RANLIB=ranlib ARFLAGS=rv AUX_OBJ=setenv.o \
113 LIBS=-m RANLIB=ranlib ARFLAGS=rv AUX_OBJ=environ.o \
119 LIBS= RANLIB=ranlib ARFLAGS=rv AUX_OBJ="setenv.o strcasecmp.o" \
125 LIBS= RANLIB=ranlib ARFLAGS=rv AUX_OBJ= \
131 LIBS= RANLIB=ranlib ARFLAGS=rv AUX_OBJ=environ.o \
137 LIBS= RANLIB=ranlib ARFLAGS=rv AUX_OBJ= NETGROUP= TLI= \
148 LIBS= RANLIB=ranlib ARFLAGS=rv AUX_OBJ= NETGROUP= TLI= \
154 LIBS= RANLIB=ranlib ARFLAGS=rv AUX_OB
[all...]
/freebsd-10.0-release/contrib/apr-util/dbm/
H A Dapr_dbm_sdbm.c81 apr_status_t rv; local
83 rv = apr_sdbm_open(&file, pathname, dbmode, perm, pool);
84 if (rv != APR_SUCCESS)
85 return rv;
107 apr_status_t rv; local
113 rv = apr_sdbm_fetch(dbm->file, &rd, kd);
120 return set_error(dbm, rv);
126 apr_status_t rv; local
135 rv = apr_sdbm_store(dbm->file, kd, vd, APR_SDBM_REPLACE);
138 return set_error(dbm, rv);
143 apr_status_t rv; local
173 apr_status_t rv; local
[all...]

Completed in 321 milliseconds

1234567891011>>