Searched refs:rv (Results 226 - 250 of 921) sorted by relevance

1234567891011>>

/macosx-10.10/SmartCardServices-55111/src/PCSC/utils/
H A DbundleTool.c59 LONG rv; local
144 rv = SCardEstablishContext(SCARD_SCOPE_SYSTEM, 0, 0, &hContext);
145 CHECK_ERR(rv != SCARD_S_SUCCESS, "PC/SC SCardEstablishContext Failed");
148 rv = SCardListReaders(hContext, 0, 0, &readerListSize);
149 CHECK_ERR(rv != SCARD_S_SUCCESS, "PC/SC SCardListReaders Failed");
154 rv = SCardListReaders(hContext, 0, readerList, &readerListSize);
155 CHECK_ERR(rv != SCARD_S_SUCCESS, "PC/SC SCardListReaders Alloc Failed");
162 rv = SCardGetStatusChange(hContext, INFINITE, &rgReaderStates, 1);
163 CHECK_ERR(rv != SCARD_S_SUCCESS, "PC/SC SCardGetStatusChange Failed");
183 rv
[all...]
/macosx-10.10/apr-32/apr/apr/test/
H A Dtestuser.c109 apr_status_t rv; local
115 rv = apr_uid_name_get(&tmp, uid, p);
118 rv != APR_SUCCESS || tmp != NULL);
122 rv = apr_gid_name_get(&tmp, gid, p);
125 rv != APR_SUCCESS || tmp != NULL);
129 rv = apr_gid_get(&gid, "I_AM_NOT_A_GROUP", p);
132 rv != APR_SUCCESS || gid == 424242);
136 rv = apr_uid_get(&uid, &gid, "I_AM_NOT_A_USER", p);
139 rv != APR_SUCCESS || uid == 424242 || gid == 4242442);
143 rv
[all...]
/macosx-10.10/apache-793/httpd/modules/generators/
H A Dmod_cgi.c165 apr_status_t rv, char *error)
170 int log_flags = rv ? APLOG_ERR : APLOG_ERR;
172 ap_log_rerror(APLOG_MARK, log_flags, rv, r,
205 apr_status_t rv; local
207 while ((rv = apr_file_gets(argsbuffer, HUGE_STRING_LEN,
217 return rv;
231 apr_status_t rv; local
290 rv = apr_bucket_read(e, &buf, &len, APR_BLOCK_READ);
291 if (rv != APR_SUCCESS || (len == 0)) {
541 apr_status_t rv; local
164 log_scripterror(request_rec *r, cgi_server_conf * conf, int ret, apr_status_t rv, char *error) argument
575 apr_status_t rv; local
641 apr_status_t rv; local
680 apr_status_t rv; local
758 apr_status_t rv; local
1113 apr_status_t rv; local
1198 apr_status_t rv; local
1213 apr_status_t rv; local
[all...]
/macosx-10.10/apr-32/apr/apr/poll/unix/
H A Dpollset.c40 apr_status_t rv; local
42 if ((rv = apr_file_socket_pipe_create(&pollset->wakeup_pipe[0],
45 return rv;
73 apr_status_t rv; local
75 if ((rv = apr_file_pipe_create(&pollset->wakeup_pipe[0],
78 return rv;
210 apr_status_t rv; local
251 rv = (*provider->create)(pollset, size, p, flags);
252 if (rv == APR_ENOTIMPL) {
254 return rv;
[all...]
/macosx-10.10/apache-793/httpd/support/
H A Dhtdbm.c109 apr_status_t rv; local
121 rv = apr_xlate_open(&((*hdbm)->to_ascii), "ISO-8859-1", APR_DEFAULT_CHARSET, (*hdbm)->ctx.pool);
122 if (rv) {
123 fprintf(stderr, "apr_xlate_open(to ASCII)->%d\n", rv);
126 rv = apr_SHA1InitEBCDIC((*hdbm)->to_ascii);
127 if (rv) {
128 fprintf(stderr, "apr_SHA1InitEBCDIC()->%d\n", rv);
131 rv = apr_MD5InitEBCDIC((*hdbm)->to_ascii);
132 if (rv) {
133 fprintf(stderr, "apr_MD5InitEBCDIC()->%d\n", rv);
213 apr_status_t rv; local
314 apr_status_t rv; local
[all...]
/macosx-10.10/SmartCardServices-55111/src/PCSC/
H A Dpcscdaemon.c194 LONG rv; local
198 rv = 0;
214 rv = ContextsInitialize();
216 if (rv == -1)
254 rv = CreateContextThread(&dwClientID);
256 if (rv != SCARD_S_SUCCESS)
303 int rv; local
328 rv = 0;
440 rv = SYS_Stat(PCSCLITE_CSOCK_NAME, &fStatBuf);
442 if (rv
608 int rv; local
[all...]
/macosx-10.10/libpthread-105.1.4/src/
H A Dqos.c318 int rv = __bsdthread_ctl(BSDTHREAD_CTL_SET_SELF, priority, voucher, flags); local
322 if (rv == 0 || errno == ENOENT) {
327 if (rv) {
328 rv = errno;
330 return rv;
351 pthread_override_t rv; local
372 rv = (pthread_override_t)vm_addr;
373 rv->sig = PTHREAD_OVERRIDE_SIGNATURE;
374 rv->pthread = __pthread;
375 rv
502 int rv = posix_spawnattr_get_qos_clamp_np(__attr, &clamp); local
[all...]
/macosx-10.10/apr-32/apr/apr/threadproc/os2/
H A Dproc.c68 apr_status_t rv; local
81 if ((rv = apr_file_pipe_create_ex(&attr->child_in, &attr->parent_in,
83 rv = apr_file_inherit_unset(attr->parent_in);
84 if (rv != APR_SUCCESS)
85 return rv;
91 if ((rv = apr_file_pipe_create_ex(&attr->parent_out, &attr->child_out,
93 rv = apr_file_inherit_unset(attr->parent_out);
94 if (rv != APR_SUCCESS)
95 return rv;
101 if ((rv
116 apr_status_t rv; local
145 apr_status_t rv; local
174 apr_status_t rv; local
[all...]
/macosx-10.10/apr-32/apr/apr/threadproc/win32/
H A Dproc.c131 apr_status_t rv = APR_SUCCESS; local
135 rv = apr_file_dup(&attr->child_in, child_in, attr->pool);
137 rv = apr_file_dup2(attr->child_in, child_in, attr->pool);
139 if (rv == APR_SUCCESS)
140 rv = apr_file_inherit_set(attr->child_in);
143 if (parent_in && rv == APR_SUCCESS) {
145 rv = apr_file_dup(&attr->parent_in, parent_in, attr->pool);
147 rv = apr_file_dup2(attr->parent_in, parent_in, attr->pool);
150 return rv;
157 apr_status_t rv local
183 apr_status_t rv = APR_SUCCESS; local
455 apr_status_t rv; local
1009 apr_status_t rv = APR_EGENERAL; local
[all...]
/macosx-10.10/apache-793/httpd/modules/filters/
H A Dmod_charset_lite.c199 apr_status_t rv; local
271 rv = apr_xlate_open(&input_ctx->xlate, dc->charset_source,
273 if (rv != APR_SUCCESS) {
274 ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r, APLOGNO(01449)
367 apr_status_t rv; local
370 rv = ap_pass_brigade(f->next, ctx->tmpbb);
371 if (rv != APR_SUCCESS) {
375 return rv;
398 apr_status_t rv; local
403 rv
414 apr_status_t rv; local
438 apr_status_t rv; local
472 log_xlate_error(ap_filter_t *f, apr_status_t rv) argument
656 apr_status_t rv = APR_SUCCESS; local
767 apr_status_t rv = APR_SUCCESS; local
978 apr_status_t rv; local
[all...]
H A Dmod_reqtimeout.c110 apr_status_t rv; local
118 rv = apr_bucket_read(b, &str, &len, APR_BLOCK_READ);
119 if (rv != APR_SUCCESS)
120 return rv;
141 apr_status_t rv; local
143 rv = apr_bucket_read(e, &str, &len, APR_BLOCK_READ);
144 if (rv != APR_SUCCESS) {
145 return rv;
154 rv = apr_brigade_write(bbOut, NULL, NULL, str, len);
155 if (rv !
176 apr_status_t rv; local
[all...]
H A Dmod_xml2enc.c88 apr_status_t rv; local
91 rv = apr_xlate_open(&convset, enc, "UTF-8", r->pool);
95 rv = apr_xlate_open(&convset, "UTF-8", enc, r->pool);
100 rv = APR_SUCCESS; /* we'll initialise later by sniffing */
103 rv = APR_EGENERAL;
107 if (rv == APR_SUCCESS) {
118 ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r, APLOGNO(01427)
121 return rv;
128 apr_status_t rv; local
141 rv
173 apr_status_t rv; local
304 apr_status_t rv; local
[all...]
/macosx-10.10/Security-57031.1.35/Security/include/security_smime/
H A Dcmsrecinfo.c72 OSStatus rv = SECSuccess; local
95 rv = SecCertificateGetAlgorithmID(cert,&algid);
98 rv = SecKeyGetAlgorithmID(pubKey,&algid);
118 rv = SECFailure;
124 rv = SECFailure;
132 rv = SECFailure;
138 rv = SECFailure;
146 rv = SECFailure;
155 rv = SECFailure;
162 rv
452 OSStatus rv = SECSuccess; local
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_smime/lib/
H A Dcmsrecinfo.c72 OSStatus rv = SECSuccess; local
95 rv = SecCertificateGetAlgorithmID(cert,&algid);
98 rv = SecKeyGetAlgorithmID(pubKey,&algid);
118 rv = SECFailure;
124 rv = SECFailure;
132 rv = SECFailure;
138 rv = SECFailure;
146 rv = SECFailure;
155 rv = SECFailure;
162 rv
452 OSStatus rv = SECSuccess; local
[all...]
/macosx-10.10/apache-793/httpd/os/win32/
H A Dap_regkey.c80 apr_status_t rv = apr_conv_utf8_to_ucs2(keyname, &keylen, wkeyname, &wkeylen); local
81 if (rv != APR_SUCCESS)
82 return rv;
142 apr_status_t rv = apr_conv_utf8_to_ucs2(keyname, &keylen, wkeyname, &wkeylen); local
143 if (rv != APR_SUCCESS)
144 return rv;
198 apr_status_t rv; local
199 rv = apr_conv_utf8_to_ucs2(valuename, &valuelen, wvalname, &wvallen);
200 if (rv != APR_SUCCESS)
201 return rv;
304 apr_status_t rv; local
359 apr_status_t rv; local
418 apr_status_t rv; local
451 apr_status_t rv; local
541 apr_status_t rv; local
622 apr_status_t rv = apr_conv_utf8_to_ucs2(valuename, &valuelen, wvalname, &wvallen); local
[all...]
/macosx-10.10/CrackLib-37765/cracklib27/cracklib/
H A DMakefile14 ar rv $(LIB) $?
/macosx-10.10/NFS-82/nfsiod/
H A Dnfsiod.c94 int ch, rv, num_servers, old_servers; local
133 rv = sysctlbyname("vfs.generic.nfs.client.nfsiod_thread_max", &old_servers, &old_size, NULL, 0);
135 rv = sysctlbyname("vfs.generic.nfs.client.nfsiod_thread_max", &old_servers, &old_size, &num_servers, num_size);
136 if (rv < 0)
/macosx-10.10/OpenSSL098-52/src/test/
H A Dcms-test.pl376 my ( $rv, $aref, $scmd, $vcmd ) = @_;
392 $$rv++;
399 $$rv++;
405 $$rv++;
/macosx-10.10/apache-793/httpd/modules/database/
H A Dmod_dbd.c163 apr_status_t rv; local
176 rv = apr_dbd_get_driver(cmd->pool, cfg->name, &driver);
177 if (APR_STATUS_IS_ENOTIMPL(rv)) {
180 else if (APR_STATUS_IS_EDSOOPEN(rv)) {
189 else if (APR_STATUS_IS_ESYMNOTFOUND(rv)) {
469 apr_status_t rv = APR_SUCCESS; local
478 rv = APR_EGENERAL;
483 return rv;
519 apr_status_t rv; local
522 rv
624 apr_status_t rv; local
665 apr_status_t rv = APR_SUCCESS; local
704 apr_status_t rv = dbd_setup_init(p, s); local
714 apr_status_t rv = APR_SUCCESS, rv2; local
769 apr_status_t rv = apr_dbd_check_conn(rec->driver, pool, rec->handle); local
797 apr_status_t rv; local
[all...]
/macosx-10.10/apr-32/apr/apr/network_io/unix/
H A Dmulticast.c116 apr_status_t rv = APR_SUCCESS; local
152 rv = errno;
166 rv = errno;
185 rv = errno;
190 rv = APR_ENOTIMPL;
193 return rv;
202 apr_status_t rv = APR_SUCCESS; local
209 rv = errno;
229 rv = errno;
234 rv
288 apr_status_t rv = APR_SUCCESS; local
[all...]
/macosx-10.10/apr-32/apr-util/apr-util/dbm/
H A Dapr_dbm.c110 apr_status_t rv;
147 rv = apu_dso_mutex_lock();
148 if (rv) {
150 return rv;
174 rv = apu_dso_load(NULL, &symbol, modname, symname, pool);
175 if (rv == APR_SUCCESS || rv == APR_EINIT) { /* previously loaded?!? */
180 rv = APR_SUCCESS;
186 return rv;
198 apr_status_t rv local
277 apr_status_t rv = dbm_open_type(&vtable, type, p); local
[all...]
/macosx-10.10/apr-32/apr-util/apr-util/include/
H A Dapr_hooks.h77 * @param rv The return value of the hook, or 0 if the hook is void.
81 #define APR_HOOK_PROBE_RETURN(ud,ns,name,rv,args)
104 * @param rv The return value of the hook function, or 0 if the hook is void.
108 #define APR_HOOK_PROBE_COMPLETE(ud,ns,name,src,rv,args)
228 ret rv = ok; \
239 rv=pHook[n].pFunc args_use; \
240 APR_HOOK_PROBE_COMPLETE(ud, ns, name, (char *)pHook[n].szName, rv, args_use); \
241 if(rv != ok && rv != decline) \
243 rv
[all...]
/macosx-10.10/apr-32/apr-util/apr-util/test/
H A Dtestutil.h42 void apr_assert_success(abts_case* tc, const char *context, apr_status_t rv);
45 apr_status_t rv, int lineno);
46 #define APR_ASSERT_FAILURE(tc, ctxt, rv) \
47 apr_assert_failure(tc, ctxt, rv, __LINE__)
/macosx-10.10/bash-94.1.2/bash-3.2/lib/sh/
H A Dtimes.c41 clock_t rv; local
63 rv = (clock_t)(CONVTCK(tv));
72 rv = (clock_t)time((time_t *)0) * clk_tck;
75 return rv;
/macosx-10.10/ksh-23/ksh/src/lib/libast/vmalloc/
H A Dvmwalk.c45 reg int rv = 0; local
52 if((rv = (*segf)(vm, seg->addr, seg->extent, vm->disc, handle)) < 0 )
61 if((rv = (*segf)(vm, seg->addr, seg->extent, vm->disc, handle)) < 0 )
66 return rv;

Completed in 180 milliseconds

1234567891011>>