| /PHP_5_3/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_5_3/ext/sqlite/libsqlite/src/ |
| H A D | attach.c | 28 int rc, i; local 40 pParse->rc = SQLITE_ERROR; 46 pParse->rc = SQLITE_ERROR; 68 pParse->rc = SQLITE_ERROR; 90 rc = sqliteBtreeFactory(db, zFile, 0, MAX_PAGES, &aNew->pBt); 91 if( rc ){ 113 if( rc==SQLITE_OK ){ 114 rc = sqliteInit(pParse->db, &pParse->zErrMsg); 116 if( rc ){ 125 pParse->rc [all...] |
| H A D | auth.c | 87 static void sqliteAuthBadReturnCode(Parse *pParse, int rc){ argument 90 "or SQLITE_DENY", rc); 91 pParse->rc = SQLITE_MISUSE; 109 int rc; local 144 rc = db->xAuth(db->pAuthArg, SQLITE_READ, pTab->zName, zCol, zDBase, 146 if( rc==SQLITE_IGNORE ){ 148 }else if( rc==SQLITE_DENY ){ 155 pParse->rc = SQLITE_AUTH; 156 }else if( rc!=SQLITE_OK ){ 157 sqliteAuthBadReturnCode(pParse, rc); 175 int rc; local [all...] |
| H A D | date.c | 463 int rc = 1; local 483 rc = 0; 497 rc = 0; 505 rc = 0; 529 rc = 0; 550 rc = 0; 555 rc = 0; 557 rc = 0; 595 rc = 0; 604 rc [all...] |
| H A D | insert.c | 180 int rc, iInitCode; local 184 rc = sqliteSelect(pParse, pSelect, SRT_Subroutine, iInsertBlock, 0,0,0); 185 if( rc || pParse->nErr || sqlite_malloc_failed ) goto insert_cleanup;
|
| H A D | main.c | 141 int rc; local 153 rc = sqlite_exec_printf(pData->db, 174 return rc!=SQLITE_OK; 188 int rc; local 260 rc = sqliteBtreeCursor(db->aDb[iDb].pBt, 2, 0, &curMain); 261 if( rc ){ 262 sqliteSetString(pzErrMsg, sqlite_error_string(rc), (char*)0); 263 return rc; 268 rc = sqliteBtreeGetMeta(db->aDb[iDb].pBt, meta); 269 if( rc ){ 380 int i, rc; local 477 int rc, i; local 630 int rc = SQLITE_OK; local 704 int rc, cnt = 1; local 798 int rc = sqliteVdbeFinalize((Vdbe*)pVm, pzErrMsg); local 814 int rc = sqliteVdbeReset((Vdbe*)pVm, pzErrMsg); local 824 sqlite_error_string(int rc) argument [all...] |
| H A D | table.c | 35 int rc; member in struct:TabResult 62 p->rc = SQLITE_NOMEM; 79 p->rc = SQLITE_NOMEM; 90 p->rc = SQLITE_ERROR; 103 p->rc = SQLITE_NOMEM; 133 int rc; local 145 res.rc = SQLITE_OK; 151 rc = sqlite_exec(db, zSql, sqlite_get_table_cb, &res, pzErrMsg); 155 if( rc==SQLITE_ABORT ){ 166 return res.rc; [all...] |
| H A D | update.c | 144 int rc; local 145 rc = sqliteAuthCheck(pParse, SQLITE_UPDATE, pTab->zName, 147 if( rc==SQLITE_DENY ){ 149 }else if( rc==SQLITE_IGNORE ){
|
| H A D | vacuum.c | 41 int rc; /* Set to non-zero on an error */ member in struct:vacuumStruct 93 int rc; local 96 rc = sqlite_exec(db, zSql, 0, 0, &zErrMsg); 101 return rc; 129 p->rc = execsql(p->pzErrMsg, p->dbNew, p->s2.z); 130 return p->rc; 143 int rc = 0; local 149 rc = execsql(p->pzErrMsg, p->dbNew, argv[2]); 150 if( rc==SQLITE_OK && strcmp(argv[0],"table")==0 ){ 156 rc 206 int rc = SQLITE_OK; /* Return code from service routines */ local [all...] |
| /PHP_5_3/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 361 rc = inflateInit2(&z, -15); 362 if (rc != Z_OK) { 367 rc = inflate(&z, Z_SYNC_FLUSH); 368 if (rc != Z_OK && rc != Z_STREAM_END) {
|
| /PHP_5_3/ext/intl/collator/ |
| H A D | collator_sort.c | 57 int rc = SUCCESS; local 125 rc = compare_function( result, norm1, norm2 TSRMLS_CC ); 140 return rc; 149 int rc = SUCCESS; local 165 rc = numeric_compare_function( result, op1, op2 TSRMLS_CC); 172 return rc; 181 int rc = SUCCESS; local 202 return rc;
|
| /PHP_5_3/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_5_3/ext/ereg/ |
| H A D | ereg.c | 131 reg_cache *rc = NULL; local 145 if(zend_hash_find(&EREG(ht_rc), (char *) pattern, patlen+1, (void **) &rc) == SUCCESS 146 && rc->cflags == cflags) { 152 if (rc->preg.re_magic != reg_magic) { 156 memcpy(preg, &rc->preg, sizeof(*preg)); 178 memcpy(preg, &rc->preg, sizeof(*preg)); 196 static void _free_ereg_cache(reg_cache *rc) argument 198 regfree(&rc->preg);
|
| /PHP_5_3/ext/hash/ |
| H A D | php_hash_whirlpool_tables.h | 26 static const php_hash_uint64 rc[R + 1] = { variable
|
| /PHP_5_3/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 | 160 my_ulonglong rc; local 173 rc = mysql_affected_rows(mysql->mysql); 175 if (rc == (my_ulonglong) -1) { 180 if (rc < LONG_MAX) { 181 ZVAL_LONG(*retval, (long) rc); 184 int l = spprintf(&ret, 0, MYSQLI_LLU_SPEC, rc); 314 my_ulonglong rc; local 324 rc = mysql_stmt_affected_rows(p->stmt); 326 if (rc == (my_ulonglong) -1) { 331 if (rc < LONG_MA [all...] |
| /PHP_5_3/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_5_3/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 349 capi_request_context *rc = (capi_request_context *) SG(server_context); local [all...] |
| /PHP_5_3/ext/mysqlnd/ |
| H A D | mysqlnd_ps.c | 752 enum_func_status rc = result->m.row_decoder(set->row_buffers[row_num], local 760 if (PASS != rc) {
|
| H A D | mysqlnd_result.c | 52 enum_func_status rc = result->m.row_decoder( local 61 if (rc != PASS) { 682 enum_func_status rc = result->m.row_decoder(result->unbuf->last_row_buffer, local 690 if (PASS != rc) { 799 enum_func_status rc = result->m.row_decoder(result->unbuf->last_row_buffer, local 807 if (PASS != rc) { 968 enum_func_status rc = result->m.row_decoder(set->row_buffers[row_num], local 976 if (rc != PASS) { 1043 enum_func_status rc = result->m.row_decoder(set->row_buffers[row_num], local 1051 if (rc ! [all...] |