Home | History | Annotate | Download | only in dist

Lines Matching full:callout

233 #define SET_PCRE_CALLOUT8(callout) \
234 pcre_callout = callout
320 #define SET_PCRE_CALLOUT16(callout) \
321 pcre16_callout = (int (*)(pcre16_callout_block *))callout
412 #define SET_PCRE_CALLOUT32(callout) \
413 pcre32_callout = (int (*)(pcre32_callout_block *))callout
537 #define SET_PCRE_CALLOUT(callout) \
539 SET_PCRE_CALLOUT32(callout); \
541 SET_PCRE_CALLOUT16(callout); \
543 SET_PCRE_CALLOUT8(callout)
770 #define SET_PCRE_CALLOUT(callout) \
772 G(SET_PCRE_CALLOUT,BITONE)(callout); \
774 G(SET_PCRE_CALLOUT,BITTWO)(callout)
1142 "callout error code",
2243 * Callout function *
2247 the match. Yield zero unless more callouts than the fail count, or the callout
2250 static int callout(pcre_callout_block *cb)
2257 fprintf(f, "Callout %d: last capture = %d\n",
2294 /* Always print appropriate indicators, with callout number if not already
2344 fprintf(outfile, "Callout data = %d\n", callout_data);
4513 SET_PCRE_CALLOUT(callout);
5045 support timing or playing with the match limit or callout data. */