Lines Matching refs:PCRE_G

85 	PCRE_G(error_code) = preg_code;  in ZEND_DECLARE_MODULE_GLOBALS()
261 if (zend_hash_find(&PCRE_G(pcre_cache), regex, regex_len+1, (void **)&pce) == SUCCESS) { in pcre_get_compiled_regex_cache()
267 zend_hash_clean(&PCRE_G(pcre_cache)); in pcre_get_compiled_regex_cache()
426 if (zend_hash_num_elements(&PCRE_G(pcre_cache)) == PCRE_CACHE_SIZE) { in pcre_get_compiled_regex_cache()
428 zend_hash_apply_with_argument(&PCRE_G(pcre_cache), pcre_clean_cache, &num_clean TSRMLS_CC); in pcre_get_compiled_regex_cache()
440 zend_hash_update(&PCRE_G(pcre_cache), regex, regex_len+1, (void *)&new_entry, in pcre_get_compiled_regex_cache()
594 extra->match_limit = PCRE_G(backtrack_limit); in php_pcre_match_impl()
595 extra->match_limit_recursion = PCRE_G(recursion_limit); in php_pcre_match_impl()
629 PCRE_G(error_code) = PHP_PCRE_NO_ERROR; in php_pcre_match_impl()
767 if (PCRE_G(error_code) == PHP_PCRE_NO_ERROR) { in php_pcre_match_impl()
1014 extra->match_limit = PCRE_G(backtrack_limit); in php_pcre_replace_impl()
1015 extra->match_limit_recursion = PCRE_G(recursion_limit); in php_pcre_replace_impl()
1057 PCRE_G(error_code) = PHP_PCRE_NO_ERROR; in php_pcre_replace_impl()
1487 extra->match_limit = PCRE_G(backtrack_limit); in php_pcre_split_impl()
1488 extra->match_limit_recursion = PCRE_G(recursion_limit); in php_pcre_split_impl()
1506 PCRE_G(error_code) = PHP_PCRE_NO_ERROR; in php_pcre_split_impl()
1754 extra->match_limit = PCRE_G(backtrack_limit); in php_pcre_grep_impl()
1755 extra->match_limit_recursion = PCRE_G(recursion_limit); in php_pcre_grep_impl()
1769 PCRE_G(error_code) = PHP_PCRE_NO_ERROR; in php_pcre_grep_impl()
1835 RETURN_LONG(PCRE_G(error_code)); in PHP_FUNCTION()