Home
last modified time | relevance | path

Searched refs:internal_match_data (Results 1 – 1 of 1) sorted by relevance

/PHP-8.3/ext/pcre/pcre2lib/
H A Dpcre2_substitute.c232 pcre2_match_data *internal_match_data = NULL; in pcre2_substitute() local
296 match_data = internal_match_data = in pcre2_substitute()
298 if (internal_match_data == NULL) return PCRE2_ERROR_NOMEMORY; in pcre2_substitute()
308 internal_match_data = pcre2_match_data_create(match_data->oveccount, in pcre2_substitute()
310 if (internal_match_data == NULL) return PCRE2_ERROR_NOMEMORY; in pcre2_substitute()
311 memcpy(internal_match_data, match_data, offsetof(pcre2_match_data, ovector) in pcre2_substitute()
313 internal_match_data->heapframes = NULL; in pcre2_substitute()
314 internal_match_data->heapframes_size = 0; in pcre2_substitute()
315 match_data = internal_match_data; in pcre2_substitute()
989 if (internal_match_data != NULL) pcre2_match_data_free(internal_match_data); in pcre2_substitute()

Completed in 5 milliseconds