| /PHP_TRUNK/ext/pcre/pcrelib/ |
| H A D | pcredemo.c | 61 int rc, i; local 121 rc = pcre_exec( 133 if (rc < 0) 135 switch(rc) 141 default: printf("Matching error %d\n", rc); break; 160 if (rc == 0) 162 rc = OVECCOUNT/3; 163 printf("ovector only has room for %d captured substrings\n", rc - 1); 169 for (i = 0; i < rc; i++) 313 rc [all...] |
| H A D | pcre_get.c | 79 int rc; local 85 if ((rc = pcre_fullinfo(code, NULL, PCRE_INFO_NAMECOUNT, &top)) != 0) 86 return rc; 89 if ((rc = pcre_fullinfo(code, NULL, PCRE_INFO_NAMEENTRYSIZE, &entrysize)) != 0) 90 return rc; 91 if ((rc = pcre_fullinfo(code, NULL, PCRE_INFO_NAMETABLE, &nametable)) != 0) 92 return rc; 95 if ((rc = pcre16_fullinfo(code, NULL, PCRE_INFO_NAMECOUNT, &top)) != 0) 96 return rc; 99 if ((rc 162 int rc; local [all...] |
| H A D | pcre_study.c | 756 int rc; local 866 rc = set_start_bits(tcode, start_bits, utf, cd); 867 if (rc == SSB_FAIL || rc == SSB_UNKNOWN) return rc; 868 if (rc == SSB_DONE) try_next = FALSE; else 913 rc = set_start_bits(++tcode, start_bits, utf, cd); 914 if (rc == SSB_FAIL || rc == SSB_UNKNOWN) return rc; 1385 int rc; local [all...] |
| H A D | pcreposix.c | 314 int rc, so, eo; local 365 rc = pcre_exec((const pcre *)preg->re_pcre, NULL, string + so, (eo - so), 368 if (rc == 0) rc = (int)nmatch; /* All captured slots were filled in */ 372 if (rc >= 0) 377 for (i = 0; i < (size_t)rc; i++) 391 switch(rc)
|
| /PHP_TRUNK/sapi/isapi/stresstest/ |
| H A D | stresstest.cpp | 639 DWORD rc; local 697 rc = IsapiHttpExtensionProc(&ECB); 698 if (rc == HSE_STATUS_PENDING) { 730 DWORD rc; local 736 rc = value.GetLength(); 739 rc = value.GetLength(); 742 rc = GetEnvironmentVariable(lpszVariableName, (char *)lpBuffer, *lpdwSize) ; 744 if (!rc) { // return of 0 indicates the variable was not found 749 if (rc > *lpdwSize) { 754 *lpdwSize =rc [all...] |
| /PHP_TRUNK/ext/fileinfo/libmagic/ |
| H A D | apptype.c | 48 APPTYPE rc, type; local 80 rc = DosQueryAppType((unsigned char *)path, &type); 87 if (rc == ERROR_INVALID_EXE_SIGNATURE) 89 else if (rc == ERROR_FILE_NOT_FOUND) 91 else if (rc == ERROR_ACCESS_DENIED) 93 else if (rc != 0) 94 printf("%s: error code = %lu\n", fname, rc); 103 if (rc)
|
| H A D | compress.c | 326 int rc; local 363 rc = inflateInit2(&z, -15); 364 if (rc != Z_OK) { 369 rc = inflate(&z, Z_SYNC_FLUSH); 370 if (rc != Z_OK && rc != Z_STREAM_END) {
|
| /PHP_TRUNK/ext/intl/collator/ |
| H A D | collator_sort.c | 57 int rc = SUCCESS; local 126 rc = compare_function( result, norm1, norm2 TSRMLS_CC ); 141 return rc; 150 int rc = SUCCESS; local 166 rc = numeric_compare_function( result, op1, op2 TSRMLS_CC); 173 return rc; 182 int rc = SUCCESS; local 203 return rc;
|
| /PHP_TRUNK/ext/date/lib/ |
| H A D | astro.c | 220 int rc = 0; /* Return cde from function - usually 0 */ local 264 rc = -1; 269 rc = +1; 290 return rc;
|
| /PHP_TRUNK/ext/ereg/ |
| H A D | ereg.c | 143 reg_cache *rc = NULL; local 156 if(zend_hash_find(&EREG(ht_rc), (char *) pattern, patlen+1, (void **) &rc) == SUCCESS 157 && rc->cflags == cflags) { 163 if (rc->preg.re_magic != reg_magic) { 167 memcpy(preg, &rc->preg, sizeof(*preg)); 189 memcpy(preg, &rc->preg, sizeof(*preg)); 207 static void _free_ereg_cache(reg_cache *rc) argument 209 regfree(&rc->preg);
|
| /PHP_TRUNK/ext/hash/ |
| H A D | php_hash_whirlpool_tables.h | 26 static const php_hash_uint64 rc[R + 1] = { variable
|
| /PHP_TRUNK/ext/ldap/ |
| H A D | ldap.c | 323 int rc; local 325 rc = ldap_initialize(&ldap, host); 326 if (rc != LDAP_SUCCESS) { 328 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Could not create session handle: %s", ldap_err2string(rc)); 387 int rc; local 395 if ((rc = ldap_bind_s(ld->link, ldap_bind_dn, ldap_bind_pw, LDAP_AUTH_SIMPLE)) != LDAP_SUCCESS) { 396 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to bind to server: %s", ldap_err2string(rc)); 502 int rc, dn_len, passwd_len, mech_len, realm_len, authc_id_len, authz_id_len, props_len; local 517 rc = ldap_sasl_interactive_bind_s(ld->link, binddn, ctx->mech, NULL, NULL, LDAP_SASL_QUIET, _php_sasl_interact, ctx); 518 if (rc ! 1418 int rc, dn_len; local 1833 int rc, lerrcode, myargcount = ZEND_NUM_ARGS(); local 1991 int rc; local 2031 int rc, protocol = LDAP_VERSION3; local 2203 int rc, myargcount = ZEND_NUM_ARGS(); local 2293 int rc, lerrcode, myargcount = ZEND_NUM_ARGS(); local [all...] |
| /PHP_TRUNK/ext/mysqli/ |
| H A D | mysqli_embedded.c | 43 int index, rc; local 98 rc = mysql_server_init(argc, arguments, groups); 105 if (rc) {
|
| H A D | mysqli_prop.c | 161 my_ulonglong rc; local 174 rc = mysql_affected_rows(mysql->mysql); 176 if (rc == (my_ulonglong) -1) { 181 if (rc < LONG_MAX) { 182 ZVAL_LONG(*retval, (long) rc); 185 int l = spprintf(&ret, 0, MYSQLI_LLU_SPEC, rc); 364 my_ulonglong rc; local 374 rc = mysql_stmt_affected_rows(p->stmt); 376 if (rc == (my_ulonglong) -1) { 381 if (rc < LONG_MA [all...] |
| H A D | mysqli_api.c | 43 my_ulonglong rc; local 51 rc = mysql_affected_rows(mysql->mysql); 52 if (rc == (my_ulonglong) -1) { 55 MYSQLI_RETURN_LONG_LONG(rc); 88 unsigned long rc; local 132 rc = 1; 137 rc = mysql_stmt_bind_param(stmt->stmt, bind); 140 if (rc) { 156 return rc; 224 unsigned long rc; local 290 ulong rc; local 479 ulong rc; local 525 ulong rc; local 1505 my_ulonglong rc; local 1792 long rc; local 2004 my_ulonglong rc; local 2099 my_ulonglong rc; local 2153 my_ulonglong rc; local 2340 int rc; local [all...] |
| /PHP_TRUNK/ext/pdo_odbc/ |
| H A D | odbc_driver.c | 61 SQLRETURN rc; local 92 rc = SQLGetDiagRec(htype, eh, recno++, einfo->last_state, &einfo->last_error, 95 if (rc != SQL_SUCCESS && rc != SQL_SUCCESS_WITH_INFO) { 116 while (rc == SQL_SUCCESS || rc == SQL_SUCCESS_WITH_INFO) { 120 rc = SQLGetDiagRec(htype, eh, recno++, discard_state, &code, 147 RETCODE rc; local 173 rc = SQLAllocHandle(SQL_HANDLE_STMT, H->dbc, &S->stmt); 175 if (rc 226 RETCODE rc; local 275 RETCODE rc; local 290 RETCODE rc; local 316 RETCODE rc; local 394 RETCODE rc; local [all...] |
| H A D | odbc_stmt.c | 164 RETCODE rc; local 173 rc = SQLExecute(S->stmt); 175 while (rc == SQL_NEED_DATA) { 178 rc = SQLParamData(S->stmt, (SQLPOINTER*)¶m); 179 if (rc == SQL_NEED_DATA) { 245 switch (rc) { 280 RETCODE rc; local 310 rc = SQLDescribeParam(S->stmt, (SQLUSMALLINT) param->paramno+1, &sqltype, &precision, &scale, &nullable); 311 if (rc != SQL_SUCCESS && rc ! 507 RETCODE rc; local 547 RETCODE rc; local 620 RETCODE rc; local 739 SQLRETURN rc; local 766 SQLRETURN rc; local 798 SQLRETURN rc; local [all...] |
| /PHP_TRUNK/sapi/continuity/ |
| H A D | capi.c | 133 capi_request_context *rc; local 135 rc = (capi_request_context *) SG(server_context); 136 retval = httpFwrite(rc->t, (char *) str, str_length); 149 capi_request_context *rc = (capi_request_context *) SG(server_context); local 151 lstFset_delete_key(rc->t->res_hdrs, "Content-Type"); 163 lstFset_add(rc->t->res_hdrs, header_name, header_content); 180 capi_request_context *rc = (capi_request_context *) SG(server_context); local 188 /* lstFset_delete_key(rc->t->res_hdrs, "Content-Type"); */ 189 lstFset_update(rc->t->res_hdrs, "Content-Type", "text/html"); 191 httpFset_status(rc 201 capi_request_context *rc = (capi_request_context *) SG(server_context); local 227 capi_request_context *rc = (capi_request_context *) SG(server_context); local 235 capi_request_context *rc = (capi_request_context *) SG(server_context); local 348 capi_request_context *rc = (capi_request_context *) SG(server_context); local [all...] |
| /PHP_TRUNK/sapi/nsapi/ |
| H A D | nsapi.c | 337 nsapi_request_context *rc = (nsapi_request_context *)SG(server_context); local 362 if (value = pblock_findval("host", rc->rq->headers)) { 369 rv = (*nsapi_servact_uri2path)(rc->sn, rq); 374 rv = (*nsapi_servact_pathchecks)(rc->sn, rq); 379 rv = (*nsapi_servact_fileinfo)(rc->sn, rq); 384 rv = (*nsapi_servact_service)(rc->sn, rq); 406 nsapi_request_context *rc = (nsapi_request_context *)SG(server_context); local 414 for (i=0; i < rc->rq->headers->hsize; i++) { 415 entry=rc->rq->headers->ht[i]; 430 nsapi_request_context *rc local 456 nsapi_request_context *rc = (nsapi_request_context *)SG(server_context); local 472 nsapi_request_context *rc = (nsapi_request_context *)server_context; local 496 nsapi_request_context *rc = (nsapi_request_context *)SG(server_context); local 521 nsapi_request_context *rc = (nsapi_request_context *)SG(server_context); local 571 nsapi_request_context *rc = (nsapi_request_context *)SG(server_context); local 593 nsapi_request_context *rc = (nsapi_request_context *)SG(server_context); local 652 nsapi_request_context *rc = (nsapi_request_context *)SG(server_context); local 660 nsapi_request_context *rc = (nsapi_request_context *)SG(server_context); local 780 nsapi_request_context *rc = (nsapi_request_context *)SG(server_context); local [all...] |
| /PHP_TRUNK/ext/mbstring/ |
| H A D | php_mbregex.c | 452 php_mb_regex_t *retval = NULL, **rc = NULL; local 456 found = zend_hash_find(&MBREX(ht_rc), (char *)pattern, patlen+1, (void **) &rc); 457 if (found == FAILURE || (*rc)->options != options || (*rc)->enc != enc || (*rc)->syntax != syntax) { 466 retval = *rc;
|
| /PHP_TRUNK/sapi/cli/ |
| H A D | php_cli_process_title.c | 35 int rc; local 41 rc = set_ps_title(title); 42 if (rc == PS_TITLE_SUCCESS) { 46 php_error_docref(NULL TSRMLS_CC, E_WARNING, "cli_set_process_title had an error: %s", ps_title_errno(rc)); 57 int rc; local 63 rc = get_ps_title(&length, &title); 64 if (rc != PS_TITLE_SUCCESS) { 65 php_error_docref(NULL TSRMLS_CC, E_WARNING, "cli_get_process_title had an error: %s", ps_title_errno(rc));
|
| H A D | ps_title.c | 296 const char* ps_title_errno(int rc) argument 298 switch(rc) 331 int rc = is_ps_title_available(); local 332 if (rc != PS_TITLE_SUCCESS) 333 return rc; 384 int rc = is_ps_title_available(); local 385 if (rc != PS_TITLE_SUCCESS) 386 return rc;
|
| /PHP_TRUNK/ext/mysqlnd/ |
| H A D | mysqlnd_ps.c | 734 enum_func_status rc = result->m.row_decoder(set->row_buffers[row_num], local 740 if (PASS != rc) {
|
| H A D | mysqlnd_result.c | 53 enum_func_status rc = result->m.row_decoder( local 60 if (rc != PASS) { 657 enum_func_status rc = result->m.row_decoder(result->unbuf->last_row_buffer, local 663 if (PASS != rc) { 771 enum_func_status rc = result->m.row_decoder(result->unbuf->last_row_buffer, local 777 if (PASS != rc) { 928 enum_func_status rc = result->m.row_decoder(set->row_buffers[row_num], local 934 if (rc != PASS) { 1000 enum_func_status rc = result->m.row_decoder(set->row_buffers[row_num], local 1006 if (rc ! [all...] |
| /PHP_TRUNK/ext/spl/ |
| H A D | spl_dllist.c | 44 #define SPL_LLIST_DELREF(elem) if(!--(elem)->rc) { \ 49 #define SPL_LLIST_CHECK_DELREF(elem) if((elem) && !--(elem)->rc) { \ 54 #define SPL_LLIST_ADDREF(elem) (elem)->rc++ 55 #define SPL_LLIST_CHECK_ADDREF(elem) if(elem) (elem)->rc++ 69 int rc; member in struct:_spl_ptr_llist_element 193 elem->rc = 1; 217 elem->rc = 1; 1270 elem->rc = 1;
|