|
void *PRIV | memctl_malloc (size_t size, pcre2_memctl *memctl) |
|
PCRE2_EXP_DEFN pcre2_general_context *PCRE2_CALL_CONVENTION | pcre2_general_context_create (void *(*private_malloc)(size_t, void *), void(*private_free)(void *, void *), void *memory_data) |
|
const pcre2_compile_context | PRIV (default_compile_context) |
|
PCRE2_EXP_DEFN pcre2_compile_context *PCRE2_CALL_CONVENTION | pcre2_compile_context_create (pcre2_general_context *gcontext) |
|
const pcre2_match_context | PRIV (default_match_context) |
|
PCRE2_EXP_DEFN pcre2_match_context *PCRE2_CALL_CONVENTION | pcre2_match_context_create (pcre2_general_context *gcontext) |
|
const pcre2_convert_context | PRIV (default_convert_context) |
|
PCRE2_EXP_DEFN pcre2_convert_context *PCRE2_CALL_CONVENTION | pcre2_convert_context_create (pcre2_general_context *gcontext) |
|
PCRE2_EXP_DEFN pcre2_general_context *PCRE2_CALL_CONVENTION | pcre2_general_context_copy (pcre2_general_context *gcontext) |
|
PCRE2_EXP_DEFN pcre2_compile_context *PCRE2_CALL_CONVENTION | pcre2_compile_context_copy (pcre2_compile_context *ccontext) |
|
PCRE2_EXP_DEFN pcre2_match_context *PCRE2_CALL_CONVENTION | pcre2_match_context_copy (pcre2_match_context *mcontext) |
|
PCRE2_EXP_DEFN pcre2_convert_context *PCRE2_CALL_CONVENTION | pcre2_convert_context_copy (pcre2_convert_context *ccontext) |
|
PCRE2_EXP_DEFN void PCRE2_CALL_CONVENTION | pcre2_general_context_free (pcre2_general_context *gcontext) |
|
PCRE2_EXP_DEFN void PCRE2_CALL_CONVENTION | pcre2_compile_context_free (pcre2_compile_context *ccontext) |
|
PCRE2_EXP_DEFN void PCRE2_CALL_CONVENTION | pcre2_match_context_free (pcre2_match_context *mcontext) |
|
PCRE2_EXP_DEFN void PCRE2_CALL_CONVENTION | pcre2_convert_context_free (pcre2_convert_context *ccontext) |
|
PCRE2_EXP_DEFN int PCRE2_CALL_CONVENTION | pcre2_set_character_tables (pcre2_compile_context *ccontext, const uint8_t *tables) |
|
PCRE2_EXP_DEFN int PCRE2_CALL_CONVENTION | pcre2_set_bsr (pcre2_compile_context *ccontext, uint32_t value) |
|
PCRE2_EXP_DEFN int PCRE2_CALL_CONVENTION | pcre2_set_max_pattern_length (pcre2_compile_context *ccontext, PCRE2_SIZE length) |
|
PCRE2_EXP_DEFN int PCRE2_CALL_CONVENTION | pcre2_set_max_pattern_compiled_length (pcre2_compile_context *ccontext, PCRE2_SIZE length) |
|
PCRE2_EXP_DEFN int PCRE2_CALL_CONVENTION | pcre2_set_newline (pcre2_compile_context *ccontext, uint32_t newline) |
|
PCRE2_EXP_DEFN int PCRE2_CALL_CONVENTION | pcre2_set_max_varlookbehind (pcre2_compile_context *ccontext, uint32_t limit) |
|
PCRE2_EXP_DEFN int PCRE2_CALL_CONVENTION | pcre2_set_parens_nest_limit (pcre2_compile_context *ccontext, uint32_t limit) |
|
PCRE2_EXP_DEFN int PCRE2_CALL_CONVENTION | pcre2_set_compile_extra_options (pcre2_compile_context *ccontext, uint32_t options) |
|
PCRE2_EXP_DEFN int PCRE2_CALL_CONVENTION | pcre2_set_compile_recursion_guard (pcre2_compile_context *ccontext, int(*guard)(uint32_t, void *), void *user_data) |
|
PCRE2_EXP_DEFN int PCRE2_CALL_CONVENTION | pcre2_set_callout (pcre2_match_context *mcontext, int(*callout)(pcre2_callout_block *, void *), void *callout_data) |
|
PCRE2_EXP_DEFN int PCRE2_CALL_CONVENTION | pcre2_set_substitute_callout (pcre2_match_context *mcontext, int(*substitute_callout)(pcre2_substitute_callout_block *, void *), void *substitute_callout_data) |
|
PCRE2_EXP_DEFN int PCRE2_CALL_CONVENTION | pcre2_set_heap_limit (pcre2_match_context *mcontext, uint32_t limit) |
|
PCRE2_EXP_DEFN int PCRE2_CALL_CONVENTION | pcre2_set_match_limit (pcre2_match_context *mcontext, uint32_t limit) |
|
PCRE2_EXP_DEFN int PCRE2_CALL_CONVENTION | pcre2_set_depth_limit (pcre2_match_context *mcontext, uint32_t limit) |
|
PCRE2_EXP_DEFN int PCRE2_CALL_CONVENTION | pcre2_set_offset_limit (pcre2_match_context *mcontext, PCRE2_SIZE limit) |
|
PCRE2_EXP_DEFN int PCRE2_CALL_CONVENTION | pcre2_set_recursion_limit (pcre2_match_context *mcontext, uint32_t limit) |
|
PCRE2_EXP_DEFN int PCRE2_CALL_CONVENTION | pcre2_set_recursion_memory_management (pcre2_match_context *mcontext, void *(*mymalloc)(size_t, void *), void(*myfree)(void *, void *), void *mydata) |
|
PCRE2_EXP_DEFN int PCRE2_CALL_CONVENTION | pcre2_set_glob_separator (pcre2_convert_context *ccontext, uint32_t separator) |
|
PCRE2_EXP_DEFN int PCRE2_CALL_CONVENTION | pcre2_set_glob_escape (pcre2_convert_context *ccontext, uint32_t escape) |
|