Lines Matching refs:PCRE_G

85 	PCRE_G(error_code) = preg_code;  in ZEND_DECLARE_MODULE_GLOBALS()
262 if (zend_hash_find(&PCRE_G(pcre_cache), regex, regex_len+1, (void **)&pce) == SUCCESS) { in pcre_get_compiled_regex_cache()
268 zend_hash_clean(&PCRE_G(pcre_cache)); in pcre_get_compiled_regex_cache()
435 if (zend_hash_num_elements(&PCRE_G(pcre_cache)) == PCRE_CACHE_SIZE) { in pcre_get_compiled_regex_cache()
437 zend_hash_apply_with_argument(&PCRE_G(pcre_cache), pcre_clean_cache, &num_clean TSRMLS_CC); in pcre_get_compiled_regex_cache()
462 zend_hash_update(&PCRE_G(pcre_cache), regex, regex_len+1, (void *)&new_entry, in pcre_get_compiled_regex_cache()
620 extra->match_limit = PCRE_G(backtrack_limit); in php_pcre_match_impl()
621 extra->match_limit_recursion = PCRE_G(recursion_limit); in php_pcre_match_impl()
655 PCRE_G(error_code) = PHP_PCRE_NO_ERROR; in php_pcre_match_impl()
793 if (PCRE_G(error_code) == PHP_PCRE_NO_ERROR) { in php_pcre_match_impl()
1040 extra->match_limit = PCRE_G(backtrack_limit); in php_pcre_replace_impl()
1041 extra->match_limit_recursion = PCRE_G(recursion_limit); in php_pcre_replace_impl()
1083 PCRE_G(error_code) = PHP_PCRE_NO_ERROR; in php_pcre_replace_impl()
1513 extra->match_limit = PCRE_G(backtrack_limit); in php_pcre_split_impl()
1514 extra->match_limit_recursion = PCRE_G(recursion_limit); in php_pcre_split_impl()
1532 PCRE_G(error_code) = PHP_PCRE_NO_ERROR; in php_pcre_split_impl()
1780 extra->match_limit = PCRE_G(backtrack_limit); in php_pcre_grep_impl()
1781 extra->match_limit_recursion = PCRE_G(recursion_limit); in php_pcre_grep_impl()
1795 PCRE_G(error_code) = PHP_PCRE_NO_ERROR; in php_pcre_grep_impl()
1861 RETURN_LONG(PCRE_G(error_code)); in PHP_FUNCTION()