Home
last modified time | relevance | path

Searched refs:rc (Results 126 – 150 of 168) sorted by relevance

1234567

/PHP-8.1/ext/mysqli/tests/
H A D010.phpt24 $rc = mysqli_query($link, "CREATE TABLE test_bind_fetch(c1 float(3),
31 if (!$rc)
H A D013.phpt19 $rc = mysqli_query($link, "CREATE TABLE test_bind_result(c1 tinyint, c2 smallint,
24 if (!$rc)
H A D019.phpt19 $rc = mysqli_query($link,"CREATE TABLE insert_read(col1 tinyint, col2 smallint,
26 if (!$rc)
/PHP-8.1/Zend/
H A Dzend_types.h617 #define GC_SET_REFCOUNT(p, rc) zend_gc_set_refcount(&(p)->gc, rc) argument
620 #define GC_ADDREF_EX(p, rc) zend_gc_addref_ex(&(p)->gc, rc) argument
621 #define GC_DELREF_EX(p, rc) zend_gc_delref_ex(&(p)->gc, rc) argument
1129 #define Z_SET_REFCOUNT_P(pz, rc) zval_set_refcount_p(pz, rc) argument
1134 #define Z_SET_REFCOUNT(z, rc) Z_SET_REFCOUNT_P(&(z), rc) argument
1185 p->refcount = rc; in zend_gc_set_refcount()
1214 static zend_always_inline uint32_t zend_gc_addref_ex(zend_refcounted_h *p, uint32_t rc) { in zend_gc_addref_ex() argument
1216 p->refcount += rc; in zend_gc_addref_ex()
1222 p->refcount -= rc; in zend_gc_delref_ex()
1233 static zend_always_inline uint32_t zval_set_refcount_p(zval* pz, uint32_t rc) { in zval_set_refcount_p() argument
[all …]
/PHP-8.1/ext/intl/collator/
H A Dcollator_sort.c53 int rc = SUCCESS; in collator_regular_compare_function() local
114 rc = compare_function( result, norm1_p, norm2_p ); in collator_regular_compare_function()
129 return rc; in collator_regular_compare_function()
170 int rc = SUCCESS; in collator_icu_compare_function() local
184 return rc; in collator_icu_compare_function()
/PHP-8.1/ext/reflection/tests/
H A DReflectionClass_getInterfaces_003.phpt22 $rc = new ReflectionClass('C');
23 $a = $rc->getInterfaces();
H A DReflectionClass_getDefaultProperties_001.phpt68 $rc = new ReflectionClass($class);
70 print_r($rc->getStaticProperties());
72 print_r($rc->getDefaultProperties());
H A DReflectionClass_getProperty_003.phpt41 $rc = new ReflectionClass("C");
44 global $rc, $myC;
47 $rp = $rc->getProperty($name);
H A DReflectionClass_getProperty_004.phpt41 $rc = new ReflectionClass("C");
44 global $rc, $myC;
47 $rp = $rc->getProperty($name);
H A DReflectionClass_getInterfaces_001.phpt37 $rc = new ReflectionClass($class);
38 $interfaces = $rc->getInterfaces();
/PHP-8.1/ext/standard/tests/serialize/
H A Dserialization_objects_016.phpt2 Object serialization / unserialization: circular object with rc=1
/PHP-8.1/ext/pcre/pcre2lib/
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_match.c268 int rc; in do_callout() local
326 return rc; in do_callout()
6108 int rc; in pcre2_match() local
6360 return rc; in pcre2_match()
6479 if (!allow_invalid || match_data->rc > 0) return match_data->rc; in pcre2_match()
7087 switch(rc) in pcre2_match()
7142 rc = MATCH_NOMATCH; in pcre2_match()
7208 (rc == MATCH_NOMATCH || rc == PCRE2_ERROR_PARTIAL)) in pcre2_match()
7239 if (rc == 0) in pcre2_match()
7249 else if (rc < 0) in pcre2_match()
[all …]
/PHP-8.1/ext/standard/tests/assert/
H A Dassert_variation.phpt51 var_dump($rc=assert_options(ASSERT_CALLBACK, "c1"));
58 var_dump($rc = assert_options(ASSERT_CALLBACK,array("c1","assert")));
66 var_dump($rc=assert_options(ASSERT_CALLBACK,array(&$o,"assert")));
/PHP-8.1/ext/filter/
H A Dlogical_filters.c480 int rc; in php_filter_validate_regexp() local
498rc = pcre2_match(re, (PCRE2_SPTR)Z_STRVAL_P(value), Z_STRLEN_P(value), 0, 0, match_data, php_pcre_… in php_filter_validate_regexp()
502 if (rc < 0) { in php_filter_validate_regexp()
686 int rc; in php_filter_validate_email() local
715rc = pcre2_match(re, (PCRE2_SPTR)Z_STRVAL_P(value), Z_STRLEN_P(value), 0, 0, match_data, php_pcre_… in php_filter_validate_email()
719 if (rc < 0) { in php_filter_validate_email()
/PHP-8.1/win32/build/
H A DMakefile39 MCFILE=$(BUILD_DIR)\wsyslog.rc
130 $(PHPDLL_RES): win32\build\template.rc
134 win32\build\template.rc
177 …_DIR)\*.ilk $(BUILD_DIR)\*.pdb $(BUILD_DIR)\*.exp $(PHPDEF) $(BUILD_DIR)\*.rc $(BUILD_DIR)\*.manif…
249 @copy win32\build\template.rc $(BUILD_DIR_DEV)\build\ /y >nul
H A DMakefile.phpize31 …_DIR)\*.ilk $(BUILD_DIR)\*.pdb $(BUILD_DIR)\*.exp $(PHPDEF) $(BUILD_DIR)\*.rc $(BUILD_DIR)\*.dbg $…
/PHP-8.1/ext/mbstring/
H A Dphp_mbregex.c458 php_mb_regex_t *retval = NULL, *rc = NULL; in php_mbregex_compile_pattern() local
469 rc = zend_hash_str_find_ptr(&MBREX(ht_rc), (char *)pattern, patlen); in php_mbregex_compile_pattern()
470 …if (!rc || onig_get_options(rc) != options || onig_get_encoding(rc) != enc || onig_get_syntax(rc) … in php_mbregex_compile_pattern()
476 if (rc == MBREX(search_re)) { in php_mbregex_compile_pattern()
482 retval = rc; in php_mbregex_compile_pattern()
/PHP-8.1/sapi/phpdbg/
H A Dphpdbg.init.d26 . /etc/rc.d/init.d/functions
/PHP-8.1/ext/opcache/
H A Dzend_accelerator_blacklist.c364 …int rc = pcre2_match(regexp_list_it->re, (PCRE2_SPTR)verify_path, verify_path_len, 0, 0, match_dat… local
365 if (rc >= 0) {
/PHP-8.1/ext/pcre/
H A Dphp_pcre.c625 int rc; in pcre_get_compiled_regex_cache_ex() local
826 rc = pcre2_jit_compile(re, PCRE2_JIT_COMPLETE); in pcre_get_compiled_regex_cache_ex()
827 if (EXPECTED(rc >= 0)) { in pcre_get_compiled_regex_cache_ex()
832 } else if (rc == PCRE2_ERROR_NOMEMORY) { in pcre_get_compiled_regex_cache_ex()
839 pcre2_get_error_message(rc, error, sizeof(error)); in pcre_get_compiled_regex_cache_ex()
864 if (rc < 0) { in pcre_get_compiled_regex_cache_ex()
873 rc = pcre2_pattern_info(re, PCRE2_INFO_NAMECOUNT, &new_entry.name_count); in pcre_get_compiled_regex_cache_ex()
874 if (rc < 0) { in pcre_get_compiled_regex_cache_ex()
956 int rc = 0; in php_pcre_create_match_data() local
960 rc = pcre2_pattern_info(re, PCRE2_INFO_CAPTURECOUNT, &capture_count); in php_pcre_create_match_data()
[all …]
/PHP-8.1/ext/sqlite3/
H A Dsqlite3.c102 int rc; in PHP_METHOD() local
132 rc = sqlite3_open_v2(fullpath, &(db_obj->db), flags, NULL); in PHP_METHOD()
133 if (rc != SQLITE_OK) { in PHP_METHOD()
1341 int rc; // Return code in PHP_METHOD() local
1358 rc = sqlite3_backup_step(dbBackup, -1); in PHP_METHOD()
1359 } while (rc == SQLITE_OK); in PHP_METHOD()
1362 rc = sqlite3_backup_finish(dbBackup); in PHP_METHOD()
1365 rc = sqlite3_errcode(source_obj->db); in PHP_METHOD()
1368 if (rc != SQLITE_OK) { in PHP_METHOD()
1369 if (rc == SQLITE_BUSY) { in PHP_METHOD()
[all …]
/PHP-8.1/ext/opcache/jit/
H A Dzend_jit_vm_helpers.c580 int rc; local
861 rc = handler(ZEND_OPCODE_HANDLER_ARGS_PASSTHRU);
862 if (rc != 0) {
863 if (rc < 0) {
870 rc = 0;
893 if (rc == 0) {
895 } else if (rc == 1) {
/PHP-8.1/ext/fileinfo/
H A Dlibmagic.patch573 - if (rc) {
1420 int rc;
1682 - int rc;
2240 - int rc, rv = -1;
2243 - if (rc) {
2319 - if (rx->rc == 0)
3230 - if (rc) {
3237 - rv = !rc;
3371 - int rc;
3386 - if (rc) {
[all …]
/PHP-8.1/ext/gd/
H A Dgd.c1214 RECT rc = {0}; in PHP_FUNCTION() local
1237 GetClientRect(window, &rc); in PHP_FUNCTION()
1238 Width = rc.right; in PHP_FUNCTION()
1239 Height = rc.bottom; in PHP_FUNCTION()
1242 Width = rc.right - rc.left; in PHP_FUNCTION()
1243 Height = rc.bottom - rc.top; in PHP_FUNCTION()
1282 RECT rc = {0}; in PHP_FUNCTION() local
1299 GetWindowRect(window, &rc); in PHP_FUNCTION()
1300 Width = rc.right - rc.left; in PHP_FUNCTION()
1301 Height = rc.bottom - rc.top; in PHP_FUNCTION()
[all …]

Completed in 120 milliseconds

1234567