Home
last modified time | relevance | path

Searched refs:rc (Results 26 – 50 of 155) sorted by path

1234567

/PHP-7.4/ext/mysqli/
H A Dmysqli_api.c144 my_ulonglong rc; in PHP_FUNCTION() local
238 rc = 1; in mysqli_stmt_bind_param_do_bind()
246 if (rc) { in mysqli_stmt_bind_param_do_bind()
261 return rc; in mysqli_stmt_bind_param_do_bind()
329 zend_ulong rc; in PHP_FUNCTION() local
371 rc = 1; in PHP_FUNCTION()
395 zend_ulong rc; in mysqli_stmt_bind_result_do_bind() local
545 if (rc) { in mysqli_stmt_bind_result_do_bind()
563 return rc; in mysqli_stmt_bind_result_do_bind()
637 if (rc) { in PHP_FUNCTION()
[all …]
H A Dmysqli_prop.c161 my_ulonglong rc; in link_affected_rows_read() local
172 rc = mysql_affected_rows(mysql->mysql); in link_affected_rows_read()
174 if (rc == (my_ulonglong) -1) { in link_affected_rows_read()
179 if (rc < ZEND_LONG_MAX) { in link_affected_rows_read()
180 ZVAL_LONG(retval, (zend_long) rc); in link_affected_rows_read()
182 ZVAL_NEW_STR(retval, strpprintf(0, MYSQLI_LLU_SPEC, rc)); in link_affected_rows_read()
328 my_ulonglong rc; in stmt_affected_rows_read() local
337 rc = mysql_stmt_affected_rows(p->stmt); in stmt_affected_rows_read()
339 if (rc == (my_ulonglong) -1) { in stmt_affected_rows_read()
344 if (rc < ZEND_LONG_MAX) { in stmt_affected_rows_read()
[all …]
/PHP-7.4/ext/mysqli/tests/
H A D002.phpt19 $rc = mysqli_query($link,"CREATE TABLE test_fetch_null(col1 tinyint, col2 smallint,
27 if (!$rc)
30 …$rc = mysqli_query($link, "INSERT INTO test_fetch_null(col1,col10, col11) VALUES(1,'foo1', 1000),(…
31 if (!$rc)
H A D003.phpt19 $rc = @mysqli_query($link,"CREATE TABLE test_bind_result(
38 if (!$rc)
39 $rc = @mysqli_query($link,"CREATE TABLE test_bind_result(
48 if (!$rc)
51 $rc = mysqli_query($link, "INSERT INTO test_bind_result VALUES(
58 if (!$rc)
H A D006.phpt21 $rc = mysqli_query($link,"CREATE TABLE test_bind_fetch(c1 int unsigned,
28 if (!$rc)
H A D007.phpt21 $rc = mysqli_query($link, "CREATE TABLE test_bind_fetch(c1 smallint unsigned,
28 if (!$rc)
H A D008.phpt21 $rc = mysqli_query($link, "CREATE TABLE test_bind_fetch(c1 tinyint,
28 if (!$rc)
H A D009.phpt25 $rc = mysqli_query($link,"CREATE TABLE test_bind_fetch(c1 bigint default 5,
33 if (!$rc)
36 $rc = mysqli_query($link, "INSERT INTO test_bind_fetch (c2,c3,c4,c5,c6,c7,c8) ".
38 if (!$rc)
44 $rc = mysqli_stmt_fetch($stmt);
61 …$rc = mysqli_query($link, "CREATE TABLE test_bind_fetch_uint(c1 integer unsigned, c2 integer unsig…
62 if (!$rc)
71 $rc = mysqli_stmt_fetch($stmt);
H A D010.phpt23 $rc = mysqli_query($link, "CREATE TABLE test_bind_fetch(c1 float(3),
30 if (!$rc)
H A D011.phpt20 $rc = mysqli_query($link, "CREATE TABLE test_bind_result(c1 tinyint, c2 smallint,
25 if (!$rc)
28 $rc = mysqli_query($link,"INSERT INTO test_bind_result VALUES(19,2999,3999,4999999,
31 if (!$rc)
H A D012.phpt20 $rc = mysqli_query($link, "CREATE TABLE test_bind_result(c1 tinyint, c2 smallint,
25 if (!$rc)
H A D013.phpt18 $rc = mysqli_query($link, "CREATE TABLE test_bind_result(c1 tinyint, c2 smallint,
23 if (!$rc)
H A D019.phpt18 $rc = mysqli_query($link,"CREATE TABLE insert_read(col1 tinyint, col2 smallint,
25 if (!$rc)
H A D020.phpt20 $rc = @mysqli_query($link,"CREATE TABLE test_bind_result(
29 if (!$rc)
30 $rc = mysqli_query($link,"CREATE TABLE test_bind_result(
/PHP-7.4/ext/mysqlnd/
H A Dmysqlnd_ps.c770 …enum_func_status rc = result->stored_data->m.row_decoder(&result->stored_data->row_buffers[row_num… in mysqlnd_stmt_fetch_row_buffered() local
776 if (PASS != rc) { in mysqlnd_stmt_fetch_row_buffered()
H A Dmysqlnd_result.c61 if (rc != PASS) { in MYSQLND_METHOD()
98 enum_func_status rc; in MYSQLND_METHOD() local
117 if (rc != PASS) { in MYSQLND_METHOD()
702 if (PASS != rc) { in MYSQLND_METHOD()
834 if (PASS != rc) { in MYSQLND_METHOD()
988 enum_func_status rc = set->m.row_decoder(&set->row_buffers[row_num], in MYSQLND_METHOD() local
994 if (rc != PASS) { in MYSQLND_METHOD()
1078 enum_func_status rc = set->m.row_decoder(&set->row_buffers[row_num], in MYSQLND_METHOD() local
1084 if (rc != PASS) { in MYSQLND_METHOD()
1161 enum_func_status rc; in MYSQLND_METHOD() local
[all …]
/PHP-7.4/ext/odbc/
H A Dphp_odbc.c715 RETCODE rc; in PHP_MINIT_FUNCTION() local
874 RETCODE rc; in odbc_sql_error() local
940 RETCODE rc; in odbc_bindcols() local
1060 RETCODE rc; in odbc_transact() local
1199 RETCODE rc; in PHP_FUNCTION() local
1310 RETCODE rc; in PHP_FUNCTION() local
1488 if (rc == SQL_SUCCESS || rc == SQL_SUCCESS_WITH_INFO || rc == SQL_NO_DATA_FOUND) { in PHP_FUNCTION()
1516 RETCODE rc; in PHP_FUNCTION() local
1637 RETCODE rc; in PHP_FUNCTION() local
1682 if (rc != SQL_SUCCESS && rc != SQL_SUCCESS_WITH_INFO && rc != SQL_NO_DATA_FOUND) { in PHP_FUNCTION()
[all …]
H A Dphp_odbc_includes.h51 #define SQL_SUCCEEDED(rc) (((rc)&(~1))==0) argument
68 #define SQL_SUCCEEDED(rc) (((rc)&(~1))==0) argument
79 #define SQL_SUCCEEDED(rc) (((rc)&(~1))==0) argument
/PHP-7.4/ext/odbc/tests/
H A Dbug73725.phpt17 $rc = odbc_do($conn, "SELECT i, txt, k FROM bug73725");
19 $r = odbc_fetch_array($rc);
22 $r = odbc_fetch_array($rc);
/PHP-7.4/ext/opcache/
H A DZendAccelerator.c4696 int rc; in accel_finish_startup()
4821 rc = php_request_startup(); in accel_finish_startup()
4825 if (rc == SUCCESS) { in accel_finish_startup()
H A Dzend_accelerator_blacklist.c361 …int rc = pcre2_match(regexp_list_it->re, (PCRE2_SPTR)verify_path, verify_path_len, 0, 0, match_dat… local
362 if (rc >= 0) {
/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_compile.c4909 int rc; in add_to_class_internal() local
4915 while ((rc = get_othercase_range(&c, end, &oc, &od)) >= 0) in add_to_class_internal()
4919 if (rc > 0) n8 += add_list_to_class_internal(classbits, uchardptr, options, cb, in add_to_class_internal()
4920 PRIV(ucd_caseless_sets) + rc, oc); in add_to_class_internal()
10242 recurse_cache rc[RSCAN_CACHE_SIZE]; in pcre2_compile() local
10257 if (groupnumber == rc[p].groupnumber) in pcre2_compile()
10259 rgroup = rc[p].group; in pcre2_compile()
10267 if (groupnumber > rc[p].groupnumber) search_from = rc[p].group; in pcre2_compile()
10279 rc[start].groupnumber = groupnumber; in pcre2_compile()
10280 rc[start].group = rgroup; in pcre2_compile()
H A Dpcre2_convert.c1061 int i, rc; in pcre2_pattern_convert() local
1094 rc = PRIV(valid_utf)(pattern, plength, &erroroffset); in pcre2_pattern_convert()
1095 if (rc != 0) in pcre2_pattern_convert()
1098 return rc; in pcre2_pattern_convert()
1123 rc = convert_glob(options & ~PCRE2_CONVERT_GLOB, pattern, plength, utf, in pcre2_pattern_convert()
1129 rc = convert_posix(pattype, pattern, plength, utf, use_buffer, use_length, in pcre2_pattern_convert()
1138 if (rc != 0 || /* Error */ in pcre2_pattern_convert()
1141 return rc; in pcre2_pattern_convert()
H A Dpcre2_dfa_match.c2700 if (rc != 0) return rc; in internal_dfa_match()
2724 if (rc < 0 && rc != PCRE2_ERROR_NOMATCH) return rc; in internal_dfa_match()
2799 if (rc != 0) return rc; in internal_dfa_match()
2823 if (rc < 0 && rc != PCRE2_ERROR_NOMATCH) return rc; in internal_dfa_match()
2848 if (rc != 0) return rc; in internal_dfa_match()
2897 for (rc = rc*2 - 2; rc >= 0; rc -= 2) in internal_dfa_match()
2941 if (rc != 0) return rc; in internal_dfa_match()
3040 if (rc != 0) return rc; in internal_dfa_match()
3244 int rc; in pcre2_dfa_match() local
3922 match_data->rc = rc; in pcre2_dfa_match()
[all …]
H A Dpcre2_intmodedep.h663 int rc; /* The return code from the match */ member

Completed in 255 milliseconds

1234567