Home
last modified time | relevance | path

Searched refs:errcode (Results 1 – 1 of 1) sorted by last modified time

/unit/src/
H A Dnxt_pcre2.c26 int errcode; in nxt_regex_compile() local
56 &errcode, &erroffset, compile_ctx); in nxt_regex_compile()
60 ret = pcre2_get_error_message(errcode, (PCRE2_UCHAR *) err->msg, in nxt_regex_compile()
65 "error code: %d%Z", errcode); in nxt_regex_compile()
72 errcode = pcre2_jit_compile(re, PCRE2_JIT_COMPLETE); in nxt_regex_compile()
73 if (nxt_slow_path(errcode != 0 && errcode != PCRE2_ERROR_JIT_BADOPTION)) { in nxt_regex_compile()
74 ret = pcre2_get_error_message(errcode, (PCRE2_UCHAR *) err->msg, in nxt_regex_compile()
79 "error code: %d%Z", errcode); in nxt_regex_compile()