Searched refs:rc (Results 76 - 100 of 1363) sorted by relevance

1234567891011>>

/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/servers/slapd/
H A Dslapacl.c46 int rc; local
50 rc = access_allowed_mask( op, e, desc, nval, ACL_AUTH, NULL, &mask );
60 return rc;
66 int rc = EXIT_SUCCESS; local
89 rc = 1;
120 rc = 1;
124 rc = slap_sasl_getdn( &conn, op, &authcID, NULL,
126 if ( rc != LDAP_SUCCESS ) {
128 authcID.bv_val, rc,
129 ldap_err2string( rc ) );
[all...]
H A Dstarttls.c31 int rc; local
48 rc = LDAP_OPERATIONS_ERROR;
59 rc = LDAP_OPERATIONS_ERROR;
78 rc = LDAP_OPERATIONS_ERROR;
86 rc = LDAP_REFERRAL;
91 rc = LDAP_UNAVAILABLE;
98 rc = LDAP_SUCCESS;
109 return rc;
H A Dcancel.c35 int rc; local
73 rc = LDAP_OPERATIONS_ERROR;
85 rc = LDAP_CANNOT_CANCEL;
98 rc = LDAP_NO_SUCH_OPERATION;
104 rc = LDAP_CANNOT_CANCEL;
107 rc = LDAP_OPERATIONS_ERROR;
115 rc = LDAP_TOO_LATE;
119 rc = LDAP_SUCCESS;
127 if ( rc == LDAP_SUCCESS ) {
144 rc
[all...]
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/servers/slapd/back-ldap/
H A Dpbind.c46 int rc; local
50 rc = lback->bi_op_bind( op, rs );
54 return rc;
65 int rc; local
75 rc = lback->bi_db_init( be, cr );
80 return rc;
90 int rc; local
96 rc = lback->bi_db_open( be, cr );
100 return rc;
110 int rc; local
126 int rc; local
144 int rc; local
156 int rc; local
[all...]
H A Dinit.c57 int rc; local
103 rc = ldap_back_init_cf( bi );
104 if ( rc ) {
105 return rc;
108 rc = chain_initialize();
109 if ( rc ) {
110 return rc;
113 rc = pbind_initialize();
114 if ( rc ) {
115 return rc;
131 int rc; local
203 int rc = 0; local
283 int rc = 0; local
[all...]
/macosx-10.10.1/apr-32/apr/apr/shmem/os2/
H A Dshm.c34 int rc; local
49 rc = DosAllocSharedMem(&(newm->memblock), name, reqsize, flags);
51 if (rc) {
52 return APR_OS2_STATUS(rc);
75 int rc; local
83 rc = DosGetNamedSharedMem(&(newm->memblock), name, flags);
85 if (rc) {
86 return APR_FROM_OS_ERROR(rc);
95 int rc = 0; local
98 rc
129 int rc; local
[all...]
/macosx-10.10.1/ruby-106/ruby/test/-ext-/old_thread_select/
H A Dtest_old_thread_select.rb22 rc = IO.old_thread_select([r.fileno], nil, nil, 0.001)
24 assert_equal 0, rc
33 rc = IO.old_thread_select(nil, nil, [r.fileno], 0.001)
35 assert_equal 0, rc, bug5299
47 rc = IO.old_thread_select(rfds, nil, nil, nil)
49 assert_equal 1, rc, bug5306
57 rc = IO.old_thread_select([r.fileno], nil, nil, nil)
58 assert_equal 1, rc
60 rc = IO.old_thread_select([r.fileno], [w.fileno], nil, nil)
61 assert_equal 2, rc
[all...]
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/libraries/liblutil/
H A Dptest.c59 int i, j, rc; local
71 rc = lutil_authpasswd_hash( &pw[j],
74 if( rc )
88 rc = lutil_authpasswd( &pw[j], passwd, salt, NULL );
90 rc = lutil_passwd( passwd, &pw[j], NULL );
95 rc, rc == 0 ? "OKAY" : "BAD" );
98 rc = lutil_authpasswd( passwd, salt, &bad, NULL );
100 rc = lutil_passwd( passwd, &bad, NULL );
105 rc, r
[all...]
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/servers/slapd/slapi/
H A Dplugin.c73 int rc; local
80 rc = LDAP_NO_MEMORY;
89 rc = LDAP_NO_MEMORY;
102 rc = slapi_int_load_plugin( pPlugin, path, initfunc, 1, NULL, &hdLoadHandle );
103 if ( rc != 0 ) {
118 if ( rc != 0 && pPlugin != NULL ) {
152 int rc = LDAP_SUCCESS; local
160 while ( pTmpPB != NULL && rc == LDAP_SUCCESS ) {
162 rc = slapi_pblock_get( pTmpPB, SLAPI_IBM_PBLOCK, &pTmpPB );
165 if ( rc
200 int rc = LDAP_SUCCESS; local
335 int rc; local
383 int rc = LDAP_OTHER; local
476 int rc; local
544 int rc = LDAP_SUCCESS; local
592 int rc = 0; local
677 int rc; local
[all...]
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/clients/tools/
H A Dldapwhoami.c111 int rc; local
136 rc = LDAP_SUCCESS;
142 rc = ldap_whoami( ld, NULL, NULL, &id );
144 if( rc != LDAP_SUCCESS ) {
145 tool_perror( "ldap_whoami", rc, NULL, NULL, NULL, NULL );
146 rc = EXIT_FAILURE;
160 rc = ldap_result( ld, LDAP_RES_ANY, LDAP_MSG_ALL, &tv, &res );
161 if ( rc < 0 ) {
162 tool_perror( "ldap_result", rc, NULL, NULL, NULL, NULL );
163 tool_exit( ld, rc );
[all...]
H A Dldapdelete.c171 int rc, retval; local
195 retval = rc = 0;
199 rc = dodelete( ld, argv[ optind ] );
202 if( rc != 0 ) {
203 retval = rc;
208 while ((rc == 0 || contoper) && fgets(buf, sizeof(buf), fp) != NULL) {
212 rc = dodelete( ld, buf );
213 if ( rc != 0 )
214 retval = rc;
230 int rc, cod local
346 int rc = LDAP_SUCCESS, srch_rc; local
[all...]
/macosx-10.10.1/apr-32/apr/apr/locks/os2/
H A Dproc_mutex.c80 ULONG rc; local
94 rc = DosCreateMutexSem(semname, &(new->hMutex), DC_SEM_SHARED, FALSE);
96 if (!rc) {
100 return APR_FROM_OS_ERROR(rc);
110 ULONG rc; local
119 rc = DosOpenMutexSem(semname, &(new->hMutex));
122 if (!rc) {
126 return APR_FROM_OS_ERROR(rc);
133 ULONG rc = DosRequestMutexSem(mutex->hMutex, SEM_INDEFINITE_WAIT); local
135 if (rc
147 ULONG rc = DosRequestMutexSem(mutex->hMutex, SEM_IMMEDIATE_RETURN); local
161 ULONG rc; local
176 ULONG rc; local
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/hx509/
H A Dtest_pkcs11.in38 SOFTPKCS11RC="test-rc-file.rc" \
43 cat > test-rc-file.rc <<EOF
53 cat > test-rc-file.rc <<EOF
/macosx-10.10.1/apr-32/apr/apr/file_io/os2/
H A Dreadwrite.c29 ULONG rc = 0; local
57 while (rc == 0 && size > 0) {
60 rc = DosRead(thefile->filedes, thefile->buffer,
64 if (rc == 0)
81 *nbytes = rc == 0 ? pos - (char *)buf : 0;
84 if (*nbytes == 0 && rc == 0 && thefile->eof_hit) {
88 return APR_FROM_OS_ERROR(rc);
91 DosResetEventSem(thefile->pipeSem, &rc);
93 rc = DosRead(thefile->filedes, buf, *nbytes, &bytesread);
95 if (rc
127 ULONG rc = 0; local
224 ULONG rc; local
251 ULONG rc; local
288 int rc = 0; local
377 int rc; local
[all...]
H A Dpipe.c30 ULONG rc, action; local
35 rc = DosCreateNPipe(pipename, filedes, NP_ACCESS_INBOUND, NP_NOWAIT|1, 4096, 4096, 0);
37 if (rc)
38 return APR_FROM_OS_ERROR(rc);
40 rc = DosConnectNPipe(filedes[0]);
42 if (rc && rc != ERROR_PIPE_NOT_CONNECTED) {
44 return APR_FROM_OS_ERROR(rc);
47 rc = DosOpen (pipename, filedes+1, &action, 0, FILE_NORMAL,
52 if (rc) {
[all...]
/macosx-10.10.1/curl-83.1.2/curl/lib/vtls/
H A Dqssl.c67 int rc; local
98 rc = SSL_Init_Application(&initappstr);
100 if(rc == SSL_ERROR_NOT_REGISTERED) {
105 rc = SSL_Init(&initstr);
108 switch (rc) {
131 failf(data, "SSL_Init(): %s", SSL_Strerror(rc, NULL));
167 int rc; local
217 rc = SSL_Handshake(h, SSL_HANDSHAKE_AS_CLIENT);
219 switch (rc) {
243 failf(data, "SSL_Handshake(): %s", SSL_Strerror(rc, NUL
276 int rc; local
309 int rc; local
359 int rc; local
415 int rc; local
[all...]
/macosx-10.10.1/apr-32/apr/apr/file_io/win32/
H A Dseek.c26 DWORD rc; local
48 rc = SetFilePointer(thefile->filehand, offlo, &offhi, FILE_BEGIN);
50 if (rc == (DWORD)-1)
75 apr_status_t rc = APR_SUCCESS; local
82 rc = setptr(thefile, *offset);
86 rc = setptr(thefile, thefile->filePtr - thefile->dataRead
91 rc = apr_file_info_get(&finfo, APR_FINFO_SIZE, thefile);
92 if (rc == APR_SUCCESS)
93 rc = setptr(thefile, finfo.size + *offset);
101 return rc;
162 DWORD rc; local
[all...]
/macosx-10.10.1/passwordserver_sasl-193/cyrus_sasl/saslauthd/
H A Dauth_ldap.c69 int rc = 0;
72 rc = lak_init(SASLAUTHD_CONF_FILE, &lak);
73 if (rc != LAK_OK) {
79 rc = lak_authenticate(lak, login, service, realm, password);
80 if (rc == LAK_OK) {
68 int rc = 0; local
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/servers/slapd/back-bdb/
H A Dfilterindex.c109 int rc = 0; local
142 rc = presence_candidates( op, rtxn, f->f_desc, ids );
149 rc = ava_comp_candidates ( op, rtxn, f->f_ava, aa, ids, tmp, stack );
154 rc = equality_candidates( op, rtxn, f->f_ava, ids, tmp );
160 rc = approx_candidates( op, rtxn, f->f_ava, ids, tmp );
165 rc = substring_candidates( op, rtxn, f->f_sub, ids, tmp );
173 rc = inequality_candidates( op, rtxn, f->f_ava, ids, tmp, LDAP_FILTER_GE );
175 rc = presence_candidates( op, rtxn, f->f_ava->aa_desc, ids );
183 rc = inequality_candidates( op, rtxn, f->f_ava, ids, tmp, LDAP_FILTER_LE );
185 rc
242 int rc = 0; local
309 int rc; local
441 int rc; local
501 int rc; local
570 int rc = 0; local
638 int rc; local
711 int rc; local
842 int rc; local
962 int rc; local
1078 int rc; local
[all...]
H A Dtools.c120 int rc = bdb->bi_id2entry->bdi_db->cursor( local
123 if( rc != 0 ) {
253 int rc; local
268 rc = cursor->c_get( cursor, &key, &data, DB_NEXT );
270 if( rc ) {
274 if ( index_nattrs && rc == DB_NOTFOUND ) {
279 rc = cursor->c_get( cursor, &key, &data, DB_FIRST );
280 if ( rc ) {
305 rc = bdb_tool_entry_get_int( be, id, &tool_next_entry );
306 if ( rc
342 int rc; local
365 int rc, eoff; local
499 int rc; local
592 int i, rc; local
645 int rc; local
757 int rc; local
895 int rc; local
987 int rc; local
1002 int i, rc; local
1119 int rc; local
1136 int i, rc = 0; local
1161 int rc; local
1175 int rc; local
[all...]
/macosx-10.10.1/curl-83.1.2/curl/lib/
H A Dnon-ascii.c85 CURLcode rc; local
89 rc = data->set.convtonetwork(buffer, length);
90 if(rc != CURLE_OK) {
93 (int)rc, curl_easy_strerror(rc));
95 return rc;
101 size_t in_bytes, out_bytes, rc; local
121 rc = iconv(data->outbound_cd, (const char**)&input_ptr, &in_bytes,
123 if((rc == ICONV_ERROR) || (in_bytes != 0)) {
146 CURLcode rc; local
162 size_t in_bytes, out_bytes, rc; local
207 CURLcode rc; local
224 size_t in_bytes, out_bytes, rc; local
323 CURLcode rc; local
[all...]
/macosx-10.10.1/apr-32/apr/apr/file_io/unix/
H A Dflock.c28 int rc; local
46 while ((rc = fcntl(thefile->filedes, fc, &l)) < 0 && errno == EINTR)
49 if (rc == -1) {
72 while ((rc = flock(thefile->filedes, ltype)) < 0 && errno == EINTR)
75 if (rc == -1)
87 int rc; local
99 while ((rc = fcntl(thefile->filedes, F_SETLKW, &l)) < 0
103 if (rc == -1)
109 while ((rc = flock(thefile->filedes, LOCK_UN)) < 0 && errno == EINTR)
112 if (rc
[all...]
/macosx-10.10.1/libxml2-26/libxml2/
H A Dxmlmodule.c116 int rc = -1; local
122 return rc;
125 rc = xmlModulePlatformSymbol(module->handle, name, symbol);
127 if (rc == -1) {
133 return rc;
136 return rc;
152 int rc; local
161 rc = xmlModulePlatformClose(module->handle);
163 if (rc != 0) {
171 rc
289 int rc; local
322 int rc; local
375 status_t rc; local
394 status_t rc; local
418 int rc; local
449 int rc; local
[all...]
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/
H A Dxmlmodule.c108 int rc = -1; local
114 return rc;
117 rc = xmlModulePlatformSymbol(module->handle, name, symbol);
119 if (rc == -1) {
125 return rc;
128 return rc;
144 int rc; local
153 rc = xmlModulePlatformClose(module->handle);
155 if (rc != 0) {
163 rc
281 int rc; local
314 int rc; local
360 status_t rc; local
379 status_t rc; local
403 int rc; local
434 int rc; local
[all...]
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/libraries/libldap/
H A Dmodrdn.c77 int rc; local
83 rc = ldap_int_client_controls( ld, cctrls );
84 if( rc != LDAP_SUCCESS ) return rc;
99 rc = ber_printf( ber, "{it{ssbtsN}", /* '}' */
105 rc = ber_printf( ber, "{it{ssbN}", /* '}' */
110 if ( rc < 0 ) {
122 rc = ber_printf( ber, /*{*/ "N}" );
123 if ( rc < 0 ) {
161 int rc; local
209 int rc; local
[all...]

Completed in 408 milliseconds

1234567891011>>