pcre_globals      122 ext/pcre/php_pcre.c 	zend_hash_init(&pcre_globals->pcre_cache, 0, NULL, php_free_pcre_cache, 1);
pcre_globals      123 ext/pcre/php_pcre.c 	pcre_globals->backtrack_limit = 0;
pcre_globals      124 ext/pcre/php_pcre.c 	pcre_globals->recursion_limit = 0;
pcre_globals      125 ext/pcre/php_pcre.c 	pcre_globals->error_code      = PHP_PCRE_NO_ERROR;
pcre_globals      131 ext/pcre/php_pcre.c 	zend_hash_destroy(&pcre_globals->pcre_cache);
pcre_globals      136 ext/pcre/php_pcre.c 	STD_PHP_INI_ENTRY("pcre.backtrack_limit", "1000000", PHP_INI_ALL, OnUpdateLong, backtrack_limit, zend_pcre_globals, pcre_globals)
pcre_globals      137 ext/pcre/php_pcre.c 	STD_PHP_INI_ENTRY("pcre.recursion_limit", "100000",  PHP_INI_ALL, OnUpdateLong, recursion_limit, zend_pcre_globals, pcre_globals)
pcre_globals      139 ext/pcre/php_pcre.c 	STD_PHP_INI_ENTRY("pcre.jit",             "1",       PHP_INI_ALL, OnUpdateBool, jit,             zend_pcre_globals, pcre_globals)