/third_party/FreeBSD/sys/kern/ |
H A D | kern_timeout.c | 41 #include <sys/callout.h> 46 * Note: Convert freebsd callout to Huawei LiteOS timeout, follow events would happen 52 callout_init_mtx(struct callout *c, struct pthread_mutex *mtx, int flag) in callout_init_mtx() 66 struct callout* callout = arg; in callout_function() local 68 (callout->callout_data.func)((uintptr_t)(callout->callout_data.arg)); in callout_function() 72 callout_reset(struct callout *c, int to_ticks, void (*func)(void *), void *arg) in callout_reset() 101 callout_stop(struct callout *c) in callout_stop() 112 callout_drain(struct callout * [all...] |
H A D | kern_condvar.c | 33 #include <sys/callout.h>
|
/third_party/FreeBSD/sys/sys/ |
H A D | callout.h | 36 * @(#)callout.h 8.2 (Berkeley) 1/21/94 60 void callout_init_mtx(struct callout* c, struct pthread_mutex* mtx, int flag); 61 void callout_reset(struct callout* c, int to_ticks, void (*func)(void *), void *arg); 62 void callout_stop(struct callout* c); 63 void callout_drain(struct callout* c); 64 void callout_pending(struct callout* c);
|
H A D | _callout.h | 36 * @(#)callout.h 8.2 (Berkeley) 1/21/94 53 struct callout { struct
|
/third_party/pcre2/pcre2/src/ |
H A D | pcre2_jit_match.c | 134 arguments.callout = mcontext->callout; in pcre2_jit_match() 146 arguments.callout = NULL; in pcre2_jit_match()
|
H A D | pcre2_context.c | 171 NULL, /* Substitute callout function */ 172 NULL, /* Substitute callout data */ 401 int (*callout)(pcre2_callout_block *, void *), void *callout_data) in pcre2_set_callout() 403 mcontext->callout = callout; in pcre2_set_callout()
|
H A D | pcre2_intmodedep.h | 585 int (*callout)(pcre2_callout_block *, void *); member 897 pcre2_callout_block *cb; /* Points to a callout block */ 899 int (*callout)(pcre2_callout_block *,void *); /* Callout function or NULL */ member 926 pcre2_callout_block *cb; /* Points to a callout block */ 928 int (*callout)(pcre2_callout_block *,void *); /* Callout function or NULL */ member
|
H A D | pcre2grep.c | 1210 printf("All callout scripts in patterns are supported." STDOUT_NL); in help() 1212 printf("Non-fork callout scripts in patterns are supported." STDOUT_NL); in help() 1929 $<digits> or ${<digits>} returns a capture number. However, if callout is TRUE, 1954 callout TRUE if in a callout (inhibits error messages) 1964 decode_dollar_escape(PCRE2_SPTR begin, PCRE2_SPTR string, BOOL callout, in decode_dollar_escape() argument 1976 if (!callout) in decode_dollar_escape() 1987 if (!callout) in decode_dollar_escape() 2010 /* In a callout, capture number 0 is not available. No error can be given, in decode_dollar_escape() 2013 if (callout in decode_dollar_escape() 2147 syntax_check_output_text(PCRE2_SPTR string, BOOL callout) syntax_check_output_text() argument 2182 display_output_text(PCRE2_SPTR string, BOOL callout, PCRE2_SPTR subject, PCRE2_SIZE *ovector, PCRE2_SIZE capture_top) display_output_text() argument [all...] |
H A D | pcre2_dfa_match.c | 335 * Process a callout * 338 /* This function is called to perform a callout. 347 lengthptr where to return the callout length 349 Returns: the return from the callout 363 if (mb->callout == NULL) return 0; /* No callout provided */ in do_callout_dfa() 365 /* Fixed fields in the callout block are set once and for all at the start of in do_callout_dfa() 389 return (mb->callout)(cb, mb->callout_data); in do_callout_dfa() 2794 /* Because of the way auto-callout works during compile, a callout ite in internal_dfa_match() [all...] |
H A D | pcre2_match.c | 250 * Process a callout * 255 OP_CALLOUT_STR. A callout block is allocated in pcre2_match() and initialized 261 lengthptr where to return the length of the callout item 263 Returns: the return from the callout 264 or 0 if no callout function exists 278 if (mb->callout == NULL) return 0; /* No callout function provided */ in do_callout() 284 compatibility, however, we pass capture_top and offset_vector to the callout as in do_callout() 305 if (*Fecode == OP_CALLOUT) /* Numerical callout */ in do_callout() 312 else /* String callout */ in do_callout() [all...] |
H A D | pcre2_jit_compile.c | 186 int (*callout)(pcre2_callout_block *, void *); member 9698 if (arguments->callout == NULL) in do_callout_jit() 9743 return (arguments->callout)(callout_block, arguments->callout_data); in do_callout_jit()
|
/third_party/FreeBSD/sys/dev/usb/ |
H A D | usbdi.h | 431 * The following is a wrapper for the callout structure to ease 435 struct callout co;
|
/third_party/pcre2/pcre2/ |
H A D | RunGrepTest.bat | 656 %pcre2grep% --help | %pcre2grep% -q "callout scripts in patterns are supported"
663 %pcre2grep% --help | %pcre2grep% -q "Non-script callout scripts in patterns are supported"
|
/third_party/rust/crates/libc/src/unix/nto/ |
H A D | neutrino.rs | 229 pub callout: syspage_entry_info,
|