Lines Matching refs:PHPAPI
28 PHPAPI zend_string *php_pcre_replace(zend_string *regex, zend_string *subject_str, const char *subj…
29 PHPAPI pcre2_code* pcre_get_compiled_regex(zend_string *regex, uint32_t *capture_count);
30 PHPAPI pcre2_code* pcre_get_compiled_regex_ex(zend_string *regex, uint32_t *capture_count, uint32_t…
50 PHPAPI pcre_cache_entry* pcre_get_compiled_regex_cache(zend_string *regex);
51 PHPAPI pcre_cache_entry* pcre_get_compiled_regex_cache_ex(zend_string *regex, int locale_aware);
53 PHPAPI void php_pcre_match_impl(pcre_cache_entry *pce, zend_string *subject_str, zval *return_valu…
56 PHPAPI zend_string *php_pcre_replace_impl(pcre_cache_entry *pce, zend_string *subject_str, const ch…
59 PHPAPI void php_pcre_split_impl( pcre_cache_entry *pce, zend_string *subject_str, zval *return_va…
62 PHPAPI void php_pcre_grep_impl( pcre_cache_entry *pce, zval *input, zval *return_value,
65 PHPAPI pcre2_match_context *php_pcre_mctx(void);
66 PHPAPI pcre2_general_context *php_pcre_gctx(void);
67 PHPAPI pcre2_compile_context *php_pcre_cctx(void);
68 PHPAPI void php_pcre_pce_incref(pcre_cache_entry *);
69 PHPAPI void php_pcre_pce_decref(pcre_cache_entry *);
70 PHPAPI pcre2_code *php_pcre_pce_re(pcre_cache_entry *);
72 PHPAPI pcre2_match_data *php_pcre_create_match_data(uint32_t, pcre2_code *);
73 PHPAPI void php_pcre_free_match_data(pcre2_match_data *);
91 PHPAPI ZEND_EXTERN_MODULE_GLOBALS(pcre)