Lines Matching refs:callout
233 #define SET_PCRE_CALLOUT8(callout) \ argument
234 pcre_callout = callout
320 #define SET_PCRE_CALLOUT16(callout) \ argument
321 pcre16_callout = (int (*)(pcre16_callout_block *))callout
412 #define SET_PCRE_CALLOUT32(callout) \ argument
413 pcre32_callout = (int (*)(pcre32_callout_block *))callout
537 #define SET_PCRE_CALLOUT(callout) \ argument
539 SET_PCRE_CALLOUT32(callout); \
541 SET_PCRE_CALLOUT16(callout); \
543 SET_PCRE_CALLOUT8(callout)
770 #define SET_PCRE_CALLOUT(callout) \ argument
772 G(SET_PCRE_CALLOUT,BITONE)(callout); \
774 G(SET_PCRE_CALLOUT,BITTWO)(callout)
2250 static int callout(pcre_callout_block *cb) in callout() function
4510 SET_PCRE_CALLOUT(callout); in main()