Home
last modified time | relevance | path

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

1234567

/PHP-7.4/ext/reflection/tests/
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();
H A DReflectionClass_getProperty_003.phpt41 $rc = new ReflectionClass("C");
44 global $rc, $myC;
47 $rp = $rc->getProperty($name);
H A DReflectionClass_toString_001.phpt8 $rc = new ReflectionClass("ReflectionClass");
9 echo $rc;
/PHP-7.4/win32/build/
H A DMakefile.phpize31 …_DIR)\*.ilk $(BUILD_DIR)\*.pdb $(BUILD_DIR)\*.exp $(PHPDEF) $(BUILD_DIR)\*.rc $(BUILD_DIR)\*.dbg $…
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg.init.d26 . /etc/rc.d/init.d/functions
H A Dphpdbg_out.c1269 int rc = 0; in phpdbg_rlog_internal() local
1287 rc = phpdbg_xml_vasprintf(&outbuf, format, 0, args); in phpdbg_rlog_internal()
1290 rc = phpdbg_mixed_write(fd, outbuf, rc); in phpdbg_rlog_internal()
1299 return rc; in phpdbg_rlog_internal()
/PHP-7.4/ext/spl/
H A Dspl_dllist.c42 #define SPL_LLIST_DELREF(elem) if(!--(elem)->rc) { \
46 #define SPL_LLIST_CHECK_DELREF(elem) if((elem) && !--(elem)->rc) { \
50 #define SPL_LLIST_ADDREF(elem) (elem)->rc++
51 #define SPL_LLIST_CHECK_ADDREF(elem) if(elem) (elem)->rc++
65 int rc; member
197 elem->rc = 1; in spl_ptr_llist_unshift()
221 elem->rc = 1; in spl_ptr_llist_push()
1325 elem->rc = 1; in SPL_METHOD()
H A Dspl_iterators.c2007 int rc; in SPL_METHOD() local
2042rc = pcre2_match(re, (PCRE2_SPTR)ZSTR_VAL(subject), ZSTR_LEN(subject), 0, 0, match_data, php_pcre_… in SPL_METHOD()
2043 RETVAL_BOOL(rc >= 0); in SPL_METHOD()
/PHP-7.4/ext/mbstring/
H A Dphp_mbregex.c457 php_mb_regex_t *retval = NULL, *rc = NULL; in php_mbregex_compile_pattern() local
467 rc = zend_hash_str_find_ptr(&MBREX(ht_rc), (char *)pattern, patlen); in php_mbregex_compile_pattern()
468 …if (!rc || onig_get_options(rc) != options || onig_get_encoding(rc) != enc || onig_get_syntax(rc) … in php_mbregex_compile_pattern()
474 if (rc == MBREX(search_re)) { in php_mbregex_compile_pattern()
480 retval = rc; in php_mbregex_compile_pattern()
/PHP-7.4/ext/opcache/
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/
H A Dphp_pcre.c598 int rc; in pcre_get_compiled_regex_cache_ex() local
810 rc = pcre2_jit_compile(re, PCRE2_JIT_COMPLETE); in pcre_get_compiled_regex_cache_ex()
811 if (EXPECTED(rc >= 0)) { in pcre_get_compiled_regex_cache_ex()
816 } else if (rc == PCRE2_ERROR_NOMEMORY) { in pcre_get_compiled_regex_cache_ex()
823 pcre2_get_error_message(rc, error, sizeof(error)); in pcre_get_compiled_regex_cache_ex()
849 if (rc < 0) { in pcre_get_compiled_regex_cache_ex()
858 rc = pcre2_pattern_info(re, PCRE2_INFO_NAMECOUNT, &new_entry.name_count); in pcre_get_compiled_regex_cache_ex()
859 if (rc < 0) { in pcre_get_compiled_regex_cache_ex()
944 int rc = 0; in php_pcre_create_match_data() local
948 rc = pcre2_pattern_info(re, PCRE2_INFO_CAPTURECOUNT, &capture_count); in php_pcre_create_match_data()
[all …]
/PHP-7.4/ext/fileinfo/
H A Dlibmagic.patch635 - if (rc) {
1533 int rc;
1836 - int rc;
2462 - int rc, rv = -1;
2465 - if (rc) {
2534 - if (rx->rc == 0)
3318 - if (rc) {
3325 - rv = !rc;
3499 - int rc;
3514 - if (rc) {
[all …]
/PHP-7.4/ext/sqlite3/
H A Dsqlite3.c107 int rc; in PHP_METHOD() local
137 rc = sqlite3_open_v2(fullpath, &(db_obj->db), flags, NULL); in PHP_METHOD()
138 if (rc != SQLITE_OK) { in PHP_METHOD()
1361 int rc; // Return code in PHP_METHOD() local
1378 rc = sqlite3_backup_step(dbBackup, -1); in PHP_METHOD()
1379 } while (rc == SQLITE_OK); in PHP_METHOD()
1382 rc = sqlite3_backup_finish(dbBackup); in PHP_METHOD()
1385 rc = sqlite3_errcode(source_obj->db); in PHP_METHOD()
1388 if (rc != SQLITE_OK) { in PHP_METHOD()
1389 if (rc == SQLITE_BUSY) { in PHP_METHOD()
[all …]
/PHP-7.4/ext/standard/
H A Dbrowscap.c559 int rc; in browser_reg_compare() local
614rc = pcre2_match(re, (PCRE2_SPTR)ZSTR_VAL(agent_name), ZSTR_LEN(agent_name), 0, 0, match_data, php… in browser_reg_compare()
616 if (PCRE2_ERROR_NOMATCH != rc) { in browser_reg_compare()
/PHP-7.4/ext/gd/
H A Dgd.c2011 RECT rc = {0}; in PHP_FUNCTION() local
2034 GetClientRect(window, &rc); in PHP_FUNCTION()
2035 Width = rc.right; in PHP_FUNCTION()
2036 Height = rc.bottom; in PHP_FUNCTION()
2039 Width = rc.right - rc.left; in PHP_FUNCTION()
2040 Height = rc.bottom - rc.top; in PHP_FUNCTION()
2080 RECT rc = {0}; in PHP_FUNCTION() local
2097 GetWindowRect(window, &rc); in PHP_FUNCTION()
2098 Width = rc.right - rc.left; in PHP_FUNCTION()
2099 Height = rc.bottom - rc.top; in PHP_FUNCTION()
[all …]
/PHP-7.4/sapi/cgi/
H A Dcgi_main.c536 int rc; in cgi_getenv_win32() local
543 rc = _wgetenv_s(&size, NULL, 0, keyw); in cgi_getenv_win32()
544 if (rc || 0 == size) { in cgi_getenv_win32()
551 rc = _wgetenv_s(&size, valw, size, keyw); in cgi_getenv_win32()
552 if (!rc) { in cgi_getenv_win32()
/PHP-7.4/ext/hash/
H A Dhash_whirlpool.c89 rc[r]; in WhirlpoolTransform()
H A Dphp_hash_whirlpool_tables.h24 static const uint64_t rc[R + 1] = { variable
/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_intmodedep.h663 int rc; /* The return code from the match */ member
/PHP-7.4/build/
H A Dshtool460 rc="$1"
464 exit $rc
/PHP-7.4/sapi/litespeed/
H A Dlsapilib.c819 int rc; in init_lve_ex() local
831 rc = (*fp_lve_instance_init)(NULL); in init_lve_ex()
832 s_lve = malloc(rc); in init_lve_ex()
834 rc = (*fp_lve_instance_init)(s_lve); in init_lve_ex()
835 if (rc != 0) in init_lve_ex()
/PHP-7.4/ext/zip/
H A Dphp_zip.c654 int rc; in php_zip_pcre() local
689rc = pcre2_match(re, (PCRE2_SPTR)ZSTR_VAL(namelist[i]), ZSTR_LEN(namelist[i]), 0, 0, match_data, m… in php_zip_pcre()
692 if (rc < 0) { in php_zip_pcre()
/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()

Completed in 348 milliseconds

1234567