Lines Matching refs:arg
35 isc_taskaction_t action, void *arg, size_t size)
46 ISC_EVENT_INIT(event, size, 0, NULL, type, action, arg,
54 isc_taskaction_t action, const void *arg, size_t size)
67 * Removing the const attribute from "arg" is the best of two
70 * which are not passing in an "arg" which starts its life as
72 * to not have "arg" prototyped as const (which is quite legitimate,
73 * because neither of those functions modify arg) can cause
75 * arg that they themselves never modify, such as with
76 * gcc -Wwrite-strings and using a string "arg".
78 DE_CONST(arg, deconst_arg);