Line | Count | Source (jump to first uncovered line) |
1 | | // SPDX-License-Identifier: ISC |
2 | | /* |
3 | | * Copyright (c) 2016 David Lamparter, for NetDEF, Inc. |
4 | | */ |
5 | | |
6 | | #ifndef _FRR_HOOK_H |
7 | | #define _FRR_HOOK_H |
8 | | |
9 | | #include <stdbool.h> |
10 | | |
11 | | #include "module.h" |
12 | | #include "memory.h" |
13 | | |
14 | | #ifdef __cplusplus |
15 | | extern "C" { |
16 | | #endif |
17 | | |
18 | | /* type-safe subscribable hook points |
19 | | * |
20 | | * where "type-safe" applies to the function pointers used for subscriptions |
21 | | * |
22 | | * overall usage: |
23 | | * - to create a hook: |
24 | | * |
25 | | * mydaemon.h: |
26 | | * #include "hook.h" |
27 | | * DECLARE_HOOK (some_update_event, (struct eventinfo *info), (info)); |
28 | | * |
29 | | * mydaemon.c: |
30 | | * DEFINE_HOOK (some_update_event, (struct eventinfo *info), (info)); |
31 | | * ... |
32 | | * hook_call (some_update_event, info) |
33 | | * |
34 | | * Note: the second and third macro args must be the hook function's |
35 | | * parameter list, with the same names for each parameter. The second |
36 | | * macro arg is with types (used for defining things), the third arg is |
37 | | * just the names (used for passing along parameters). |
38 | | * |
39 | | * Do not use parameter names starting with "hook", these can collide with |
40 | | * names used by the hook code itself. |
41 | | * |
42 | | * The return value is always "int" for now; hook_call will sum up the |
43 | | * return values from each registered user. Default is 0. |
44 | | * |
45 | | * There are no pre-defined semantics for the value, in most cases it is |
46 | | * ignored. For success/failure indication, 0 should be success, and |
47 | | * handlers should make sure to only return 0 or 1 (not -1 or other values). |
48 | | * |
49 | | * |
50 | | * - to use a hook / create a handler: |
51 | | * |
52 | | * #include "mydaemon.h" |
53 | | * int event_handler (struct eventinfo *info) { ... } |
54 | | * hook_register (some_update_event, event_handler); |
55 | | * |
56 | | * or, if you need an argument to be passed along (addonptr will be added |
57 | | * as first argument when calling the handler): |
58 | | * |
59 | | * #include "mydaemon.h" |
60 | | * int event_handler (void *addonptr, struct eventinfo *info) { ... } |
61 | | * hook_register_arg (some_update_event, event_handler, addonptr); |
62 | | * |
63 | | * (addonptr isn't typesafe, but that should be manageable.) |
64 | | * |
65 | | * Hooks also support a "priority" value for ordering registered calls |
66 | | * relative to each other. The priority is a signed integer where lower |
67 | | * values are called earlier. There is also "Koohs", which is hooks with |
68 | | * reverse priority ordering (for cleanup/deinit hooks, so you can use the |
69 | | * same priority value). |
70 | | * |
71 | | * Recommended priority value ranges are: |
72 | | * |
73 | | * -999 ... 0 ... 999 - main executable / daemon, or library |
74 | | * -1999 ... -1000 - modules registering calls that should run before |
75 | | * the daemon's bits |
76 | | * 1000 ... 1999 - modules calls that should run after daemon's |
77 | | * |
78 | | * Note: the default value is 1000, based on the following 2 expectations: |
79 | | * - most hook_register() usage will be in loadable modules |
80 | | * - usage of hook_register() in the daemon itself may need relative ordering |
81 | | * to itself, making an explicit value the expected case |
82 | | * |
83 | | * The priority value is passed as extra argument on hook_register_prio() / |
84 | | * hook_register_arg_prio(). Whether a hook runs in reverse is determined |
85 | | * solely by the code defining / calling the hook. (DECLARE_KOOH is actually |
86 | | * the same thing as DECLARE_HOOK, it's just there to make it obvious.) |
87 | | */ |
88 | | |
89 | | /* TODO: |
90 | | * - hook_unregister_all_module() |
91 | | * - introspection / CLI / debug |
92 | | * - testcases ;) |
93 | | * |
94 | | * For loadable modules, the idea is that hooks could be automatically |
95 | | * unregistered when a module is unloaded. |
96 | | * |
97 | | * It's also possible to add a constructor (MTYPE style) to DEFINE_HOOK, |
98 | | * which would make it possible for the CLI to show all hooks and all |
99 | | * registered handlers. |
100 | | */ |
101 | | |
102 | | struct hookent { |
103 | | struct hookent *next; |
104 | | void *hookfn; /* actually a function pointer */ |
105 | | void *hookarg; |
106 | | bool has_arg : 1; |
107 | | bool ent_on_heap : 1; |
108 | | bool ent_used : 1; |
109 | | int priority; |
110 | | struct frrmod_runtime *module; |
111 | | const char *fnname; |
112 | | }; |
113 | | |
114 | | struct hook { |
115 | | const char *name; |
116 | | struct hookent *entries; |
117 | | bool reverse; |
118 | | }; |
119 | | |
120 | | #define HOOK_DEFAULT_PRIORITY 1000 |
121 | | |
122 | | /* subscribe/add callback function to a hook |
123 | | * |
124 | | * always use hook_register(), which uses the static inline helper from |
125 | | * DECLARE_HOOK in order to get type safety |
126 | | */ |
127 | | extern void _hook_register(struct hook *hook, struct hookent *stackent, |
128 | | void *funcptr, void *arg, bool has_arg, |
129 | | struct frrmod_runtime *module, |
130 | | const char *funcname, int priority); |
131 | | |
132 | | /* most hook_register calls are not in a loop or similar and can use a |
133 | | * statically allocated "struct hookent" from the data segment |
134 | | */ |
135 | | #define _hook_reg_svar(hook, funcptr, arg, has_arg, module, funcname, prio) \ |
136 | 63 | do { \ |
137 | 63 | static struct hookent stack_hookent = {}; \ |
138 | 63 | _hook_register(hook, &stack_hookent, funcptr, arg, has_arg, \ |
139 | 63 | module, funcname, prio); \ |
140 | 63 | } while (0) |
141 | | |
142 | | #define hook_register(hookname, func) \ |
143 | 61 | _hook_reg_svar(&_hook_##hookname, _hook_typecheck_##hookname(func), \ |
144 | 61 | NULL, false, THIS_MODULE, #func, HOOK_DEFAULT_PRIORITY) |
145 | | #define hook_register_arg(hookname, func, arg) \ |
146 | | _hook_reg_svar(&_hook_##hookname, \ |
147 | | _hook_typecheck_arg_##hookname(func), arg, true, \ |
148 | | THIS_MODULE, #func, HOOK_DEFAULT_PRIORITY) |
149 | | #define hook_register_prio(hookname, prio, func) \ |
150 | 2 | _hook_reg_svar(&_hook_##hookname, _hook_typecheck_##hookname(func), \ |
151 | 2 | NULL, false, THIS_MODULE, #func, prio) |
152 | | #define hook_register_arg_prio(hookname, prio, func, arg) \ |
153 | | _hook_reg_svar(&_hook_##hookname, \ |
154 | | _hook_typecheck_arg_##hookname(func), arg, true, \ |
155 | | THIS_MODULE, #func, prio) |
156 | | |
157 | | extern void _hook_unregister(struct hook *hook, void *funcptr, void *arg, |
158 | | bool has_arg); |
159 | | #define hook_unregister(hookname, func) \ |
160 | 0 | _hook_unregister(&_hook_##hookname, _hook_typecheck_##hookname(func), \ |
161 | 0 | NULL, false) |
162 | | #define hook_unregister_arg(hookname, func, arg) \ |
163 | | _hook_unregister(&_hook_##hookname, \ |
164 | | _hook_typecheck_arg_##hookname(func), arg, true) |
165 | | |
166 | | /* invoke hooks |
167 | | * this is private (static) to the file that has the DEFINE_HOOK statement |
168 | | */ |
169 | 2.44k | #define hook_call(hookname, ...) hook_call_##hookname(__VA_ARGS__) |
170 | | |
171 | | /* helpers to add the void * arg */ |
172 | | #define HOOK_ADDDEF(...) (void *hookarg , ## __VA_ARGS__) |
173 | 0 | #define HOOK_ADDARG(...) (hookarg , ## __VA_ARGS__) |
174 | | |
175 | | /* and another helper to convert () into (void) to get a proper prototype */ |
176 | | #define _SKIP_10(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, ret, ...) ret |
177 | | #define _MAKE_VOID(...) _SKIP_10(, ##__VA_ARGS__, , , , , , , , , , void) |
178 | | |
179 | | #define HOOK_VOIDIFY(...) (_MAKE_VOID(__VA_ARGS__) __VA_ARGS__) |
180 | | |
181 | | /* use in header file - declares the hook and its arguments |
182 | | * usage: DECLARE_HOOK(my_hook, (int arg1, struct foo *arg2), (arg1, arg2)); |
183 | | * as above, "passlist" must use the same order and same names as "arglist" |
184 | | * |
185 | | * theoretically passlist is not necessary, but let's keep things simple and |
186 | | * use exact same args on DECLARE and DEFINE. |
187 | | */ |
188 | | #define DECLARE_HOOK(hookname, arglist, passlist) \ |
189 | | extern struct hook _hook_##hookname; \ |
190 | | __attribute__((unused)) static inline void * \ |
191 | | _hook_typecheck_##hookname(int(*funcptr) HOOK_VOIDIFY arglist) \ |
192 | 63 | { \ |
193 | 63 | return (void *)funcptr; \ |
194 | 63 | } \ Unexecuted instantiation: ospf_main.c:_hook_typecheck_zlog_init Unexecuted instantiation: ospf_main.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ospf_main.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ospf_main.c:_hook_typecheck_if_add Unexecuted instantiation: ospf_main.c:_hook_typecheck_if_del Unexecuted instantiation: ospf_main.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: ospf_main.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: ospf_main.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: ospf_main.c:_hook_typecheck_frr_early_init Unexecuted instantiation: ospf_main.c:_hook_typecheck_frr_late_init Unexecuted instantiation: ospf_main.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: ospf_main.c:_hook_typecheck_frr_config_post Unexecuted instantiation: ospf_main.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: ospf_main.c:_hook_typecheck_frr_fini Unexecuted instantiation: ospf_main.c:_hook_typecheck_ospf_vl_add Unexecuted instantiation: ospf_main.c:_hook_typecheck_ospf_vl_delete Unexecuted instantiation: ospf_main.c:_hook_typecheck_ospf_if_update Unexecuted instantiation: ospf_main.c:_hook_typecheck_ospf_if_delete Unexecuted instantiation: frr-ospf-route-map.yang.c:_hook_typecheck_if_add Unexecuted instantiation: frr-ospf-route-map.yang.c:_hook_typecheck_if_del Unexecuted instantiation: frr-ospf-route-map.yang.c:_hook_typecheck_zlog_init Unexecuted instantiation: frr-ospf-route-map.yang.c:_hook_typecheck_zlog_fini Unexecuted instantiation: frr-ospf-route-map.yang.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ospf_bfd.c:_hook_typecheck_zlog_init Unexecuted instantiation: ospf_bfd.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ospf_bfd.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ospf_bfd.c:_hook_typecheck_if_add Unexecuted instantiation: ospf_bfd.c:_hook_typecheck_if_del Unexecuted instantiation: ospf_bfd.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: ospf_bfd.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: ospf_bfd.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: ospf_bfd.c:_hook_typecheck_frr_early_init Unexecuted instantiation: ospf_bfd.c:_hook_typecheck_frr_late_init Unexecuted instantiation: ospf_bfd.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: ospf_bfd.c:_hook_typecheck_frr_config_post Unexecuted instantiation: ospf_bfd.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: ospf_bfd.c:_hook_typecheck_frr_fini Unexecuted instantiation: ospf_bfd.c:_hook_typecheck_ospf_vl_add Unexecuted instantiation: ospf_bfd.c:_hook_typecheck_ospf_vl_delete Unexecuted instantiation: ospf_bfd.c:_hook_typecheck_ospf_if_update Unexecuted instantiation: ospf_bfd.c:_hook_typecheck_ospf_if_delete Unexecuted instantiation: ospf_bfd.c:_hook_typecheck_ospf_nsm_change Unexecuted instantiation: ospf_dump.c:_hook_typecheck_zlog_init Unexecuted instantiation: ospf_dump.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ospf_dump.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ospf_dump.c:_hook_typecheck_if_add Unexecuted instantiation: ospf_dump.c:_hook_typecheck_if_del Unexecuted instantiation: ospf_dump.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: ospf_dump.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: ospf_dump.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: ospf_dump.c:_hook_typecheck_frr_early_init Unexecuted instantiation: ospf_dump.c:_hook_typecheck_frr_late_init Unexecuted instantiation: ospf_dump.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: ospf_dump.c:_hook_typecheck_frr_config_post Unexecuted instantiation: ospf_dump.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: ospf_dump.c:_hook_typecheck_frr_fini Unexecuted instantiation: ospf_dump.c:_hook_typecheck_ospf_vl_add Unexecuted instantiation: ospf_dump.c:_hook_typecheck_ospf_vl_delete Unexecuted instantiation: ospf_dump.c:_hook_typecheck_ospf_if_update Unexecuted instantiation: ospf_dump.c:_hook_typecheck_ospf_if_delete Unexecuted instantiation: ospf_dump.c:_hook_typecheck_ospf_ism_change Unexecuted instantiation: ospf_dump.c:_hook_typecheck_ospf_nsm_change Unexecuted instantiation: ospf_dump_api.c:_hook_typecheck_zlog_init Unexecuted instantiation: ospf_dump_api.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ospf_dump_api.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ospf_dump_api.c:_hook_typecheck_if_add Unexecuted instantiation: ospf_dump_api.c:_hook_typecheck_if_del Unexecuted instantiation: ospf_dump_api.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: ospf_dump_api.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: ospf_dump_api.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: ospf_dump_api.c:_hook_typecheck_frr_early_init Unexecuted instantiation: ospf_dump_api.c:_hook_typecheck_frr_late_init Unexecuted instantiation: ospf_dump_api.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: ospf_dump_api.c:_hook_typecheck_frr_config_post Unexecuted instantiation: ospf_dump_api.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: ospf_dump_api.c:_hook_typecheck_frr_fini Unexecuted instantiation: ospf_dump_api.c:_hook_typecheck_ospf_nsm_change Unexecuted instantiation: ospf_dump_api.c:_hook_typecheck_ospf_ism_change Unexecuted instantiation: ospf_errors.c:_hook_typecheck_zlog_init Unexecuted instantiation: ospf_errors.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ospf_errors.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ospf_errors.c:_hook_typecheck_if_add Unexecuted instantiation: ospf_errors.c:_hook_typecheck_if_del Unexecuted instantiation: ospf_errors.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: ospf_errors.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: ospf_errors.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: ospf_errors.c:_hook_typecheck_frr_early_init Unexecuted instantiation: ospf_errors.c:_hook_typecheck_frr_late_init Unexecuted instantiation: ospf_errors.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: ospf_errors.c:_hook_typecheck_frr_config_post Unexecuted instantiation: ospf_errors.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: ospf_errors.c:_hook_typecheck_frr_fini ospf_interface.c:_hook_typecheck_if_add Line | Count | Source | 192 | 1 | { \ | 193 | 1 | return (void *)funcptr; \ | 194 | 1 | } \ |
ospf_interface.c:_hook_typecheck_if_del Line | Count | Source | 192 | 1 | { \ | 193 | 1 | return (void *)funcptr; \ | 194 | 1 | } \ |
Unexecuted instantiation: ospf_interface.c:_hook_typecheck_zlog_init Unexecuted instantiation: ospf_interface.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ospf_interface.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ospf_interface.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: ospf_interface.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: ospf_interface.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: ospf_interface.c:_hook_typecheck_frr_early_init Unexecuted instantiation: ospf_interface.c:_hook_typecheck_frr_late_init Unexecuted instantiation: ospf_interface.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: ospf_interface.c:_hook_typecheck_frr_config_post Unexecuted instantiation: ospf_interface.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: ospf_interface.c:_hook_typecheck_frr_fini Unexecuted instantiation: ospf_interface.c:_hook_typecheck_ospf_vl_add Unexecuted instantiation: ospf_interface.c:_hook_typecheck_ospf_vl_delete Unexecuted instantiation: ospf_interface.c:_hook_typecheck_ospf_if_update Unexecuted instantiation: ospf_interface.c:_hook_typecheck_ospf_if_delete Unexecuted instantiation: ospf_interface.c:_hook_typecheck_ospf_ism_change Unexecuted instantiation: ospf_interface.c:_hook_typecheck_ospf_nsm_change Unexecuted instantiation: ospf_lsa.c:_hook_typecheck_if_add Unexecuted instantiation: ospf_lsa.c:_hook_typecheck_if_del Unexecuted instantiation: ospf_lsa.c:_hook_typecheck_zlog_init Unexecuted instantiation: ospf_lsa.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ospf_lsa.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ospf_lsa.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: ospf_lsa.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: ospf_lsa.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: ospf_lsa.c:_hook_typecheck_frr_early_init Unexecuted instantiation: ospf_lsa.c:_hook_typecheck_frr_late_init Unexecuted instantiation: ospf_lsa.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: ospf_lsa.c:_hook_typecheck_frr_config_post Unexecuted instantiation: ospf_lsa.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: ospf_lsa.c:_hook_typecheck_frr_fini Unexecuted instantiation: ospf_lsa.c:_hook_typecheck_ospf_vl_add Unexecuted instantiation: ospf_lsa.c:_hook_typecheck_ospf_vl_delete Unexecuted instantiation: ospf_lsa.c:_hook_typecheck_ospf_if_update Unexecuted instantiation: ospf_lsa.c:_hook_typecheck_ospf_if_delete Unexecuted instantiation: ospf_lsa.c:_hook_typecheck_ospf_ism_change Unexecuted instantiation: ospf_lsa.c:_hook_typecheck_ospf_nsm_change Unexecuted instantiation: ospf_lsdb.c:_hook_typecheck_if_add Unexecuted instantiation: ospf_lsdb.c:_hook_typecheck_if_del Unexecuted instantiation: ospf_lsdb.c:_hook_typecheck_zlog_init Unexecuted instantiation: ospf_lsdb.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ospf_lsdb.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ospf_lsdb.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: ospf_lsdb.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: ospf_lsdb.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: ospf_lsdb.c:_hook_typecheck_frr_early_init Unexecuted instantiation: ospf_lsdb.c:_hook_typecheck_frr_late_init Unexecuted instantiation: ospf_lsdb.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: ospf_lsdb.c:_hook_typecheck_frr_config_post Unexecuted instantiation: ospf_lsdb.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: ospf_lsdb.c:_hook_typecheck_frr_fini Unexecuted instantiation: ospf_neighbor.c:_hook_typecheck_zlog_init Unexecuted instantiation: ospf_neighbor.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ospf_neighbor.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ospf_neighbor.c:_hook_typecheck_if_add Unexecuted instantiation: ospf_neighbor.c:_hook_typecheck_if_del Unexecuted instantiation: ospf_neighbor.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: ospf_neighbor.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: ospf_neighbor.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: ospf_neighbor.c:_hook_typecheck_frr_early_init Unexecuted instantiation: ospf_neighbor.c:_hook_typecheck_frr_late_init Unexecuted instantiation: ospf_neighbor.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: ospf_neighbor.c:_hook_typecheck_frr_config_post Unexecuted instantiation: ospf_neighbor.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: ospf_neighbor.c:_hook_typecheck_frr_fini Unexecuted instantiation: ospf_neighbor.c:_hook_typecheck_ospf_vl_add Unexecuted instantiation: ospf_neighbor.c:_hook_typecheck_ospf_vl_delete Unexecuted instantiation: ospf_neighbor.c:_hook_typecheck_ospf_if_update Unexecuted instantiation: ospf_neighbor.c:_hook_typecheck_ospf_if_delete Unexecuted instantiation: ospf_neighbor.c:_hook_typecheck_ospf_nsm_change Unexecuted instantiation: ospf_network.c:_hook_typecheck_if_add Unexecuted instantiation: ospf_network.c:_hook_typecheck_if_del Unexecuted instantiation: ospf_network.c:_hook_typecheck_zlog_init Unexecuted instantiation: ospf_network.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ospf_network.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ospf_network.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: ospf_network.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: ospf_network.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: ospf_network.c:_hook_typecheck_frr_early_init Unexecuted instantiation: ospf_network.c:_hook_typecheck_frr_late_init Unexecuted instantiation: ospf_network.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: ospf_network.c:_hook_typecheck_frr_config_post Unexecuted instantiation: ospf_network.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: ospf_network.c:_hook_typecheck_frr_fini Unexecuted instantiation: ospf_network.c:_hook_typecheck_ospf_vl_add Unexecuted instantiation: ospf_network.c:_hook_typecheck_ospf_vl_delete Unexecuted instantiation: ospf_network.c:_hook_typecheck_ospf_if_update Unexecuted instantiation: ospf_network.c:_hook_typecheck_ospf_if_delete Unexecuted instantiation: ospf_nsm.c:_hook_typecheck_if_add Unexecuted instantiation: ospf_nsm.c:_hook_typecheck_if_del Unexecuted instantiation: ospf_nsm.c:_hook_typecheck_zlog_init Unexecuted instantiation: ospf_nsm.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ospf_nsm.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ospf_nsm.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: ospf_nsm.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: ospf_nsm.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: ospf_nsm.c:_hook_typecheck_frr_early_init Unexecuted instantiation: ospf_nsm.c:_hook_typecheck_frr_late_init Unexecuted instantiation: ospf_nsm.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: ospf_nsm.c:_hook_typecheck_frr_config_post Unexecuted instantiation: ospf_nsm.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: ospf_nsm.c:_hook_typecheck_frr_fini Unexecuted instantiation: ospf_nsm.c:_hook_typecheck_ospf_vl_add Unexecuted instantiation: ospf_nsm.c:_hook_typecheck_ospf_vl_delete Unexecuted instantiation: ospf_nsm.c:_hook_typecheck_ospf_if_update Unexecuted instantiation: ospf_nsm.c:_hook_typecheck_ospf_if_delete Unexecuted instantiation: ospf_nsm.c:_hook_typecheck_ospf_ism_change Unexecuted instantiation: ospf_nsm.c:_hook_typecheck_ospf_nsm_change Unexecuted instantiation: ospf_opaque.c:_hook_typecheck_if_add Unexecuted instantiation: ospf_opaque.c:_hook_typecheck_if_del Unexecuted instantiation: ospf_opaque.c:_hook_typecheck_zlog_init Unexecuted instantiation: ospf_opaque.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ospf_opaque.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ospf_opaque.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: ospf_opaque.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: ospf_opaque.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: ospf_opaque.c:_hook_typecheck_frr_early_init Unexecuted instantiation: ospf_opaque.c:_hook_typecheck_frr_late_init Unexecuted instantiation: ospf_opaque.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: ospf_opaque.c:_hook_typecheck_frr_config_post Unexecuted instantiation: ospf_opaque.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: ospf_opaque.c:_hook_typecheck_frr_fini Unexecuted instantiation: ospf_opaque.c:_hook_typecheck_ospf_vl_add Unexecuted instantiation: ospf_opaque.c:_hook_typecheck_ospf_vl_delete Unexecuted instantiation: ospf_opaque.c:_hook_typecheck_ospf_if_update Unexecuted instantiation: ospf_opaque.c:_hook_typecheck_ospf_if_delete Unexecuted instantiation: ospf_opaque.c:_hook_typecheck_ospf_ism_change Unexecuted instantiation: ospf_opaque.c:_hook_typecheck_ospf_nsm_change Unexecuted instantiation: ospf_packet.c:_hook_typecheck_if_add Unexecuted instantiation: ospf_packet.c:_hook_typecheck_if_del Unexecuted instantiation: ospf_packet.c:_hook_typecheck_zlog_init Unexecuted instantiation: ospf_packet.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ospf_packet.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ospf_packet.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: ospf_packet.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: ospf_packet.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: ospf_packet.c:_hook_typecheck_frr_early_init Unexecuted instantiation: ospf_packet.c:_hook_typecheck_frr_late_init Unexecuted instantiation: ospf_packet.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: ospf_packet.c:_hook_typecheck_frr_config_post Unexecuted instantiation: ospf_packet.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: ospf_packet.c:_hook_typecheck_frr_fini Unexecuted instantiation: ospf_packet.c:_hook_typecheck_ospf_vl_add Unexecuted instantiation: ospf_packet.c:_hook_typecheck_ospf_vl_delete Unexecuted instantiation: ospf_packet.c:_hook_typecheck_ospf_if_update Unexecuted instantiation: ospf_packet.c:_hook_typecheck_ospf_if_delete Unexecuted instantiation: ospf_packet.c:_hook_typecheck_ospf_ism_change Unexecuted instantiation: ospf_packet.c:_hook_typecheck_ospf_nsm_change Unexecuted instantiation: ospf_ri.c:_hook_typecheck_if_add Unexecuted instantiation: ospf_ri.c:_hook_typecheck_if_del Unexecuted instantiation: ospf_ri.c:_hook_typecheck_zlog_init Unexecuted instantiation: ospf_ri.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ospf_ri.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ospf_ri.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: ospf_ri.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: ospf_ri.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: ospf_ri.c:_hook_typecheck_frr_early_init Unexecuted instantiation: ospf_ri.c:_hook_typecheck_frr_late_init Unexecuted instantiation: ospf_ri.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: ospf_ri.c:_hook_typecheck_frr_config_post Unexecuted instantiation: ospf_ri.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: ospf_ri.c:_hook_typecheck_frr_fini Unexecuted instantiation: ospf_ri.c:_hook_typecheck_ospf_vl_add Unexecuted instantiation: ospf_ri.c:_hook_typecheck_ospf_vl_delete Unexecuted instantiation: ospf_ri.c:_hook_typecheck_ospf_if_update Unexecuted instantiation: ospf_ri.c:_hook_typecheck_ospf_if_delete Unexecuted instantiation: ospf_ri.c:_hook_typecheck_ospf_ism_change Unexecuted instantiation: ospf_ri.c:_hook_typecheck_ospf_nsm_change Unexecuted instantiation: ospf_routemap.c:_hook_typecheck_if_add Unexecuted instantiation: ospf_routemap.c:_hook_typecheck_if_del Unexecuted instantiation: ospf_routemap.c:_hook_typecheck_zlog_init Unexecuted instantiation: ospf_routemap.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ospf_routemap.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ospf_routemap.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: ospf_routemap.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: ospf_routemap.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: ospf_routemap.c:_hook_typecheck_frr_early_init Unexecuted instantiation: ospf_routemap.c:_hook_typecheck_frr_late_init Unexecuted instantiation: ospf_routemap.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: ospf_routemap.c:_hook_typecheck_frr_config_post Unexecuted instantiation: ospf_routemap.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: ospf_routemap.c:_hook_typecheck_frr_fini Unexecuted instantiation: ospf_routemap.c:_hook_typecheck_ospf_vl_add Unexecuted instantiation: ospf_routemap.c:_hook_typecheck_ospf_vl_delete Unexecuted instantiation: ospf_routemap.c:_hook_typecheck_ospf_if_update Unexecuted instantiation: ospf_routemap.c:_hook_typecheck_ospf_if_delete Unexecuted instantiation: ospf_routemap_nb.c:_hook_typecheck_if_add Unexecuted instantiation: ospf_routemap_nb.c:_hook_typecheck_if_del Unexecuted instantiation: ospf_routemap_nb.c:_hook_typecheck_zlog_init Unexecuted instantiation: ospf_routemap_nb.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ospf_routemap_nb.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ospf_routemap_nb.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: ospf_routemap_nb.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: ospf_routemap_nb.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: ospf_routemap_nb.c:_hook_typecheck_frr_early_init Unexecuted instantiation: ospf_routemap_nb.c:_hook_typecheck_frr_late_init Unexecuted instantiation: ospf_routemap_nb.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: ospf_routemap_nb.c:_hook_typecheck_frr_config_post Unexecuted instantiation: ospf_routemap_nb.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: ospf_routemap_nb.c:_hook_typecheck_frr_fini Unexecuted instantiation: ospf_routemap_nb_config.c:_hook_typecheck_zlog_init Unexecuted instantiation: ospf_routemap_nb_config.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ospf_routemap_nb_config.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ospf_routemap_nb_config.c:_hook_typecheck_if_add Unexecuted instantiation: ospf_routemap_nb_config.c:_hook_typecheck_if_del Unexecuted instantiation: ospf_routemap_nb_config.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: ospf_routemap_nb_config.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: ospf_routemap_nb_config.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: ospf_routemap_nb_config.c:_hook_typecheck_frr_early_init Unexecuted instantiation: ospf_routemap_nb_config.c:_hook_typecheck_frr_late_init Unexecuted instantiation: ospf_routemap_nb_config.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: ospf_routemap_nb_config.c:_hook_typecheck_frr_config_post Unexecuted instantiation: ospf_routemap_nb_config.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: ospf_routemap_nb_config.c:_hook_typecheck_frr_fini Unexecuted instantiation: ospf_spf.c:_hook_typecheck_if_add Unexecuted instantiation: ospf_spf.c:_hook_typecheck_if_del Unexecuted instantiation: ospf_spf.c:_hook_typecheck_zlog_init Unexecuted instantiation: ospf_spf.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ospf_spf.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ospf_spf.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: ospf_spf.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: ospf_spf.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: ospf_spf.c:_hook_typecheck_frr_early_init Unexecuted instantiation: ospf_spf.c:_hook_typecheck_frr_late_init Unexecuted instantiation: ospf_spf.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: ospf_spf.c:_hook_typecheck_frr_config_post Unexecuted instantiation: ospf_spf.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: ospf_spf.c:_hook_typecheck_frr_fini Unexecuted instantiation: ospf_spf.c:_hook_typecheck_ospf_vl_add Unexecuted instantiation: ospf_spf.c:_hook_typecheck_ospf_vl_delete Unexecuted instantiation: ospf_spf.c:_hook_typecheck_ospf_if_update Unexecuted instantiation: ospf_spf.c:_hook_typecheck_ospf_if_delete Unexecuted instantiation: ospf_spf.c:_hook_typecheck_ospf_ism_change Unexecuted instantiation: ospf_spf.c:_hook_typecheck_ospf_nsm_change Unexecuted instantiation: ospf_ti_lfa.c:_hook_typecheck_if_add Unexecuted instantiation: ospf_ti_lfa.c:_hook_typecheck_if_del Unexecuted instantiation: ospf_ti_lfa.c:_hook_typecheck_zlog_init Unexecuted instantiation: ospf_ti_lfa.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ospf_ti_lfa.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ospf_ti_lfa.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: ospf_ti_lfa.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: ospf_ti_lfa.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: ospf_ti_lfa.c:_hook_typecheck_frr_early_init Unexecuted instantiation: ospf_ti_lfa.c:_hook_typecheck_frr_late_init Unexecuted instantiation: ospf_ti_lfa.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: ospf_ti_lfa.c:_hook_typecheck_frr_config_post Unexecuted instantiation: ospf_ti_lfa.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: ospf_ti_lfa.c:_hook_typecheck_frr_fini Unexecuted instantiation: ospf_sr.c:_hook_typecheck_zlog_init Unexecuted instantiation: ospf_sr.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ospf_sr.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ospf_sr.c:_hook_typecheck_if_add Unexecuted instantiation: ospf_sr.c:_hook_typecheck_if_del Unexecuted instantiation: ospf_sr.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: ospf_sr.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: ospf_sr.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: ospf_sr.c:_hook_typecheck_frr_early_init Unexecuted instantiation: ospf_sr.c:_hook_typecheck_frr_late_init Unexecuted instantiation: ospf_sr.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: ospf_sr.c:_hook_typecheck_frr_config_post Unexecuted instantiation: ospf_sr.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: ospf_sr.c:_hook_typecheck_frr_fini Unexecuted instantiation: ospf_sr.c:_hook_typecheck_ospf_vl_add Unexecuted instantiation: ospf_sr.c:_hook_typecheck_ospf_vl_delete Unexecuted instantiation: ospf_sr.c:_hook_typecheck_ospf_if_update Unexecuted instantiation: ospf_sr.c:_hook_typecheck_ospf_if_delete Unexecuted instantiation: ospf_sr.c:_hook_typecheck_ospf_ism_change Unexecuted instantiation: ospf_sr.c:_hook_typecheck_ospf_nsm_change Unexecuted instantiation: ospf_te.c:_hook_typecheck_if_add Unexecuted instantiation: ospf_te.c:_hook_typecheck_if_del Unexecuted instantiation: ospf_te.c:_hook_typecheck_zlog_init Unexecuted instantiation: ospf_te.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ospf_te.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ospf_te.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: ospf_te.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: ospf_te.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: ospf_te.c:_hook_typecheck_frr_early_init Unexecuted instantiation: ospf_te.c:_hook_typecheck_frr_late_init Unexecuted instantiation: ospf_te.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: ospf_te.c:_hook_typecheck_frr_config_post Unexecuted instantiation: ospf_te.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: ospf_te.c:_hook_typecheck_frr_fini Unexecuted instantiation: ospf_te.c:_hook_typecheck_ospf_vl_add Unexecuted instantiation: ospf_te.c:_hook_typecheck_ospf_vl_delete Unexecuted instantiation: ospf_te.c:_hook_typecheck_ospf_if_update Unexecuted instantiation: ospf_te.c:_hook_typecheck_ospf_if_delete Unexecuted instantiation: ospf_te.c:_hook_typecheck_ospf_ism_change Unexecuted instantiation: ospf_te.c:_hook_typecheck_ospf_nsm_change Unexecuted instantiation: ospf_vty.c:_hook_typecheck_if_add Unexecuted instantiation: ospf_vty.c:_hook_typecheck_if_del Unexecuted instantiation: ospf_vty.c:_hook_typecheck_zlog_init Unexecuted instantiation: ospf_vty.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ospf_vty.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ospf_vty.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: ospf_vty.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: ospf_vty.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: ospf_vty.c:_hook_typecheck_frr_early_init Unexecuted instantiation: ospf_vty.c:_hook_typecheck_frr_late_init Unexecuted instantiation: ospf_vty.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: ospf_vty.c:_hook_typecheck_frr_config_post Unexecuted instantiation: ospf_vty.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: ospf_vty.c:_hook_typecheck_frr_fini Unexecuted instantiation: ospf_vty.c:_hook_typecheck_ospf_ism_change Unexecuted instantiation: ospf_vty.c:_hook_typecheck_ospf_vl_add Unexecuted instantiation: ospf_vty.c:_hook_typecheck_ospf_vl_delete Unexecuted instantiation: ospf_vty.c:_hook_typecheck_ospf_if_update Unexecuted instantiation: ospf_vty.c:_hook_typecheck_ospf_if_delete Unexecuted instantiation: ospf_vty.c:_hook_typecheck_ospf_nsm_change Unexecuted instantiation: ospf_zebra.c:_hook_typecheck_zlog_init Unexecuted instantiation: ospf_zebra.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ospf_zebra.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ospf_zebra.c:_hook_typecheck_if_add Unexecuted instantiation: ospf_zebra.c:_hook_typecheck_if_del Unexecuted instantiation: ospf_zebra.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: ospf_zebra.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: ospf_zebra.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: ospf_zebra.c:_hook_typecheck_frr_early_init Unexecuted instantiation: ospf_zebra.c:_hook_typecheck_frr_late_init Unexecuted instantiation: ospf_zebra.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: ospf_zebra.c:_hook_typecheck_frr_config_post Unexecuted instantiation: ospf_zebra.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: ospf_zebra.c:_hook_typecheck_frr_fini Unexecuted instantiation: ospf_zebra.c:_hook_typecheck_ospf_vl_add Unexecuted instantiation: ospf_zebra.c:_hook_typecheck_ospf_vl_delete Unexecuted instantiation: ospf_zebra.c:_hook_typecheck_ospf_if_update Unexecuted instantiation: ospf_zebra.c:_hook_typecheck_ospf_if_delete Unexecuted instantiation: ospf_zebra.c:_hook_typecheck_ospf_ism_change Unexecuted instantiation: ospf_zebra.c:_hook_typecheck_ospf_nsm_change Unexecuted instantiation: ospfd.c:_hook_typecheck_zlog_init Unexecuted instantiation: ospfd.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ospfd.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ospfd.c:_hook_typecheck_if_add Unexecuted instantiation: ospfd.c:_hook_typecheck_if_del Unexecuted instantiation: ospfd.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: ospfd.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: ospfd.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: ospfd.c:_hook_typecheck_frr_early_init Unexecuted instantiation: ospfd.c:_hook_typecheck_frr_late_init Unexecuted instantiation: ospfd.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: ospfd.c:_hook_typecheck_frr_config_post Unexecuted instantiation: ospfd.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: ospfd.c:_hook_typecheck_frr_fini Unexecuted instantiation: ospfd.c:_hook_typecheck_ospf_vl_add Unexecuted instantiation: ospfd.c:_hook_typecheck_ospf_vl_delete Unexecuted instantiation: ospfd.c:_hook_typecheck_ospf_if_update Unexecuted instantiation: ospfd.c:_hook_typecheck_ospf_if_delete Unexecuted instantiation: ospfd.c:_hook_typecheck_ospf_ism_change Unexecuted instantiation: ospfd.c:_hook_typecheck_ospf_nsm_change Unexecuted instantiation: ospf_gr_helper.c:_hook_typecheck_if_add Unexecuted instantiation: ospf_gr_helper.c:_hook_typecheck_if_del Unexecuted instantiation: ospf_gr_helper.c:_hook_typecheck_zlog_init Unexecuted instantiation: ospf_gr_helper.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ospf_gr_helper.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ospf_gr_helper.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: ospf_gr_helper.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: ospf_gr_helper.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: ospf_gr_helper.c:_hook_typecheck_frr_early_init Unexecuted instantiation: ospf_gr_helper.c:_hook_typecheck_frr_late_init Unexecuted instantiation: ospf_gr_helper.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: ospf_gr_helper.c:_hook_typecheck_frr_config_post Unexecuted instantiation: ospf_gr_helper.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: ospf_gr_helper.c:_hook_typecheck_frr_fini Unexecuted instantiation: ospf_gr_helper.c:_hook_typecheck_ospf_vl_add Unexecuted instantiation: ospf_gr_helper.c:_hook_typecheck_ospf_vl_delete Unexecuted instantiation: ospf_gr_helper.c:_hook_typecheck_ospf_if_update Unexecuted instantiation: ospf_gr_helper.c:_hook_typecheck_ospf_if_delete Unexecuted instantiation: ospf_gr_helper.c:_hook_typecheck_ospf_nsm_change Unexecuted instantiation: ospf_gr_helper.c:_hook_typecheck_ospf_ism_change Unexecuted instantiation: ospf_abr.c:_hook_typecheck_if_add Unexecuted instantiation: ospf_abr.c:_hook_typecheck_if_del Unexecuted instantiation: ospf_abr.c:_hook_typecheck_zlog_init Unexecuted instantiation: ospf_abr.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ospf_abr.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ospf_abr.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: ospf_abr.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: ospf_abr.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: ospf_abr.c:_hook_typecheck_frr_early_init Unexecuted instantiation: ospf_abr.c:_hook_typecheck_frr_late_init Unexecuted instantiation: ospf_abr.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: ospf_abr.c:_hook_typecheck_frr_config_post Unexecuted instantiation: ospf_abr.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: ospf_abr.c:_hook_typecheck_frr_fini Unexecuted instantiation: ospf_abr.c:_hook_typecheck_ospf_vl_add Unexecuted instantiation: ospf_abr.c:_hook_typecheck_ospf_vl_delete Unexecuted instantiation: ospf_abr.c:_hook_typecheck_ospf_if_update Unexecuted instantiation: ospf_abr.c:_hook_typecheck_ospf_if_delete Unexecuted instantiation: ospf_abr.c:_hook_typecheck_ospf_ism_change Unexecuted instantiation: ospf_abr.c:_hook_typecheck_ospf_nsm_change Unexecuted instantiation: ospf_apiserver.c:_hook_typecheck_if_add Unexecuted instantiation: ospf_apiserver.c:_hook_typecheck_if_del Unexecuted instantiation: ospf_apiserver.c:_hook_typecheck_zlog_init Unexecuted instantiation: ospf_apiserver.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ospf_apiserver.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ospf_apiserver.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: ospf_apiserver.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: ospf_apiserver.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: ospf_apiserver.c:_hook_typecheck_frr_early_init Unexecuted instantiation: ospf_apiserver.c:_hook_typecheck_frr_late_init Unexecuted instantiation: ospf_apiserver.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: ospf_apiserver.c:_hook_typecheck_frr_config_post Unexecuted instantiation: ospf_apiserver.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: ospf_apiserver.c:_hook_typecheck_frr_fini Unexecuted instantiation: ospf_apiserver.c:_hook_typecheck_ospf_vl_add Unexecuted instantiation: ospf_apiserver.c:_hook_typecheck_ospf_vl_delete Unexecuted instantiation: ospf_apiserver.c:_hook_typecheck_ospf_if_update Unexecuted instantiation: ospf_apiserver.c:_hook_typecheck_ospf_if_delete Unexecuted instantiation: ospf_apiserver.c:_hook_typecheck_ospf_ism_change Unexecuted instantiation: ospf_apiserver.c:_hook_typecheck_ospf_nsm_change Unexecuted instantiation: ospf_asbr.c:_hook_typecheck_if_add Unexecuted instantiation: ospf_asbr.c:_hook_typecheck_if_del Unexecuted instantiation: ospf_asbr.c:_hook_typecheck_zlog_init Unexecuted instantiation: ospf_asbr.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ospf_asbr.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ospf_asbr.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: ospf_asbr.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: ospf_asbr.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: ospf_asbr.c:_hook_typecheck_frr_early_init Unexecuted instantiation: ospf_asbr.c:_hook_typecheck_frr_late_init Unexecuted instantiation: ospf_asbr.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: ospf_asbr.c:_hook_typecheck_frr_config_post Unexecuted instantiation: ospf_asbr.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: ospf_asbr.c:_hook_typecheck_frr_fini Unexecuted instantiation: ospf_asbr.c:_hook_typecheck_ospf_vl_add Unexecuted instantiation: ospf_asbr.c:_hook_typecheck_ospf_vl_delete Unexecuted instantiation: ospf_asbr.c:_hook_typecheck_ospf_if_update Unexecuted instantiation: ospf_asbr.c:_hook_typecheck_ospf_if_delete Unexecuted instantiation: ospf_ase.c:_hook_typecheck_if_add Unexecuted instantiation: ospf_ase.c:_hook_typecheck_if_del Unexecuted instantiation: ospf_ase.c:_hook_typecheck_zlog_init Unexecuted instantiation: ospf_ase.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ospf_ase.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ospf_ase.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: ospf_ase.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: ospf_ase.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: ospf_ase.c:_hook_typecheck_frr_early_init Unexecuted instantiation: ospf_ase.c:_hook_typecheck_frr_late_init Unexecuted instantiation: ospf_ase.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: ospf_ase.c:_hook_typecheck_frr_config_post Unexecuted instantiation: ospf_ase.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: ospf_ase.c:_hook_typecheck_frr_fini Unexecuted instantiation: ospf_ase.c:_hook_typecheck_ospf_vl_add Unexecuted instantiation: ospf_ase.c:_hook_typecheck_ospf_vl_delete Unexecuted instantiation: ospf_ase.c:_hook_typecheck_ospf_if_update Unexecuted instantiation: ospf_ase.c:_hook_typecheck_ospf_if_delete Unexecuted instantiation: ospf_ase.c:_hook_typecheck_ospf_ism_change Unexecuted instantiation: ospf_ase.c:_hook_typecheck_ospf_nsm_change Unexecuted instantiation: ospf_ext.c:_hook_typecheck_if_add Unexecuted instantiation: ospf_ext.c:_hook_typecheck_if_del Unexecuted instantiation: ospf_ext.c:_hook_typecheck_zlog_init Unexecuted instantiation: ospf_ext.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ospf_ext.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ospf_ext.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: ospf_ext.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: ospf_ext.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: ospf_ext.c:_hook_typecheck_frr_early_init Unexecuted instantiation: ospf_ext.c:_hook_typecheck_frr_late_init Unexecuted instantiation: ospf_ext.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: ospf_ext.c:_hook_typecheck_frr_config_post Unexecuted instantiation: ospf_ext.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: ospf_ext.c:_hook_typecheck_frr_fini Unexecuted instantiation: ospf_ext.c:_hook_typecheck_ospf_vl_add Unexecuted instantiation: ospf_ext.c:_hook_typecheck_ospf_vl_delete Unexecuted instantiation: ospf_ext.c:_hook_typecheck_ospf_if_update Unexecuted instantiation: ospf_ext.c:_hook_typecheck_ospf_if_delete Unexecuted instantiation: ospf_ext.c:_hook_typecheck_ospf_ism_change Unexecuted instantiation: ospf_ext.c:_hook_typecheck_ospf_nsm_change Unexecuted instantiation: ospf_flood.c:_hook_typecheck_if_add Unexecuted instantiation: ospf_flood.c:_hook_typecheck_if_del Unexecuted instantiation: ospf_flood.c:_hook_typecheck_zlog_init Unexecuted instantiation: ospf_flood.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ospf_flood.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ospf_flood.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: ospf_flood.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: ospf_flood.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: ospf_flood.c:_hook_typecheck_frr_early_init Unexecuted instantiation: ospf_flood.c:_hook_typecheck_frr_late_init Unexecuted instantiation: ospf_flood.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: ospf_flood.c:_hook_typecheck_frr_config_post Unexecuted instantiation: ospf_flood.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: ospf_flood.c:_hook_typecheck_frr_fini Unexecuted instantiation: ospf_flood.c:_hook_typecheck_ospf_vl_add Unexecuted instantiation: ospf_flood.c:_hook_typecheck_ospf_vl_delete Unexecuted instantiation: ospf_flood.c:_hook_typecheck_ospf_if_update Unexecuted instantiation: ospf_flood.c:_hook_typecheck_ospf_if_delete Unexecuted instantiation: ospf_flood.c:_hook_typecheck_ospf_ism_change Unexecuted instantiation: ospf_flood.c:_hook_typecheck_ospf_nsm_change Unexecuted instantiation: ospf_gr.c:_hook_typecheck_zlog_init Unexecuted instantiation: ospf_gr.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ospf_gr.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ospf_gr.c:_hook_typecheck_if_add Unexecuted instantiation: ospf_gr.c:_hook_typecheck_if_del Unexecuted instantiation: ospf_gr.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: ospf_gr.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: ospf_gr.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: ospf_gr.c:_hook_typecheck_frr_early_init Unexecuted instantiation: ospf_gr.c:_hook_typecheck_frr_late_init Unexecuted instantiation: ospf_gr.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: ospf_gr.c:_hook_typecheck_frr_config_post Unexecuted instantiation: ospf_gr.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: ospf_gr.c:_hook_typecheck_frr_fini Unexecuted instantiation: ospf_gr.c:_hook_typecheck_ospf_ism_change Unexecuted instantiation: ospf_gr.c:_hook_typecheck_ospf_vl_add Unexecuted instantiation: ospf_gr.c:_hook_typecheck_ospf_vl_delete Unexecuted instantiation: ospf_gr.c:_hook_typecheck_ospf_if_update Unexecuted instantiation: ospf_gr.c:_hook_typecheck_ospf_if_delete Unexecuted instantiation: ospf_gr.c:_hook_typecheck_ospf_nsm_change Unexecuted instantiation: ospf_ia.c:_hook_typecheck_if_add Unexecuted instantiation: ospf_ia.c:_hook_typecheck_if_del Unexecuted instantiation: ospf_ia.c:_hook_typecheck_zlog_init Unexecuted instantiation: ospf_ia.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ospf_ia.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ospf_ia.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: ospf_ia.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: ospf_ia.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: ospf_ia.c:_hook_typecheck_frr_early_init Unexecuted instantiation: ospf_ia.c:_hook_typecheck_frr_late_init Unexecuted instantiation: ospf_ia.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: ospf_ia.c:_hook_typecheck_frr_config_post Unexecuted instantiation: ospf_ia.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: ospf_ia.c:_hook_typecheck_frr_fini Unexecuted instantiation: ospf_ia.c:_hook_typecheck_ospf_vl_add Unexecuted instantiation: ospf_ia.c:_hook_typecheck_ospf_vl_delete Unexecuted instantiation: ospf_ia.c:_hook_typecheck_ospf_if_update Unexecuted instantiation: ospf_ia.c:_hook_typecheck_ospf_if_delete Unexecuted instantiation: ospf_ia.c:_hook_typecheck_ospf_ism_change Unexecuted instantiation: ospf_ia.c:_hook_typecheck_ospf_nsm_change Unexecuted instantiation: ospf_ism.c:_hook_typecheck_if_add Unexecuted instantiation: ospf_ism.c:_hook_typecheck_if_del Unexecuted instantiation: ospf_ism.c:_hook_typecheck_zlog_init Unexecuted instantiation: ospf_ism.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ospf_ism.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ospf_ism.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: ospf_ism.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: ospf_ism.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: ospf_ism.c:_hook_typecheck_frr_early_init Unexecuted instantiation: ospf_ism.c:_hook_typecheck_frr_late_init Unexecuted instantiation: ospf_ism.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: ospf_ism.c:_hook_typecheck_frr_config_post Unexecuted instantiation: ospf_ism.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: ospf_ism.c:_hook_typecheck_frr_fini Unexecuted instantiation: ospf_ism.c:_hook_typecheck_ospf_vl_add Unexecuted instantiation: ospf_ism.c:_hook_typecheck_ospf_vl_delete Unexecuted instantiation: ospf_ism.c:_hook_typecheck_ospf_if_update Unexecuted instantiation: ospf_ism.c:_hook_typecheck_ospf_if_delete Unexecuted instantiation: ospf_ism.c:_hook_typecheck_ospf_ism_change Unexecuted instantiation: ospf_ism.c:_hook_typecheck_ospf_nsm_change Unexecuted instantiation: ospf_ldp_sync.c:_hook_typecheck_ospf_ism_change Unexecuted instantiation: ospf_ldp_sync.c:_hook_typecheck_if_add Unexecuted instantiation: ospf_ldp_sync.c:_hook_typecheck_if_del Unexecuted instantiation: ospf_ldp_sync.c:_hook_typecheck_zlog_init Unexecuted instantiation: ospf_ldp_sync.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ospf_ldp_sync.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ospf_ldp_sync.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: ospf_ldp_sync.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: ospf_ldp_sync.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: ospf_ldp_sync.c:_hook_typecheck_frr_early_init Unexecuted instantiation: ospf_ldp_sync.c:_hook_typecheck_frr_late_init Unexecuted instantiation: ospf_ldp_sync.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: ospf_ldp_sync.c:_hook_typecheck_frr_config_post Unexecuted instantiation: ospf_ldp_sync.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: ospf_ldp_sync.c:_hook_typecheck_frr_fini Unexecuted instantiation: ospf_ldp_sync.c:_hook_typecheck_ospf_vl_add Unexecuted instantiation: ospf_ldp_sync.c:_hook_typecheck_ospf_vl_delete Unexecuted instantiation: ospf_ldp_sync.c:_hook_typecheck_ospf_if_update Unexecuted instantiation: ospf_ldp_sync.c:_hook_typecheck_ospf_if_delete Unexecuted instantiation: ospf_route.c:_hook_typecheck_if_add Unexecuted instantiation: ospf_route.c:_hook_typecheck_if_del Unexecuted instantiation: ospf_route.c:_hook_typecheck_zlog_init Unexecuted instantiation: ospf_route.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ospf_route.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ospf_route.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: ospf_route.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: ospf_route.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: ospf_route.c:_hook_typecheck_frr_early_init Unexecuted instantiation: ospf_route.c:_hook_typecheck_frr_late_init Unexecuted instantiation: ospf_route.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: ospf_route.c:_hook_typecheck_frr_config_post Unexecuted instantiation: ospf_route.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: ospf_route.c:_hook_typecheck_frr_fini Unexecuted instantiation: ospf_route.c:_hook_typecheck_ospf_vl_add Unexecuted instantiation: ospf_route.c:_hook_typecheck_ospf_vl_delete Unexecuted instantiation: ospf_route.c:_hook_typecheck_ospf_if_update Unexecuted instantiation: ospf_route.c:_hook_typecheck_ospf_if_delete Unexecuted instantiation: ospf_api.c:_hook_typecheck_if_add Unexecuted instantiation: ospf_api.c:_hook_typecheck_if_del Unexecuted instantiation: ospf_api.c:_hook_typecheck_zlog_init Unexecuted instantiation: ospf_api.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ospf_api.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ospf_api.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: ospf_api.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: ospf_api.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: ospf_api.c:_hook_typecheck_frr_early_init Unexecuted instantiation: ospf_api.c:_hook_typecheck_frr_late_init Unexecuted instantiation: ospf_api.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: ospf_api.c:_hook_typecheck_frr_config_post Unexecuted instantiation: ospf_api.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: ospf_api.c:_hook_typecheck_frr_fini Unexecuted instantiation: ospf_api.c:_hook_typecheck_ospf_vl_add Unexecuted instantiation: ospf_api.c:_hook_typecheck_ospf_vl_delete Unexecuted instantiation: ospf_api.c:_hook_typecheck_ospf_if_update Unexecuted instantiation: ospf_api.c:_hook_typecheck_ospf_if_delete Unexecuted instantiation: ospf_api.c:_hook_typecheck_ospf_ism_change Unexecuted instantiation: ospf_api.c:_hook_typecheck_ospf_nsm_change Unexecuted instantiation: affinitymap.c:_hook_typecheck_zlog_init Unexecuted instantiation: affinitymap.c:_hook_typecheck_zlog_fini Unexecuted instantiation: affinitymap.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: affinitymap.c:_hook_typecheck_if_add Unexecuted instantiation: affinitymap.c:_hook_typecheck_if_del Unexecuted instantiation: affinitymap.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: affinitymap.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: affinitymap.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: affinitymap.c:_hook_typecheck_frr_early_init Unexecuted instantiation: affinitymap.c:_hook_typecheck_frr_late_init Unexecuted instantiation: affinitymap.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: affinitymap.c:_hook_typecheck_frr_config_post Unexecuted instantiation: affinitymap.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: affinitymap.c:_hook_typecheck_frr_fini Unexecuted instantiation: affinitymap_cli.c:_hook_typecheck_zlog_init Unexecuted instantiation: affinitymap_cli.c:_hook_typecheck_zlog_fini Unexecuted instantiation: affinitymap_cli.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: affinitymap_cli.c:_hook_typecheck_if_add Unexecuted instantiation: affinitymap_cli.c:_hook_typecheck_if_del Unexecuted instantiation: affinitymap_cli.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: affinitymap_cli.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: affinitymap_cli.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: affinitymap_cli.c:_hook_typecheck_frr_early_init Unexecuted instantiation: affinitymap_cli.c:_hook_typecheck_frr_late_init Unexecuted instantiation: affinitymap_cli.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: affinitymap_cli.c:_hook_typecheck_frr_config_post Unexecuted instantiation: affinitymap_cli.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: affinitymap_cli.c:_hook_typecheck_frr_fini Unexecuted instantiation: affinitymap_northbound.c:_hook_typecheck_zlog_init Unexecuted instantiation: affinitymap_northbound.c:_hook_typecheck_zlog_fini Unexecuted instantiation: affinitymap_northbound.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: affinitymap_northbound.c:_hook_typecheck_if_add Unexecuted instantiation: affinitymap_northbound.c:_hook_typecheck_if_del Unexecuted instantiation: affinitymap_northbound.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: affinitymap_northbound.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: affinitymap_northbound.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: affinitymap_northbound.c:_hook_typecheck_frr_early_init Unexecuted instantiation: affinitymap_northbound.c:_hook_typecheck_frr_late_init Unexecuted instantiation: affinitymap_northbound.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: affinitymap_northbound.c:_hook_typecheck_frr_config_post Unexecuted instantiation: affinitymap_northbound.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: affinitymap_northbound.c:_hook_typecheck_frr_fini Unexecuted instantiation: agg_table.c:_hook_typecheck_if_add Unexecuted instantiation: agg_table.c:_hook_typecheck_if_del Unexecuted instantiation: agg_table.c:_hook_typecheck_zlog_init Unexecuted instantiation: agg_table.c:_hook_typecheck_zlog_fini Unexecuted instantiation: agg_table.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: asn.c:_hook_typecheck_zlog_init Unexecuted instantiation: asn.c:_hook_typecheck_zlog_fini Unexecuted instantiation: asn.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: asn.c:_hook_typecheck_if_add Unexecuted instantiation: asn.c:_hook_typecheck_if_del Unexecuted instantiation: asn.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: asn.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: asn.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: asn.c:_hook_typecheck_frr_early_init Unexecuted instantiation: asn.c:_hook_typecheck_frr_late_init Unexecuted instantiation: asn.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: asn.c:_hook_typecheck_frr_config_post Unexecuted instantiation: asn.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: asn.c:_hook_typecheck_frr_fini bfd.c:_hook_typecheck_frr_fini Line | Count | Source | 192 | 2 | { \ | 193 | 2 | return (void *)funcptr; \ | 194 | 2 | } \ |
Unexecuted instantiation: bfd.c:_hook_typecheck_zlog_init Unexecuted instantiation: bfd.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bfd.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bfd.c:_hook_typecheck_if_add Unexecuted instantiation: bfd.c:_hook_typecheck_if_del Unexecuted instantiation: bfd.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bfd.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bfd.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bfd.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bfd.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bfd.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bfd.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bfd.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: buffer.c:_hook_typecheck_zlog_init Unexecuted instantiation: buffer.c:_hook_typecheck_zlog_fini Unexecuted instantiation: buffer.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: buffer.c:_hook_typecheck_if_add Unexecuted instantiation: buffer.c:_hook_typecheck_if_del Unexecuted instantiation: buffer.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: buffer.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: buffer.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: buffer.c:_hook_typecheck_frr_early_init Unexecuted instantiation: buffer.c:_hook_typecheck_frr_late_init Unexecuted instantiation: buffer.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: buffer.c:_hook_typecheck_frr_config_post Unexecuted instantiation: buffer.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: buffer.c:_hook_typecheck_frr_fini command.c:_hook_typecheck_cmd_execute Line | Count | Source | 192 | 3 | { \ | 193 | 3 | return (void *)funcptr; \ | 194 | 3 | } \ |
command.c:_hook_typecheck_cmd_execute_done Line | Count | Source | 192 | 3 | { \ | 193 | 3 | return (void *)funcptr; \ | 194 | 3 | } \ |
Unexecuted instantiation: command.c:_hook_typecheck_zlog_init Unexecuted instantiation: command.c:_hook_typecheck_zlog_fini Unexecuted instantiation: command.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: command.c:_hook_typecheck_if_add Unexecuted instantiation: command.c:_hook_typecheck_if_del Unexecuted instantiation: command.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: command.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: command.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: command.c:_hook_typecheck_frr_early_init Unexecuted instantiation: command.c:_hook_typecheck_frr_late_init Unexecuted instantiation: command.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: command.c:_hook_typecheck_frr_config_post Unexecuted instantiation: command.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: command.c:_hook_typecheck_frr_fini Unexecuted instantiation: command.c:_hook_typecheck_zlog_rotate Unexecuted instantiation: command.c:_hook_typecheck_zlog_cli_show Unexecuted instantiation: command_graph.c:_hook_typecheck_zlog_init Unexecuted instantiation: command_graph.c:_hook_typecheck_zlog_fini Unexecuted instantiation: command_graph.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: command_graph.c:_hook_typecheck_if_add Unexecuted instantiation: command_graph.c:_hook_typecheck_if_del Unexecuted instantiation: command_graph.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: command_graph.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: command_graph.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: command_graph.c:_hook_typecheck_frr_early_init Unexecuted instantiation: command_graph.c:_hook_typecheck_frr_late_init Unexecuted instantiation: command_graph.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: command_graph.c:_hook_typecheck_frr_config_post Unexecuted instantiation: command_graph.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: command_graph.c:_hook_typecheck_frr_fini Unexecuted instantiation: command_lex.c:_hook_typecheck_zlog_init Unexecuted instantiation: command_lex.c:_hook_typecheck_zlog_fini Unexecuted instantiation: command_lex.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: command_match.c:_hook_typecheck_zlog_init Unexecuted instantiation: command_match.c:_hook_typecheck_zlog_fini Unexecuted instantiation: command_match.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: command_match.c:_hook_typecheck_if_add Unexecuted instantiation: command_match.c:_hook_typecheck_if_del Unexecuted instantiation: command_match.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: command_match.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: command_match.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: command_match.c:_hook_typecheck_frr_early_init Unexecuted instantiation: command_match.c:_hook_typecheck_frr_late_init Unexecuted instantiation: command_match.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: command_match.c:_hook_typecheck_frr_config_post Unexecuted instantiation: command_match.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: command_match.c:_hook_typecheck_frr_fini Unexecuted instantiation: command_parse.c:_hook_typecheck_zlog_init Unexecuted instantiation: command_parse.c:_hook_typecheck_zlog_fini Unexecuted instantiation: command_parse.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: cspf.c:_hook_typecheck_if_add Unexecuted instantiation: cspf.c:_hook_typecheck_if_del Unexecuted instantiation: cspf.c:_hook_typecheck_zlog_init Unexecuted instantiation: cspf.c:_hook_typecheck_zlog_fini Unexecuted instantiation: cspf.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: debug.c:_hook_typecheck_zlog_init Unexecuted instantiation: debug.c:_hook_typecheck_zlog_fini Unexecuted instantiation: debug.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: debug.c:_hook_typecheck_if_add Unexecuted instantiation: debug.c:_hook_typecheck_if_del Unexecuted instantiation: debug.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: debug.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: debug.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: debug.c:_hook_typecheck_frr_early_init Unexecuted instantiation: debug.c:_hook_typecheck_frr_late_init Unexecuted instantiation: debug.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: debug.c:_hook_typecheck_frr_config_post Unexecuted instantiation: debug.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: debug.c:_hook_typecheck_frr_fini Unexecuted instantiation: distribute.c:_hook_typecheck_if_add Unexecuted instantiation: distribute.c:_hook_typecheck_if_del Unexecuted instantiation: distribute.c:_hook_typecheck_zlog_init Unexecuted instantiation: distribute.c:_hook_typecheck_zlog_fini Unexecuted instantiation: distribute.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: distribute.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: distribute.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: distribute.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: distribute.c:_hook_typecheck_frr_early_init Unexecuted instantiation: distribute.c:_hook_typecheck_frr_late_init Unexecuted instantiation: distribute.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: distribute.c:_hook_typecheck_frr_config_post Unexecuted instantiation: distribute.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: distribute.c:_hook_typecheck_frr_fini Unexecuted instantiation: ferr.c:_hook_typecheck_zlog_init Unexecuted instantiation: ferr.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ferr.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ferr.c:_hook_typecheck_if_add Unexecuted instantiation: ferr.c:_hook_typecheck_if_del Unexecuted instantiation: ferr.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: ferr.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: ferr.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: ferr.c:_hook_typecheck_frr_early_init Unexecuted instantiation: ferr.c:_hook_typecheck_frr_late_init Unexecuted instantiation: ferr.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: ferr.c:_hook_typecheck_frr_config_post Unexecuted instantiation: ferr.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: ferr.c:_hook_typecheck_frr_fini Unexecuted instantiation: filter.c:_hook_typecheck_if_add Unexecuted instantiation: filter.c:_hook_typecheck_if_del Unexecuted instantiation: filter.c:_hook_typecheck_zlog_init Unexecuted instantiation: filter.c:_hook_typecheck_zlog_fini Unexecuted instantiation: filter.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: filter.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: filter.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: filter.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: filter.c:_hook_typecheck_frr_early_init Unexecuted instantiation: filter.c:_hook_typecheck_frr_late_init Unexecuted instantiation: filter.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: filter.c:_hook_typecheck_frr_config_post Unexecuted instantiation: filter.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: filter.c:_hook_typecheck_frr_fini Unexecuted instantiation: filter_cli.c:_hook_typecheck_if_add Unexecuted instantiation: filter_cli.c:_hook_typecheck_if_del Unexecuted instantiation: filter_cli.c:_hook_typecheck_zlog_init Unexecuted instantiation: filter_cli.c:_hook_typecheck_zlog_fini Unexecuted instantiation: filter_cli.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: filter_cli.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: filter_cli.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: filter_cli.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: filter_cli.c:_hook_typecheck_frr_early_init Unexecuted instantiation: filter_cli.c:_hook_typecheck_frr_late_init Unexecuted instantiation: filter_cli.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: filter_cli.c:_hook_typecheck_frr_config_post Unexecuted instantiation: filter_cli.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: filter_cli.c:_hook_typecheck_frr_fini Unexecuted instantiation: filter_nb.c:_hook_typecheck_if_add Unexecuted instantiation: filter_nb.c:_hook_typecheck_if_del Unexecuted instantiation: filter_nb.c:_hook_typecheck_zlog_init Unexecuted instantiation: filter_nb.c:_hook_typecheck_zlog_fini Unexecuted instantiation: filter_nb.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: filter_nb.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: filter_nb.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: filter_nb.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: filter_nb.c:_hook_typecheck_frr_early_init Unexecuted instantiation: filter_nb.c:_hook_typecheck_frr_late_init Unexecuted instantiation: filter_nb.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: filter_nb.c:_hook_typecheck_frr_config_post Unexecuted instantiation: filter_nb.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: filter_nb.c:_hook_typecheck_frr_fini Unexecuted instantiation: flex_algo.c:_hook_typecheck_if_add Unexecuted instantiation: flex_algo.c:_hook_typecheck_if_del Unexecuted instantiation: flex_algo.c:_hook_typecheck_zlog_init Unexecuted instantiation: flex_algo.c:_hook_typecheck_zlog_fini Unexecuted instantiation: flex_algo.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: frr_pthread.c:_hook_typecheck_zlog_init Unexecuted instantiation: frr_pthread.c:_hook_typecheck_zlog_fini Unexecuted instantiation: frr_pthread.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: frr_pthread.c:_hook_typecheck_if_add Unexecuted instantiation: frr_pthread.c:_hook_typecheck_if_del Unexecuted instantiation: frr_pthread.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: frr_pthread.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: frr_pthread.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: frr_pthread.c:_hook_typecheck_frr_early_init Unexecuted instantiation: frr_pthread.c:_hook_typecheck_frr_late_init Unexecuted instantiation: frr_pthread.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: frr_pthread.c:_hook_typecheck_frr_config_post Unexecuted instantiation: frr_pthread.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: frr_pthread.c:_hook_typecheck_frr_fini Unexecuted instantiation: grammar_sandbox.c:_hook_typecheck_zlog_init Unexecuted instantiation: grammar_sandbox.c:_hook_typecheck_zlog_fini Unexecuted instantiation: grammar_sandbox.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: grammar_sandbox.c:_hook_typecheck_if_add Unexecuted instantiation: grammar_sandbox.c:_hook_typecheck_if_del Unexecuted instantiation: grammar_sandbox.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: grammar_sandbox.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: grammar_sandbox.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: grammar_sandbox.c:_hook_typecheck_frr_early_init Unexecuted instantiation: grammar_sandbox.c:_hook_typecheck_frr_late_init Unexecuted instantiation: grammar_sandbox.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: grammar_sandbox.c:_hook_typecheck_frr_config_post Unexecuted instantiation: grammar_sandbox.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: grammar_sandbox.c:_hook_typecheck_frr_fini Unexecuted instantiation: hash.c:_hook_typecheck_zlog_init Unexecuted instantiation: hash.c:_hook_typecheck_zlog_fini Unexecuted instantiation: hash.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: hash.c:_hook_typecheck_if_add Unexecuted instantiation: hash.c:_hook_typecheck_if_del Unexecuted instantiation: hash.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: hash.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: hash.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: hash.c:_hook_typecheck_frr_early_init Unexecuted instantiation: hash.c:_hook_typecheck_frr_late_init Unexecuted instantiation: hash.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: hash.c:_hook_typecheck_frr_config_post Unexecuted instantiation: hash.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: hash.c:_hook_typecheck_frr_fini Unexecuted instantiation: id_alloc.c:_hook_typecheck_zlog_init Unexecuted instantiation: id_alloc.c:_hook_typecheck_zlog_fini Unexecuted instantiation: id_alloc.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: id_alloc.c:_hook_typecheck_if_add Unexecuted instantiation: id_alloc.c:_hook_typecheck_if_del Unexecuted instantiation: id_alloc.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: id_alloc.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: id_alloc.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: id_alloc.c:_hook_typecheck_frr_early_init Unexecuted instantiation: id_alloc.c:_hook_typecheck_frr_late_init Unexecuted instantiation: id_alloc.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: id_alloc.c:_hook_typecheck_frr_config_post Unexecuted instantiation: id_alloc.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: id_alloc.c:_hook_typecheck_frr_fini Unexecuted instantiation: if.c:_hook_typecheck_zlog_init Unexecuted instantiation: if.c:_hook_typecheck_zlog_fini Unexecuted instantiation: if.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: if.c:_hook_typecheck_if_add Unexecuted instantiation: if.c:_hook_typecheck_if_del Unexecuted instantiation: if.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: if.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: if.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: if.c:_hook_typecheck_frr_early_init Unexecuted instantiation: if.c:_hook_typecheck_frr_late_init Unexecuted instantiation: if.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: if.c:_hook_typecheck_frr_config_post Unexecuted instantiation: if.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: if.c:_hook_typecheck_frr_fini Unexecuted instantiation: if_rmap.c:_hook_typecheck_zlog_init Unexecuted instantiation: if_rmap.c:_hook_typecheck_zlog_fini Unexecuted instantiation: if_rmap.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: if_rmap.c:_hook_typecheck_if_add Unexecuted instantiation: if_rmap.c:_hook_typecheck_if_del Unexecuted instantiation: if_rmap.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: if_rmap.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: if_rmap.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: if_rmap.c:_hook_typecheck_frr_early_init Unexecuted instantiation: if_rmap.c:_hook_typecheck_frr_late_init Unexecuted instantiation: if_rmap.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: if_rmap.c:_hook_typecheck_frr_config_post Unexecuted instantiation: if_rmap.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: if_rmap.c:_hook_typecheck_frr_fini Unexecuted instantiation: json.c:_hook_typecheck_zlog_init Unexecuted instantiation: json.c:_hook_typecheck_zlog_fini Unexecuted instantiation: json.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: json.c:_hook_typecheck_if_add Unexecuted instantiation: json.c:_hook_typecheck_if_del Unexecuted instantiation: json.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: json.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: json.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: json.c:_hook_typecheck_frr_early_init Unexecuted instantiation: json.c:_hook_typecheck_frr_late_init Unexecuted instantiation: json.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: json.c:_hook_typecheck_frr_config_post Unexecuted instantiation: json.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: json.c:_hook_typecheck_frr_fini Unexecuted instantiation: keychain.c:_hook_typecheck_zlog_init Unexecuted instantiation: keychain.c:_hook_typecheck_zlog_fini Unexecuted instantiation: keychain.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: keychain.c:_hook_typecheck_if_add Unexecuted instantiation: keychain.c:_hook_typecheck_if_del Unexecuted instantiation: keychain.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: keychain.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: keychain.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: keychain.c:_hook_typecheck_frr_early_init Unexecuted instantiation: keychain.c:_hook_typecheck_frr_late_init Unexecuted instantiation: keychain.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: keychain.c:_hook_typecheck_frr_config_post Unexecuted instantiation: keychain.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: keychain.c:_hook_typecheck_frr_fini Unexecuted instantiation: ldp_sync.c:_hook_typecheck_zlog_init Unexecuted instantiation: ldp_sync.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ldp_sync.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ldp_sync.c:_hook_typecheck_if_add Unexecuted instantiation: ldp_sync.c:_hook_typecheck_if_del Unexecuted instantiation: ldp_sync.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: ldp_sync.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: ldp_sync.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: ldp_sync.c:_hook_typecheck_frr_early_init Unexecuted instantiation: ldp_sync.c:_hook_typecheck_frr_late_init Unexecuted instantiation: ldp_sync.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: ldp_sync.c:_hook_typecheck_frr_config_post Unexecuted instantiation: ldp_sync.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: ldp_sync.c:_hook_typecheck_frr_fini Unexecuted instantiation: lib_errors.c:_hook_typecheck_zlog_init Unexecuted instantiation: lib_errors.c:_hook_typecheck_zlog_fini Unexecuted instantiation: lib_errors.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: lib_errors.c:_hook_typecheck_if_add Unexecuted instantiation: lib_errors.c:_hook_typecheck_if_del Unexecuted instantiation: lib_errors.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: lib_errors.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: lib_errors.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: lib_errors.c:_hook_typecheck_frr_early_init Unexecuted instantiation: lib_errors.c:_hook_typecheck_frr_late_init Unexecuted instantiation: lib_errors.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: lib_errors.c:_hook_typecheck_frr_config_post Unexecuted instantiation: lib_errors.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: lib_errors.c:_hook_typecheck_frr_fini Unexecuted instantiation: lib_vty.c:_hook_typecheck_zlog_init Unexecuted instantiation: lib_vty.c:_hook_typecheck_zlog_fini Unexecuted instantiation: lib_vty.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: lib_vty.c:_hook_typecheck_if_add Unexecuted instantiation: lib_vty.c:_hook_typecheck_if_del Unexecuted instantiation: lib_vty.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: lib_vty.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: lib_vty.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: lib_vty.c:_hook_typecheck_frr_early_init Unexecuted instantiation: lib_vty.c:_hook_typecheck_frr_late_init Unexecuted instantiation: lib_vty.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: lib_vty.c:_hook_typecheck_frr_config_post Unexecuted instantiation: lib_vty.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: lib_vty.c:_hook_typecheck_frr_fini Unexecuted instantiation: libfrr.c:_hook_typecheck_zlog_init Unexecuted instantiation: libfrr.c:_hook_typecheck_zlog_fini Unexecuted instantiation: libfrr.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: libfrr.c:_hook_typecheck_if_add Unexecuted instantiation: libfrr.c:_hook_typecheck_if_del Unexecuted instantiation: libfrr.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: libfrr.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: libfrr.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: libfrr.c:_hook_typecheck_frr_early_init Unexecuted instantiation: libfrr.c:_hook_typecheck_frr_late_init Unexecuted instantiation: libfrr.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: libfrr.c:_hook_typecheck_frr_config_post Unexecuted instantiation: libfrr.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: libfrr.c:_hook_typecheck_frr_fini Unexecuted instantiation: libfrr.c:_hook_typecheck_zlog_rotate Unexecuted instantiation: libfrr.c:_hook_typecheck_zlog_cli_show Unexecuted instantiation: link_state.c:_hook_typecheck_if_add Unexecuted instantiation: link_state.c:_hook_typecheck_if_del Unexecuted instantiation: link_state.c:_hook_typecheck_zlog_init Unexecuted instantiation: link_state.c:_hook_typecheck_zlog_fini Unexecuted instantiation: link_state.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: link_state.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: link_state.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: link_state.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: link_state.c:_hook_typecheck_frr_early_init Unexecuted instantiation: link_state.c:_hook_typecheck_frr_late_init Unexecuted instantiation: link_state.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: link_state.c:_hook_typecheck_frr_config_post Unexecuted instantiation: link_state.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: link_state.c:_hook_typecheck_frr_fini Unexecuted instantiation: log.c:_hook_typecheck_if_add Unexecuted instantiation: log.c:_hook_typecheck_if_del Unexecuted instantiation: log.c:_hook_typecheck_zlog_init Unexecuted instantiation: log.c:_hook_typecheck_zlog_fini Unexecuted instantiation: log.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: log.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: log.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: log.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: log.c:_hook_typecheck_frr_early_init Unexecuted instantiation: log.c:_hook_typecheck_frr_late_init Unexecuted instantiation: log.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: log.c:_hook_typecheck_frr_config_post Unexecuted instantiation: log.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: log.c:_hook_typecheck_frr_fini Unexecuted instantiation: log_filter.c:_hook_typecheck_zlog_init Unexecuted instantiation: log_filter.c:_hook_typecheck_zlog_fini Unexecuted instantiation: log_filter.c:_hook_typecheck_zlog_aux_init log_vty.c:_hook_typecheck_zlog_init Line | Count | Source | 192 | 7 | { \ | 193 | 7 | return (void *)funcptr; \ | 194 | 7 | } \ |
Unexecuted instantiation: log_vty.c:_hook_typecheck_zlog_rotate Unexecuted instantiation: log_vty.c:_hook_typecheck_zlog_cli_show Unexecuted instantiation: log_vty.c:_hook_typecheck_zlog_fini Unexecuted instantiation: log_vty.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: log_vty.c:_hook_typecheck_if_add Unexecuted instantiation: log_vty.c:_hook_typecheck_if_del Unexecuted instantiation: log_vty.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: log_vty.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: log_vty.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: log_vty.c:_hook_typecheck_frr_early_init Unexecuted instantiation: log_vty.c:_hook_typecheck_frr_late_init Unexecuted instantiation: log_vty.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: log_vty.c:_hook_typecheck_frr_config_post Unexecuted instantiation: log_vty.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: log_vty.c:_hook_typecheck_frr_fini Unexecuted instantiation: memory.c:_hook_typecheck_zlog_init Unexecuted instantiation: memory.c:_hook_typecheck_zlog_fini Unexecuted instantiation: memory.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: mgmt_be_client.c:_hook_typecheck_zlog_init Unexecuted instantiation: mgmt_be_client.c:_hook_typecheck_zlog_fini Unexecuted instantiation: mgmt_be_client.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: mgmt_be_client.c:_hook_typecheck_if_add Unexecuted instantiation: mgmt_be_client.c:_hook_typecheck_if_del Unexecuted instantiation: mgmt_be_client.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: mgmt_be_client.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: mgmt_be_client.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: mgmt_be_client.c:_hook_typecheck_frr_early_init Unexecuted instantiation: mgmt_be_client.c:_hook_typecheck_frr_late_init Unexecuted instantiation: mgmt_be_client.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: mgmt_be_client.c:_hook_typecheck_frr_config_post Unexecuted instantiation: mgmt_be_client.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: mgmt_be_client.c:_hook_typecheck_frr_fini Unexecuted instantiation: mgmt_fe_client.c:_hook_typecheck_zlog_init Unexecuted instantiation: mgmt_fe_client.c:_hook_typecheck_zlog_fini Unexecuted instantiation: mgmt_fe_client.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: mgmt_fe_client.c:_hook_typecheck_if_add Unexecuted instantiation: mgmt_fe_client.c:_hook_typecheck_if_del Unexecuted instantiation: mgmt_fe_client.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: mgmt_fe_client.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: mgmt_fe_client.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: mgmt_fe_client.c:_hook_typecheck_frr_early_init Unexecuted instantiation: mgmt_fe_client.c:_hook_typecheck_frr_late_init Unexecuted instantiation: mgmt_fe_client.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: mgmt_fe_client.c:_hook_typecheck_frr_config_post Unexecuted instantiation: mgmt_fe_client.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: mgmt_fe_client.c:_hook_typecheck_frr_fini Unexecuted instantiation: mgmt_msg.c:_hook_typecheck_zlog_init Unexecuted instantiation: mgmt_msg.c:_hook_typecheck_zlog_fini Unexecuted instantiation: mgmt_msg.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: mgmt_msg.c:_hook_typecheck_if_add Unexecuted instantiation: mgmt_msg.c:_hook_typecheck_if_del Unexecuted instantiation: mgmt_msg.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: mgmt_msg.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: mgmt_msg.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: mgmt_msg.c:_hook_typecheck_frr_early_init Unexecuted instantiation: mgmt_msg.c:_hook_typecheck_frr_late_init Unexecuted instantiation: mgmt_msg.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: mgmt_msg.c:_hook_typecheck_frr_config_post Unexecuted instantiation: mgmt_msg.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: mgmt_msg.c:_hook_typecheck_frr_fini Unexecuted instantiation: mlag.c:_hook_typecheck_if_add Unexecuted instantiation: mlag.c:_hook_typecheck_if_del Unexecuted instantiation: mlag.c:_hook_typecheck_zlog_init Unexecuted instantiation: mlag.c:_hook_typecheck_zlog_fini Unexecuted instantiation: mlag.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: mlag.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: mlag.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: mlag.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: mlag.c:_hook_typecheck_frr_early_init Unexecuted instantiation: mlag.c:_hook_typecheck_frr_late_init Unexecuted instantiation: mlag.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: mlag.c:_hook_typecheck_frr_config_post Unexecuted instantiation: mlag.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: mlag.c:_hook_typecheck_frr_fini Unexecuted instantiation: srv6.c:_hook_typecheck_if_add Unexecuted instantiation: srv6.c:_hook_typecheck_if_del Unexecuted instantiation: srv6.c:_hook_typecheck_zlog_init Unexecuted instantiation: srv6.c:_hook_typecheck_zlog_fini Unexecuted instantiation: srv6.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: srv6.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: srv6.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: srv6.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: srv6.c:_hook_typecheck_frr_early_init Unexecuted instantiation: srv6.c:_hook_typecheck_frr_late_init Unexecuted instantiation: srv6.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: srv6.c:_hook_typecheck_frr_config_post Unexecuted instantiation: srv6.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: srv6.c:_hook_typecheck_frr_fini Unexecuted instantiation: network.c:_hook_typecheck_zlog_init Unexecuted instantiation: network.c:_hook_typecheck_zlog_fini Unexecuted instantiation: network.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: network.c:_hook_typecheck_if_add Unexecuted instantiation: network.c:_hook_typecheck_if_del Unexecuted instantiation: network.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: network.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: network.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: network.c:_hook_typecheck_frr_early_init Unexecuted instantiation: network.c:_hook_typecheck_frr_late_init Unexecuted instantiation: network.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: network.c:_hook_typecheck_frr_config_post Unexecuted instantiation: network.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: network.c:_hook_typecheck_frr_fini Unexecuted instantiation: nexthop.c:_hook_typecheck_if_add Unexecuted instantiation: nexthop.c:_hook_typecheck_if_del Unexecuted instantiation: nexthop.c:_hook_typecheck_zlog_init Unexecuted instantiation: nexthop.c:_hook_typecheck_zlog_fini Unexecuted instantiation: nexthop.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: nexthop.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: nexthop.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: nexthop.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: nexthop.c:_hook_typecheck_frr_early_init Unexecuted instantiation: nexthop.c:_hook_typecheck_frr_late_init Unexecuted instantiation: nexthop.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: nexthop.c:_hook_typecheck_frr_config_post Unexecuted instantiation: nexthop.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: nexthop.c:_hook_typecheck_frr_fini Unexecuted instantiation: netns_linux.c:_hook_typecheck_if_add Unexecuted instantiation: netns_linux.c:_hook_typecheck_if_del Unexecuted instantiation: netns_linux.c:_hook_typecheck_zlog_init Unexecuted instantiation: netns_linux.c:_hook_typecheck_zlog_fini Unexecuted instantiation: netns_linux.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: netns_linux.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: netns_linux.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: netns_linux.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: netns_linux.c:_hook_typecheck_frr_early_init Unexecuted instantiation: netns_linux.c:_hook_typecheck_frr_late_init Unexecuted instantiation: netns_linux.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: netns_linux.c:_hook_typecheck_frr_config_post Unexecuted instantiation: netns_linux.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: netns_linux.c:_hook_typecheck_frr_fini Unexecuted instantiation: nexthop_group.c:_hook_typecheck_zlog_init Unexecuted instantiation: nexthop_group.c:_hook_typecheck_zlog_fini Unexecuted instantiation: nexthop_group.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: nexthop_group.c:_hook_typecheck_if_add Unexecuted instantiation: nexthop_group.c:_hook_typecheck_if_del Unexecuted instantiation: nexthop_group.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: nexthop_group.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: nexthop_group.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: nexthop_group.c:_hook_typecheck_frr_early_init Unexecuted instantiation: nexthop_group.c:_hook_typecheck_frr_late_init Unexecuted instantiation: nexthop_group.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: nexthop_group.c:_hook_typecheck_frr_config_post Unexecuted instantiation: nexthop_group.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: nexthop_group.c:_hook_typecheck_frr_fini Unexecuted instantiation: northbound.c:_hook_typecheck_zlog_init Unexecuted instantiation: northbound.c:_hook_typecheck_zlog_fini Unexecuted instantiation: northbound.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: northbound.c:_hook_typecheck_if_add Unexecuted instantiation: northbound.c:_hook_typecheck_if_del Unexecuted instantiation: northbound.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: northbound.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: northbound.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: northbound.c:_hook_typecheck_frr_early_init Unexecuted instantiation: northbound.c:_hook_typecheck_frr_late_init Unexecuted instantiation: northbound.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: northbound.c:_hook_typecheck_frr_config_post Unexecuted instantiation: northbound.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: northbound.c:_hook_typecheck_frr_fini Unexecuted instantiation: northbound_cli.c:_hook_typecheck_zlog_init Unexecuted instantiation: northbound_cli.c:_hook_typecheck_zlog_fini Unexecuted instantiation: northbound_cli.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: northbound_cli.c:_hook_typecheck_if_add Unexecuted instantiation: northbound_cli.c:_hook_typecheck_if_del Unexecuted instantiation: northbound_cli.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: northbound_cli.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: northbound_cli.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: northbound_cli.c:_hook_typecheck_frr_early_init Unexecuted instantiation: northbound_cli.c:_hook_typecheck_frr_late_init Unexecuted instantiation: northbound_cli.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: northbound_cli.c:_hook_typecheck_frr_config_post Unexecuted instantiation: northbound_cli.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: northbound_cli.c:_hook_typecheck_frr_fini Unexecuted instantiation: northbound_db.c:_hook_typecheck_zlog_init Unexecuted instantiation: northbound_db.c:_hook_typecheck_zlog_fini Unexecuted instantiation: northbound_db.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: northbound_db.c:_hook_typecheck_if_add Unexecuted instantiation: northbound_db.c:_hook_typecheck_if_del Unexecuted instantiation: northbound_db.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: northbound_db.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: northbound_db.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: northbound_db.c:_hook_typecheck_frr_early_init Unexecuted instantiation: northbound_db.c:_hook_typecheck_frr_late_init Unexecuted instantiation: northbound_db.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: northbound_db.c:_hook_typecheck_frr_config_post Unexecuted instantiation: northbound_db.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: northbound_db.c:_hook_typecheck_frr_fini Unexecuted instantiation: pid_output.c:_hook_typecheck_zlog_init Unexecuted instantiation: pid_output.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pid_output.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pid_output.c:_hook_typecheck_if_add Unexecuted instantiation: pid_output.c:_hook_typecheck_if_del Unexecuted instantiation: pid_output.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pid_output.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pid_output.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pid_output.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pid_output.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pid_output.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pid_output.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pid_output.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pid_output.c:_hook_typecheck_frr_fini Unexecuted instantiation: plist.c:_hook_typecheck_if_add Unexecuted instantiation: plist.c:_hook_typecheck_if_del Unexecuted instantiation: plist.c:_hook_typecheck_zlog_init Unexecuted instantiation: plist.c:_hook_typecheck_zlog_fini Unexecuted instantiation: plist.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: plist.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: plist.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: plist.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: plist.c:_hook_typecheck_frr_early_init Unexecuted instantiation: plist.c:_hook_typecheck_frr_late_init Unexecuted instantiation: plist.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: plist.c:_hook_typecheck_frr_config_post Unexecuted instantiation: plist.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: plist.c:_hook_typecheck_frr_fini Unexecuted instantiation: prefix.c:_hook_typecheck_zlog_init Unexecuted instantiation: prefix.c:_hook_typecheck_zlog_fini Unexecuted instantiation: prefix.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: prefix.c:_hook_typecheck_if_add Unexecuted instantiation: prefix.c:_hook_typecheck_if_del Unexecuted instantiation: prefix.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: prefix.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: prefix.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: prefix.c:_hook_typecheck_frr_early_init Unexecuted instantiation: prefix.c:_hook_typecheck_frr_late_init Unexecuted instantiation: prefix.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: prefix.c:_hook_typecheck_frr_config_post Unexecuted instantiation: prefix.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: prefix.c:_hook_typecheck_frr_fini Unexecuted instantiation: privs.c:_hook_typecheck_zlog_init Unexecuted instantiation: privs.c:_hook_typecheck_zlog_fini Unexecuted instantiation: privs.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: privs.c:_hook_typecheck_if_add Unexecuted instantiation: privs.c:_hook_typecheck_if_del Unexecuted instantiation: privs.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: privs.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: privs.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: privs.c:_hook_typecheck_frr_early_init Unexecuted instantiation: privs.c:_hook_typecheck_frr_late_init Unexecuted instantiation: privs.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: privs.c:_hook_typecheck_frr_config_post Unexecuted instantiation: privs.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: privs.c:_hook_typecheck_frr_fini Unexecuted instantiation: pullwr.c:_hook_typecheck_if_add Unexecuted instantiation: pullwr.c:_hook_typecheck_if_del Unexecuted instantiation: pullwr.c:_hook_typecheck_zlog_init Unexecuted instantiation: pullwr.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pullwr.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: qobj.c:_hook_typecheck_zlog_init Unexecuted instantiation: qobj.c:_hook_typecheck_zlog_fini Unexecuted instantiation: qobj.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: routemap.c:_hook_typecheck_zlog_init Unexecuted instantiation: routemap.c:_hook_typecheck_zlog_fini Unexecuted instantiation: routemap.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: routemap.c:_hook_typecheck_if_add Unexecuted instantiation: routemap.c:_hook_typecheck_if_del Unexecuted instantiation: routemap.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: routemap.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: routemap.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: routemap.c:_hook_typecheck_frr_early_init Unexecuted instantiation: routemap.c:_hook_typecheck_frr_late_init Unexecuted instantiation: routemap.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: routemap.c:_hook_typecheck_frr_config_post Unexecuted instantiation: routemap.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: routemap.c:_hook_typecheck_frr_fini Unexecuted instantiation: routemap_cli.c:_hook_typecheck_zlog_init Unexecuted instantiation: routemap_cli.c:_hook_typecheck_zlog_fini Unexecuted instantiation: routemap_cli.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: routemap_cli.c:_hook_typecheck_if_add Unexecuted instantiation: routemap_cli.c:_hook_typecheck_if_del Unexecuted instantiation: routemap_cli.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: routemap_cli.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: routemap_cli.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: routemap_cli.c:_hook_typecheck_frr_early_init Unexecuted instantiation: routemap_cli.c:_hook_typecheck_frr_late_init Unexecuted instantiation: routemap_cli.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: routemap_cli.c:_hook_typecheck_frr_config_post Unexecuted instantiation: routemap_cli.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: routemap_cli.c:_hook_typecheck_frr_fini Unexecuted instantiation: routemap_northbound.c:_hook_typecheck_zlog_init Unexecuted instantiation: routemap_northbound.c:_hook_typecheck_zlog_fini Unexecuted instantiation: routemap_northbound.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: routemap_northbound.c:_hook_typecheck_if_add Unexecuted instantiation: routemap_northbound.c:_hook_typecheck_if_del Unexecuted instantiation: routemap_northbound.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: routemap_northbound.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: routemap_northbound.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: routemap_northbound.c:_hook_typecheck_frr_early_init Unexecuted instantiation: routemap_northbound.c:_hook_typecheck_frr_late_init Unexecuted instantiation: routemap_northbound.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: routemap_northbound.c:_hook_typecheck_frr_config_post Unexecuted instantiation: routemap_northbound.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: routemap_northbound.c:_hook_typecheck_frr_fini Unexecuted instantiation: sbuf.c:_hook_typecheck_zlog_init Unexecuted instantiation: sbuf.c:_hook_typecheck_zlog_fini Unexecuted instantiation: sbuf.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: sigevent.c:_hook_typecheck_zlog_init Unexecuted instantiation: sigevent.c:_hook_typecheck_zlog_fini Unexecuted instantiation: sigevent.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: sigevent.c:_hook_typecheck_if_add Unexecuted instantiation: sigevent.c:_hook_typecheck_if_del Unexecuted instantiation: sigevent.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: sigevent.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: sigevent.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: sigevent.c:_hook_typecheck_frr_early_init Unexecuted instantiation: sigevent.c:_hook_typecheck_frr_late_init Unexecuted instantiation: sigevent.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: sigevent.c:_hook_typecheck_frr_config_post Unexecuted instantiation: sigevent.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: sigevent.c:_hook_typecheck_frr_fini Unexecuted instantiation: skiplist.c:_hook_typecheck_zlog_init Unexecuted instantiation: skiplist.c:_hook_typecheck_zlog_fini Unexecuted instantiation: skiplist.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: skiplist.c:_hook_typecheck_if_add Unexecuted instantiation: skiplist.c:_hook_typecheck_if_del Unexecuted instantiation: skiplist.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: skiplist.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: skiplist.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: skiplist.c:_hook_typecheck_frr_early_init Unexecuted instantiation: skiplist.c:_hook_typecheck_frr_late_init Unexecuted instantiation: skiplist.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: skiplist.c:_hook_typecheck_frr_config_post Unexecuted instantiation: skiplist.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: skiplist.c:_hook_typecheck_frr_fini Unexecuted instantiation: sockopt.c:_hook_typecheck_zlog_init Unexecuted instantiation: sockopt.c:_hook_typecheck_zlog_fini Unexecuted instantiation: sockopt.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: sockopt.c:_hook_typecheck_if_add Unexecuted instantiation: sockopt.c:_hook_typecheck_if_del Unexecuted instantiation: sockopt.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: sockopt.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: sockopt.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: sockopt.c:_hook_typecheck_frr_early_init Unexecuted instantiation: sockopt.c:_hook_typecheck_frr_late_init Unexecuted instantiation: sockopt.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: sockopt.c:_hook_typecheck_frr_config_post Unexecuted instantiation: sockopt.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: sockopt.c:_hook_typecheck_frr_fini Unexecuted instantiation: sockunion.c:_hook_typecheck_if_add Unexecuted instantiation: sockunion.c:_hook_typecheck_if_del Unexecuted instantiation: sockunion.c:_hook_typecheck_zlog_init Unexecuted instantiation: sockunion.c:_hook_typecheck_zlog_fini Unexecuted instantiation: sockunion.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: sockunion.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: sockunion.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: sockunion.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: sockunion.c:_hook_typecheck_frr_early_init Unexecuted instantiation: sockunion.c:_hook_typecheck_frr_late_init Unexecuted instantiation: sockunion.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: sockunion.c:_hook_typecheck_frr_config_post Unexecuted instantiation: sockunion.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: sockunion.c:_hook_typecheck_frr_fini Unexecuted instantiation: spf_backoff.c:_hook_typecheck_zlog_init Unexecuted instantiation: spf_backoff.c:_hook_typecheck_zlog_fini Unexecuted instantiation: spf_backoff.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: spf_backoff.c:_hook_typecheck_if_add Unexecuted instantiation: spf_backoff.c:_hook_typecheck_if_del Unexecuted instantiation: spf_backoff.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: spf_backoff.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: spf_backoff.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: spf_backoff.c:_hook_typecheck_frr_early_init Unexecuted instantiation: spf_backoff.c:_hook_typecheck_frr_late_init Unexecuted instantiation: spf_backoff.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: spf_backoff.c:_hook_typecheck_frr_config_post Unexecuted instantiation: spf_backoff.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: spf_backoff.c:_hook_typecheck_frr_fini Unexecuted instantiation: srcdest_table.c:_hook_typecheck_if_add Unexecuted instantiation: srcdest_table.c:_hook_typecheck_if_del Unexecuted instantiation: srcdest_table.c:_hook_typecheck_zlog_init Unexecuted instantiation: srcdest_table.c:_hook_typecheck_zlog_fini Unexecuted instantiation: srcdest_table.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: stream.c:_hook_typecheck_if_add Unexecuted instantiation: stream.c:_hook_typecheck_if_del Unexecuted instantiation: stream.c:_hook_typecheck_zlog_init Unexecuted instantiation: stream.c:_hook_typecheck_zlog_fini Unexecuted instantiation: stream.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: stream.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: stream.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: stream.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: stream.c:_hook_typecheck_frr_early_init Unexecuted instantiation: stream.c:_hook_typecheck_frr_late_init Unexecuted instantiation: stream.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: stream.c:_hook_typecheck_frr_config_post Unexecuted instantiation: stream.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: stream.c:_hook_typecheck_frr_fini Unexecuted instantiation: systemd.c:_hook_typecheck_zlog_init Unexecuted instantiation: systemd.c:_hook_typecheck_zlog_fini Unexecuted instantiation: systemd.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: systemd.c:_hook_typecheck_if_add Unexecuted instantiation: systemd.c:_hook_typecheck_if_del Unexecuted instantiation: systemd.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: systemd.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: systemd.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: systemd.c:_hook_typecheck_frr_early_init Unexecuted instantiation: systemd.c:_hook_typecheck_frr_late_init Unexecuted instantiation: systemd.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: systemd.c:_hook_typecheck_frr_config_post Unexecuted instantiation: systemd.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: systemd.c:_hook_typecheck_frr_fini Unexecuted instantiation: table.c:_hook_typecheck_if_add Unexecuted instantiation: table.c:_hook_typecheck_if_del Unexecuted instantiation: table.c:_hook_typecheck_zlog_init Unexecuted instantiation: table.c:_hook_typecheck_zlog_fini Unexecuted instantiation: table.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: termtable.c:_hook_typecheck_zlog_init Unexecuted instantiation: termtable.c:_hook_typecheck_zlog_fini Unexecuted instantiation: termtable.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: termtable.c:_hook_typecheck_if_add Unexecuted instantiation: termtable.c:_hook_typecheck_if_del Unexecuted instantiation: termtable.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: termtable.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: termtable.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: termtable.c:_hook_typecheck_frr_early_init Unexecuted instantiation: termtable.c:_hook_typecheck_frr_late_init Unexecuted instantiation: termtable.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: termtable.c:_hook_typecheck_frr_config_post Unexecuted instantiation: termtable.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: termtable.c:_hook_typecheck_frr_fini Unexecuted instantiation: event.c:_hook_typecheck_zlog_init Unexecuted instantiation: event.c:_hook_typecheck_zlog_fini Unexecuted instantiation: event.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: event.c:_hook_typecheck_if_add Unexecuted instantiation: event.c:_hook_typecheck_if_del Unexecuted instantiation: event.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: event.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: event.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: event.c:_hook_typecheck_frr_early_init Unexecuted instantiation: event.c:_hook_typecheck_frr_late_init Unexecuted instantiation: event.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: event.c:_hook_typecheck_frr_config_post Unexecuted instantiation: event.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: event.c:_hook_typecheck_frr_fini Unexecuted instantiation: vrf.c:_hook_typecheck_if_add Unexecuted instantiation: vrf.c:_hook_typecheck_if_del Unexecuted instantiation: vrf.c:_hook_typecheck_zlog_init Unexecuted instantiation: vrf.c:_hook_typecheck_zlog_fini Unexecuted instantiation: vrf.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: vrf.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: vrf.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: vrf.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: vrf.c:_hook_typecheck_frr_early_init Unexecuted instantiation: vrf.c:_hook_typecheck_frr_late_init Unexecuted instantiation: vrf.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: vrf.c:_hook_typecheck_frr_config_post Unexecuted instantiation: vrf.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: vrf.c:_hook_typecheck_frr_fini Unexecuted instantiation: vty.c:_hook_typecheck_zlog_init Unexecuted instantiation: vty.c:_hook_typecheck_zlog_fini Unexecuted instantiation: vty.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: vty.c:_hook_typecheck_if_add Unexecuted instantiation: vty.c:_hook_typecheck_if_del Unexecuted instantiation: vty.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: vty.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: vty.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: vty.c:_hook_typecheck_frr_early_init Unexecuted instantiation: vty.c:_hook_typecheck_frr_late_init Unexecuted instantiation: vty.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: vty.c:_hook_typecheck_frr_config_post Unexecuted instantiation: vty.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: vty.c:_hook_typecheck_frr_fini Unexecuted instantiation: wheel.c:_hook_typecheck_zlog_init Unexecuted instantiation: wheel.c:_hook_typecheck_zlog_fini Unexecuted instantiation: wheel.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: workqueue.c:_hook_typecheck_zlog_init Unexecuted instantiation: workqueue.c:_hook_typecheck_zlog_fini Unexecuted instantiation: workqueue.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: workqueue.c:_hook_typecheck_if_add Unexecuted instantiation: workqueue.c:_hook_typecheck_if_del Unexecuted instantiation: workqueue.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: workqueue.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: workqueue.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: workqueue.c:_hook_typecheck_frr_early_init Unexecuted instantiation: workqueue.c:_hook_typecheck_frr_late_init Unexecuted instantiation: workqueue.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: workqueue.c:_hook_typecheck_frr_config_post Unexecuted instantiation: workqueue.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: workqueue.c:_hook_typecheck_frr_fini Unexecuted instantiation: xref.c:_hook_typecheck_zlog_init Unexecuted instantiation: xref.c:_hook_typecheck_zlog_fini Unexecuted instantiation: xref.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: xref.c:_hook_typecheck_if_add Unexecuted instantiation: xref.c:_hook_typecheck_if_del Unexecuted instantiation: xref.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: xref.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: xref.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: xref.c:_hook_typecheck_frr_early_init Unexecuted instantiation: xref.c:_hook_typecheck_frr_late_init Unexecuted instantiation: xref.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: xref.c:_hook_typecheck_frr_config_post Unexecuted instantiation: xref.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: xref.c:_hook_typecheck_frr_fini Unexecuted instantiation: yang.c:_hook_typecheck_zlog_init Unexecuted instantiation: yang.c:_hook_typecheck_zlog_fini Unexecuted instantiation: yang.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: yang.c:_hook_typecheck_if_add Unexecuted instantiation: yang.c:_hook_typecheck_if_del Unexecuted instantiation: yang.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: yang.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: yang.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: yang.c:_hook_typecheck_frr_early_init Unexecuted instantiation: yang.c:_hook_typecheck_frr_late_init Unexecuted instantiation: yang.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: yang.c:_hook_typecheck_frr_config_post Unexecuted instantiation: yang.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: yang.c:_hook_typecheck_frr_fini Unexecuted instantiation: yang_translator.c:_hook_typecheck_zlog_init Unexecuted instantiation: yang_translator.c:_hook_typecheck_zlog_fini Unexecuted instantiation: yang_translator.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: yang_translator.c:_hook_typecheck_if_add Unexecuted instantiation: yang_translator.c:_hook_typecheck_if_del Unexecuted instantiation: yang_translator.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: yang_translator.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: yang_translator.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: yang_translator.c:_hook_typecheck_frr_early_init Unexecuted instantiation: yang_translator.c:_hook_typecheck_frr_late_init Unexecuted instantiation: yang_translator.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: yang_translator.c:_hook_typecheck_frr_config_post Unexecuted instantiation: yang_translator.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: yang_translator.c:_hook_typecheck_frr_fini Unexecuted instantiation: yang_wrappers.c:_hook_typecheck_zlog_init Unexecuted instantiation: yang_wrappers.c:_hook_typecheck_zlog_fini Unexecuted instantiation: yang_wrappers.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: yang_wrappers.c:_hook_typecheck_if_add Unexecuted instantiation: yang_wrappers.c:_hook_typecheck_if_del Unexecuted instantiation: yang_wrappers.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: yang_wrappers.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: yang_wrappers.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: yang_wrappers.c:_hook_typecheck_frr_early_init Unexecuted instantiation: yang_wrappers.c:_hook_typecheck_frr_late_init Unexecuted instantiation: yang_wrappers.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: yang_wrappers.c:_hook_typecheck_frr_config_post Unexecuted instantiation: yang_wrappers.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: yang_wrappers.c:_hook_typecheck_frr_fini Unexecuted instantiation: zclient.c:_hook_typecheck_if_add Unexecuted instantiation: zclient.c:_hook_typecheck_if_del Unexecuted instantiation: zclient.c:_hook_typecheck_zlog_init Unexecuted instantiation: zclient.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zclient.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zclient.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zclient.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zclient.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zclient.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zclient.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zclient.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zclient.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zclient.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zclient.c:_hook_typecheck_frr_fini Unexecuted instantiation: zlog.c:_hook_typecheck_zlog_init Unexecuted instantiation: zlog.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zlog.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zlog_5424.c:_hook_typecheck_zlog_init Unexecuted instantiation: zlog_5424.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zlog_5424.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zlog_5424.c:_hook_typecheck_if_add Unexecuted instantiation: zlog_5424.c:_hook_typecheck_if_del Unexecuted instantiation: zlog_5424.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zlog_5424.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zlog_5424.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zlog_5424.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zlog_5424.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zlog_5424.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zlog_5424.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zlog_5424.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zlog_5424.c:_hook_typecheck_frr_fini zlog_5424_cli.c:_hook_typecheck_zlog_cli_show Line | Count | Source | 192 | 3 | { \ | 193 | 3 | return (void *)funcptr; \ | 194 | 3 | } \ |
zlog_5424_cli.c:_hook_typecheck_frr_early_init Line | Count | Source | 192 | 7 | { \ | 193 | 7 | return (void *)funcptr; \ | 194 | 7 | } \ |
zlog_5424_cli.c:_hook_typecheck_zlog_rotate Line | Count | Source | 192 | 7 | { \ | 193 | 7 | return (void *)funcptr; \ | 194 | 7 | } \ |
zlog_5424_cli.c:_hook_typecheck_frr_fini Line | Count | Source | 192 | 7 | { \ | 193 | 7 | return (void *)funcptr; \ | 194 | 7 | } \ |
Unexecuted instantiation: zlog_5424_cli.c:_hook_typecheck_zlog_init Unexecuted instantiation: zlog_5424_cli.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zlog_5424_cli.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zlog_5424_cli.c:_hook_typecheck_if_add Unexecuted instantiation: zlog_5424_cli.c:_hook_typecheck_if_del Unexecuted instantiation: zlog_5424_cli.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zlog_5424_cli.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zlog_5424_cli.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zlog_5424_cli.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zlog_5424_cli.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zlog_5424_cli.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zlog_5424_cli.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zlog_live.c:_hook_typecheck_zlog_init Unexecuted instantiation: zlog_live.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zlog_live.c:_hook_typecheck_zlog_aux_init zlog_targets.c:_hook_typecheck_zlog_aux_init Line | Count | Source | 192 | 7 | { \ | 193 | 7 | return (void *)funcptr; \ | 194 | 7 | } \ |
zlog_targets.c:_hook_typecheck_zlog_init Line | Count | Source | 192 | 7 | { \ | 193 | 7 | return (void *)funcptr; \ | 194 | 7 | } \ |
zlog_targets.c:_hook_typecheck_zlog_fini Line | Count | Source | 192 | 7 | { \ | 193 | 7 | return (void *)funcptr; \ | 194 | 7 | } \ |
Unexecuted instantiation: routing_nb.c:_hook_typecheck_if_add Unexecuted instantiation: routing_nb.c:_hook_typecheck_if_del Unexecuted instantiation: routing_nb.c:_hook_typecheck_zlog_init Unexecuted instantiation: routing_nb.c:_hook_typecheck_zlog_fini Unexecuted instantiation: routing_nb.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: routing_nb.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: routing_nb.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: routing_nb.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: routing_nb.c:_hook_typecheck_frr_early_init Unexecuted instantiation: routing_nb.c:_hook_typecheck_frr_late_init Unexecuted instantiation: routing_nb.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: routing_nb.c:_hook_typecheck_frr_config_post Unexecuted instantiation: routing_nb.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: routing_nb.c:_hook_typecheck_frr_fini Unexecuted instantiation: routing_nb.c:_hook_typecheck_routing_conf_event Unexecuted instantiation: routing_nb_config.c:_hook_typecheck_if_add Unexecuted instantiation: routing_nb_config.c:_hook_typecheck_if_del Unexecuted instantiation: routing_nb_config.c:_hook_typecheck_zlog_init Unexecuted instantiation: routing_nb_config.c:_hook_typecheck_zlog_fini Unexecuted instantiation: routing_nb_config.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: routing_nb_config.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: routing_nb_config.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: routing_nb_config.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: routing_nb_config.c:_hook_typecheck_frr_early_init Unexecuted instantiation: routing_nb_config.c:_hook_typecheck_frr_late_init Unexecuted instantiation: routing_nb_config.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: routing_nb_config.c:_hook_typecheck_frr_config_post Unexecuted instantiation: routing_nb_config.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: routing_nb_config.c:_hook_typecheck_frr_fini Unexecuted instantiation: routing_nb_config.c:_hook_typecheck_routing_conf_event Unexecuted instantiation: tc.c:_hook_typecheck_if_add Unexecuted instantiation: tc.c:_hook_typecheck_if_del Unexecuted instantiation: tc.c:_hook_typecheck_zlog_init Unexecuted instantiation: tc.c:_hook_typecheck_zlog_fini Unexecuted instantiation: tc.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: frr-affinity-map.yang.c:_hook_typecheck_if_add Unexecuted instantiation: frr-affinity-map.yang.c:_hook_typecheck_if_del Unexecuted instantiation: frr-affinity-map.yang.c:_hook_typecheck_zlog_init Unexecuted instantiation: frr-affinity-map.yang.c:_hook_typecheck_zlog_fini Unexecuted instantiation: frr-affinity-map.yang.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: frr-filter.yang.c:_hook_typecheck_if_add Unexecuted instantiation: frr-filter.yang.c:_hook_typecheck_if_del Unexecuted instantiation: frr-filter.yang.c:_hook_typecheck_zlog_init Unexecuted instantiation: frr-filter.yang.c:_hook_typecheck_zlog_fini Unexecuted instantiation: frr-filter.yang.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: frr-if-rmap.yang.c:_hook_typecheck_if_add Unexecuted instantiation: frr-if-rmap.yang.c:_hook_typecheck_if_del Unexecuted instantiation: frr-if-rmap.yang.c:_hook_typecheck_zlog_init Unexecuted instantiation: frr-if-rmap.yang.c:_hook_typecheck_zlog_fini Unexecuted instantiation: frr-if-rmap.yang.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: frr-interface.yang.c:_hook_typecheck_if_add Unexecuted instantiation: frr-interface.yang.c:_hook_typecheck_if_del Unexecuted instantiation: frr-interface.yang.c:_hook_typecheck_zlog_init Unexecuted instantiation: frr-interface.yang.c:_hook_typecheck_zlog_fini Unexecuted instantiation: frr-interface.yang.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: frr-route-map.yang.c:_hook_typecheck_if_add Unexecuted instantiation: frr-route-map.yang.c:_hook_typecheck_if_del Unexecuted instantiation: frr-route-map.yang.c:_hook_typecheck_zlog_init Unexecuted instantiation: frr-route-map.yang.c:_hook_typecheck_zlog_fini Unexecuted instantiation: frr-route-map.yang.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: frr-route-types.yang.c:_hook_typecheck_if_add Unexecuted instantiation: frr-route-types.yang.c:_hook_typecheck_if_del Unexecuted instantiation: frr-route-types.yang.c:_hook_typecheck_zlog_init Unexecuted instantiation: frr-route-types.yang.c:_hook_typecheck_zlog_fini Unexecuted instantiation: frr-route-types.yang.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: frr-vrf.yang.c:_hook_typecheck_if_add Unexecuted instantiation: frr-vrf.yang.c:_hook_typecheck_if_del Unexecuted instantiation: frr-vrf.yang.c:_hook_typecheck_zlog_init Unexecuted instantiation: frr-vrf.yang.c:_hook_typecheck_zlog_fini Unexecuted instantiation: frr-vrf.yang.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: frr-routing.yang.c:_hook_typecheck_if_add Unexecuted instantiation: frr-routing.yang.c:_hook_typecheck_if_del Unexecuted instantiation: frr-routing.yang.c:_hook_typecheck_zlog_init Unexecuted instantiation: frr-routing.yang.c:_hook_typecheck_zlog_fini Unexecuted instantiation: frr-routing.yang.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: frr-nexthop.yang.c:_hook_typecheck_if_add Unexecuted instantiation: frr-nexthop.yang.c:_hook_typecheck_if_del Unexecuted instantiation: frr-nexthop.yang.c:_hook_typecheck_zlog_init Unexecuted instantiation: frr-nexthop.yang.c:_hook_typecheck_zlog_fini Unexecuted instantiation: frr-nexthop.yang.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ietf-routing-types.yang.c:_hook_typecheck_if_add Unexecuted instantiation: ietf-routing-types.yang.c:_hook_typecheck_if_del Unexecuted instantiation: ietf-routing-types.yang.c:_hook_typecheck_zlog_init Unexecuted instantiation: ietf-routing-types.yang.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ietf-routing-types.yang.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ietf-interfaces.yang.c:_hook_typecheck_if_add Unexecuted instantiation: ietf-interfaces.yang.c:_hook_typecheck_if_del Unexecuted instantiation: ietf-interfaces.yang.c:_hook_typecheck_zlog_init Unexecuted instantiation: ietf-interfaces.yang.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ietf-interfaces.yang.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ietf-bgp-types.yang.c:_hook_typecheck_if_add Unexecuted instantiation: ietf-bgp-types.yang.c:_hook_typecheck_if_del Unexecuted instantiation: ietf-bgp-types.yang.c:_hook_typecheck_zlog_init Unexecuted instantiation: ietf-bgp-types.yang.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ietf-bgp-types.yang.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: frr-module-translator.yang.c:_hook_typecheck_if_add Unexecuted instantiation: frr-module-translator.yang.c:_hook_typecheck_if_del Unexecuted instantiation: frr-module-translator.yang.c:_hook_typecheck_zlog_init Unexecuted instantiation: frr-module-translator.yang.c:_hook_typecheck_zlog_fini Unexecuted instantiation: frr-module-translator.yang.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: connected.c:_hook_typecheck_if_add Unexecuted instantiation: connected.c:_hook_typecheck_if_del Unexecuted instantiation: connected.c:_hook_typecheck_zlog_init Unexecuted instantiation: connected.c:_hook_typecheck_zlog_fini Unexecuted instantiation: connected.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: connected.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: connected.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: connected.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: connected.c:_hook_typecheck_frr_early_init Unexecuted instantiation: connected.c:_hook_typecheck_frr_late_init Unexecuted instantiation: connected.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: connected.c:_hook_typecheck_frr_config_post Unexecuted instantiation: connected.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: connected.c:_hook_typecheck_frr_fini Unexecuted instantiation: connected.c:_hook_typecheck_rib_update Unexecuted instantiation: connected.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: connected.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: connected.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: connected.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: connected.c:_hook_typecheck_pw_install Unexecuted instantiation: connected.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: connected.c:_hook_typecheck_zebra_if_extra_info Unexecuted instantiation: connected.c:_hook_typecheck_zebra_if_config_wr Unexecuted instantiation: debug.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: if_netlink.c:_hook_typecheck_if_add Unexecuted instantiation: if_netlink.c:_hook_typecheck_if_del Unexecuted instantiation: if_netlink.c:_hook_typecheck_zlog_init Unexecuted instantiation: if_netlink.c:_hook_typecheck_zlog_fini Unexecuted instantiation: if_netlink.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: if_netlink.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: if_netlink.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: if_netlink.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: if_netlink.c:_hook_typecheck_frr_early_init Unexecuted instantiation: if_netlink.c:_hook_typecheck_frr_late_init Unexecuted instantiation: if_netlink.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: if_netlink.c:_hook_typecheck_frr_config_post Unexecuted instantiation: if_netlink.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: if_netlink.c:_hook_typecheck_frr_fini Unexecuted instantiation: if_netlink.c:_hook_typecheck_rib_update Unexecuted instantiation: if_netlink.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: if_netlink.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: if_netlink.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: if_netlink.c:_hook_typecheck_pw_install Unexecuted instantiation: if_netlink.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: if_netlink.c:_hook_typecheck_zebra_if_extra_info Unexecuted instantiation: if_netlink.c:_hook_typecheck_zebra_if_config_wr Unexecuted instantiation: if_netlink.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: if_netlink.c:_hook_typecheck_zebra_rmac_update Unexecuted instantiation: interface.c:_hook_typecheck_if_add Unexecuted instantiation: interface.c:_hook_typecheck_if_del Unexecuted instantiation: interface.c:_hook_typecheck_zlog_init Unexecuted instantiation: interface.c:_hook_typecheck_zlog_fini Unexecuted instantiation: interface.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: interface.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: interface.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: interface.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: interface.c:_hook_typecheck_frr_early_init Unexecuted instantiation: interface.c:_hook_typecheck_frr_late_init Unexecuted instantiation: interface.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: interface.c:_hook_typecheck_frr_config_post Unexecuted instantiation: interface.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: interface.c:_hook_typecheck_frr_fini Unexecuted instantiation: interface.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: interface.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: interface.c:_hook_typecheck_rib_update Unexecuted instantiation: interface.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: interface.c:_hook_typecheck_pw_install Unexecuted instantiation: interface.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: interface.c:_hook_typecheck_zebra_if_extra_info Unexecuted instantiation: interface.c:_hook_typecheck_zebra_if_config_wr Unexecuted instantiation: interface.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: interface.c:_hook_typecheck_zebra_rmac_update Unexecuted instantiation: ioctl.c:_hook_typecheck_if_add Unexecuted instantiation: ioctl.c:_hook_typecheck_if_del Unexecuted instantiation: ioctl.c:_hook_typecheck_zlog_init Unexecuted instantiation: ioctl.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ioctl.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: ioctl.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: ioctl.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: ioctl.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: ioctl.c:_hook_typecheck_frr_early_init Unexecuted instantiation: ioctl.c:_hook_typecheck_frr_late_init Unexecuted instantiation: ioctl.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: ioctl.c:_hook_typecheck_frr_config_post Unexecuted instantiation: ioctl.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: ioctl.c:_hook_typecheck_frr_fini Unexecuted instantiation: ioctl.c:_hook_typecheck_rib_update Unexecuted instantiation: ioctl.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: ioctl.c:_hook_typecheck_pw_install Unexecuted instantiation: ioctl.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: ioctl.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: ioctl.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: ioctl.c:_hook_typecheck_zebra_if_extra_info Unexecuted instantiation: ioctl.c:_hook_typecheck_zebra_if_config_wr Unexecuted instantiation: ioctl.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: ipforward_proc.c:_hook_typecheck_zlog_init Unexecuted instantiation: ipforward_proc.c:_hook_typecheck_zlog_fini Unexecuted instantiation: ipforward_proc.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_if_add Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_if_del Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_zlog_init Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_zlog_fini Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_frr_early_init Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_frr_late_init Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_frr_config_post Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_frr_fini Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_rib_update Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_pw_install Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: label_manager.c:_hook_typecheck_lm_client_connect Unexecuted instantiation: label_manager.c:_hook_typecheck_lm_client_disconnect Unexecuted instantiation: label_manager.c:_hook_typecheck_lm_get_chunk Unexecuted instantiation: label_manager.c:_hook_typecheck_lm_release_chunk Unexecuted instantiation: label_manager.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: label_manager.c:_hook_typecheck_zlog_init Unexecuted instantiation: label_manager.c:_hook_typecheck_zlog_fini Unexecuted instantiation: label_manager.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: label_manager.c:_hook_typecheck_if_add Unexecuted instantiation: label_manager.c:_hook_typecheck_if_del Unexecuted instantiation: label_manager.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: label_manager.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: label_manager.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: label_manager.c:_hook_typecheck_frr_early_init Unexecuted instantiation: label_manager.c:_hook_typecheck_frr_late_init Unexecuted instantiation: label_manager.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: label_manager.c:_hook_typecheck_frr_config_post Unexecuted instantiation: label_manager.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: label_manager.c:_hook_typecheck_frr_fini Unexecuted instantiation: label_manager.c:_hook_typecheck_rib_update Unexecuted instantiation: label_manager.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: label_manager.c:_hook_typecheck_pw_install Unexecuted instantiation: label_manager.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: label_manager.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: label_manager.c:_hook_typecheck_lm_cbs_inited Unexecuted instantiation: label_manager.c:_hook_typecheck_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: label_manager.c:_hook_typecheck_zebra_pbr_iptable_get_stat Unexecuted instantiation: label_manager.c:_hook_typecheck_zebra_pbr_iptable_update Unexecuted instantiation: label_manager.c:_hook_typecheck_zebra_pbr_ipset_entry_update Unexecuted instantiation: label_manager.c:_hook_typecheck_zebra_pbr_ipset_update Unexecuted instantiation: label_manager.c:_hook_typecheck_srv6_manager_client_connect Unexecuted instantiation: label_manager.c:_hook_typecheck_srv6_manager_client_disconnect Unexecuted instantiation: label_manager.c:_hook_typecheck_srv6_manager_get_chunk Unexecuted instantiation: label_manager.c:_hook_typecheck_srv6_manager_release_chunk Unexecuted instantiation: label_manager.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: main.c:_hook_typecheck_zlog_init Unexecuted instantiation: main.c:_hook_typecheck_zlog_fini Unexecuted instantiation: main.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: main.c:_hook_typecheck_if_add Unexecuted instantiation: main.c:_hook_typecheck_if_del Unexecuted instantiation: main.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: main.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: main.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: main.c:_hook_typecheck_frr_early_init Unexecuted instantiation: main.c:_hook_typecheck_frr_late_init Unexecuted instantiation: main.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: main.c:_hook_typecheck_frr_config_post Unexecuted instantiation: main.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: main.c:_hook_typecheck_frr_fini Unexecuted instantiation: main.c:_hook_typecheck_routing_conf_event Unexecuted instantiation: main.c:_hook_typecheck_rib_update Unexecuted instantiation: main.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: main.c:_hook_typecheck_pw_install Unexecuted instantiation: main.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: main.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: main.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: main.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: main.c:_hook_typecheck_zebra_if_extra_info Unexecuted instantiation: main.c:_hook_typecheck_zebra_if_config_wr Unexecuted instantiation: main.c:_hook_typecheck_lm_client_connect Unexecuted instantiation: main.c:_hook_typecheck_lm_client_disconnect Unexecuted instantiation: main.c:_hook_typecheck_lm_get_chunk Unexecuted instantiation: main.c:_hook_typecheck_lm_release_chunk Unexecuted instantiation: main.c:_hook_typecheck_lm_cbs_inited Unexecuted instantiation: main.c:_hook_typecheck_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: main.c:_hook_typecheck_zebra_pbr_iptable_get_stat Unexecuted instantiation: main.c:_hook_typecheck_zebra_pbr_iptable_update Unexecuted instantiation: main.c:_hook_typecheck_zebra_pbr_ipset_entry_update Unexecuted instantiation: main.c:_hook_typecheck_zebra_pbr_ipset_update Unexecuted instantiation: main.c:_hook_typecheck_srv6_manager_client_connect Unexecuted instantiation: main.c:_hook_typecheck_srv6_manager_client_disconnect Unexecuted instantiation: main.c:_hook_typecheck_srv6_manager_get_chunk Unexecuted instantiation: main.c:_hook_typecheck_srv6_manager_release_chunk Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_zlog_init Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_zlog_fini Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_if_add Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_if_del Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_frr_early_init Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_frr_late_init Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_frr_config_post Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_frr_fini Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_rib_update Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_pw_install Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: redistribute.c:_hook_typecheck_zlog_init Unexecuted instantiation: redistribute.c:_hook_typecheck_zlog_fini Unexecuted instantiation: redistribute.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: redistribute.c:_hook_typecheck_if_add Unexecuted instantiation: redistribute.c:_hook_typecheck_if_del Unexecuted instantiation: redistribute.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: redistribute.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: redistribute.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: redistribute.c:_hook_typecheck_frr_early_init Unexecuted instantiation: redistribute.c:_hook_typecheck_frr_late_init Unexecuted instantiation: redistribute.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: redistribute.c:_hook_typecheck_frr_config_post Unexecuted instantiation: redistribute.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: redistribute.c:_hook_typecheck_frr_fini Unexecuted instantiation: redistribute.c:_hook_typecheck_rib_update Unexecuted instantiation: redistribute.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: redistribute.c:_hook_typecheck_pw_install Unexecuted instantiation: redistribute.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: redistribute.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: redistribute.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: redistribute.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: redistribute.c:_hook_typecheck_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: redistribute.c:_hook_typecheck_zebra_pbr_iptable_get_stat Unexecuted instantiation: redistribute.c:_hook_typecheck_zebra_pbr_iptable_update Unexecuted instantiation: redistribute.c:_hook_typecheck_zebra_pbr_ipset_entry_update Unexecuted instantiation: redistribute.c:_hook_typecheck_zebra_pbr_ipset_update Unexecuted instantiation: redistribute.c:_hook_typecheck_lm_client_connect Unexecuted instantiation: redistribute.c:_hook_typecheck_lm_client_disconnect Unexecuted instantiation: redistribute.c:_hook_typecheck_lm_get_chunk Unexecuted instantiation: redistribute.c:_hook_typecheck_lm_release_chunk Unexecuted instantiation: redistribute.c:_hook_typecheck_lm_cbs_inited Unexecuted instantiation: redistribute.c:_hook_typecheck_srv6_manager_client_connect Unexecuted instantiation: redistribute.c:_hook_typecheck_srv6_manager_client_disconnect Unexecuted instantiation: redistribute.c:_hook_typecheck_srv6_manager_get_chunk Unexecuted instantiation: redistribute.c:_hook_typecheck_srv6_manager_release_chunk Unexecuted instantiation: redistribute.c:_hook_typecheck_zebra_if_extra_info Unexecuted instantiation: redistribute.c:_hook_typecheck_zebra_if_config_wr Unexecuted instantiation: router-id.c:_hook_typecheck_if_add Unexecuted instantiation: router-id.c:_hook_typecheck_if_del Unexecuted instantiation: router-id.c:_hook_typecheck_zlog_init Unexecuted instantiation: router-id.c:_hook_typecheck_zlog_fini Unexecuted instantiation: router-id.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: router-id.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: router-id.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: router-id.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: router-id.c:_hook_typecheck_frr_early_init Unexecuted instantiation: router-id.c:_hook_typecheck_frr_late_init Unexecuted instantiation: router-id.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: router-id.c:_hook_typecheck_frr_config_post Unexecuted instantiation: router-id.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: router-id.c:_hook_typecheck_frr_fini Unexecuted instantiation: router-id.c:_hook_typecheck_rib_update Unexecuted instantiation: router-id.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: router-id.c:_hook_typecheck_pw_install Unexecuted instantiation: router-id.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: router-id.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: router-id.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: router-id.c:_hook_typecheck_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: router-id.c:_hook_typecheck_zebra_pbr_iptable_get_stat Unexecuted instantiation: router-id.c:_hook_typecheck_zebra_pbr_iptable_update Unexecuted instantiation: router-id.c:_hook_typecheck_zebra_pbr_ipset_entry_update Unexecuted instantiation: router-id.c:_hook_typecheck_zebra_pbr_ipset_update Unexecuted instantiation: router-id.c:_hook_typecheck_lm_client_connect Unexecuted instantiation: router-id.c:_hook_typecheck_lm_client_disconnect Unexecuted instantiation: router-id.c:_hook_typecheck_lm_get_chunk Unexecuted instantiation: router-id.c:_hook_typecheck_lm_release_chunk Unexecuted instantiation: router-id.c:_hook_typecheck_lm_cbs_inited Unexecuted instantiation: router-id.c:_hook_typecheck_srv6_manager_client_connect Unexecuted instantiation: router-id.c:_hook_typecheck_srv6_manager_client_disconnect Unexecuted instantiation: router-id.c:_hook_typecheck_srv6_manager_get_chunk Unexecuted instantiation: router-id.c:_hook_typecheck_srv6_manager_release_chunk Unexecuted instantiation: rt_netlink.c:_hook_typecheck_if_add Unexecuted instantiation: rt_netlink.c:_hook_typecheck_if_del Unexecuted instantiation: rt_netlink.c:_hook_typecheck_zlog_init Unexecuted instantiation: rt_netlink.c:_hook_typecheck_zlog_fini Unexecuted instantiation: rt_netlink.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: rt_netlink.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: rt_netlink.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: rt_netlink.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: rt_netlink.c:_hook_typecheck_frr_early_init Unexecuted instantiation: rt_netlink.c:_hook_typecheck_frr_late_init Unexecuted instantiation: rt_netlink.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: rt_netlink.c:_hook_typecheck_frr_config_post Unexecuted instantiation: rt_netlink.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: rt_netlink.c:_hook_typecheck_frr_fini Unexecuted instantiation: rt_netlink.c:_hook_typecheck_rib_update Unexecuted instantiation: rt_netlink.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: rt_netlink.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: rt_netlink.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: rt_netlink.c:_hook_typecheck_pw_install Unexecuted instantiation: rt_netlink.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: rt_netlink.c:_hook_typecheck_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: rt_netlink.c:_hook_typecheck_zebra_pbr_iptable_get_stat Unexecuted instantiation: rt_netlink.c:_hook_typecheck_zebra_pbr_iptable_update Unexecuted instantiation: rt_netlink.c:_hook_typecheck_zebra_pbr_ipset_entry_update Unexecuted instantiation: rt_netlink.c:_hook_typecheck_zebra_pbr_ipset_update Unexecuted instantiation: rt_netlink.c:_hook_typecheck_lm_client_connect Unexecuted instantiation: rt_netlink.c:_hook_typecheck_lm_client_disconnect Unexecuted instantiation: rt_netlink.c:_hook_typecheck_lm_get_chunk Unexecuted instantiation: rt_netlink.c:_hook_typecheck_lm_release_chunk Unexecuted instantiation: rt_netlink.c:_hook_typecheck_lm_cbs_inited Unexecuted instantiation: rt_netlink.c:_hook_typecheck_srv6_manager_client_connect Unexecuted instantiation: rt_netlink.c:_hook_typecheck_srv6_manager_client_disconnect Unexecuted instantiation: rt_netlink.c:_hook_typecheck_srv6_manager_get_chunk Unexecuted instantiation: rt_netlink.c:_hook_typecheck_srv6_manager_release_chunk Unexecuted instantiation: rt_netlink.c:_hook_typecheck_zebra_if_extra_info Unexecuted instantiation: rt_netlink.c:_hook_typecheck_zebra_if_config_wr Unexecuted instantiation: rt_netlink.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: rt_netlink.c:_hook_typecheck_zebra_rmac_update Unexecuted instantiation: rtadv.c:_hook_typecheck_zebra_if_extra_info Unexecuted instantiation: rtadv.c:_hook_typecheck_zebra_if_config_wr Unexecuted instantiation: rtadv.c:_hook_typecheck_if_add Unexecuted instantiation: rtadv.c:_hook_typecheck_if_del Unexecuted instantiation: rtadv.c:_hook_typecheck_zlog_init Unexecuted instantiation: rtadv.c:_hook_typecheck_zlog_fini Unexecuted instantiation: rtadv.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: rtadv.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: rtadv.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: rtadv.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: rtadv.c:_hook_typecheck_frr_early_init Unexecuted instantiation: rtadv.c:_hook_typecheck_frr_late_init Unexecuted instantiation: rtadv.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: rtadv.c:_hook_typecheck_frr_config_post Unexecuted instantiation: rtadv.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: rtadv.c:_hook_typecheck_frr_fini Unexecuted instantiation: rtadv.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: rtadv.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: rtadv.c:_hook_typecheck_rib_update Unexecuted instantiation: rtadv.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: rtadv.c:_hook_typecheck_pw_install Unexecuted instantiation: rtadv.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: rtadv.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: rtadv.c:_hook_typecheck_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: rtadv.c:_hook_typecheck_zebra_pbr_iptable_get_stat Unexecuted instantiation: rtadv.c:_hook_typecheck_zebra_pbr_iptable_update Unexecuted instantiation: rtadv.c:_hook_typecheck_zebra_pbr_ipset_entry_update Unexecuted instantiation: rtadv.c:_hook_typecheck_zebra_pbr_ipset_update Unexecuted instantiation: rtadv.c:_hook_typecheck_lm_client_connect Unexecuted instantiation: rtadv.c:_hook_typecheck_lm_client_disconnect Unexecuted instantiation: rtadv.c:_hook_typecheck_lm_get_chunk Unexecuted instantiation: rtadv.c:_hook_typecheck_lm_release_chunk Unexecuted instantiation: rtadv.c:_hook_typecheck_lm_cbs_inited Unexecuted instantiation: rtadv.c:_hook_typecheck_srv6_manager_client_connect Unexecuted instantiation: rtadv.c:_hook_typecheck_srv6_manager_client_disconnect Unexecuted instantiation: rtadv.c:_hook_typecheck_srv6_manager_get_chunk Unexecuted instantiation: rtadv.c:_hook_typecheck_srv6_manager_release_chunk Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_zlog_init Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_zlog_fini Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_if_add Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_if_del Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_frr_early_init Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_frr_late_init Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_frr_config_post Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_frr_fini Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_rib_update Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_pw_install Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_zebra_pbr_iptable_get_stat Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_zebra_pbr_iptable_update Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_zebra_pbr_ipset_entry_update Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_zebra_pbr_ipset_update Unexecuted instantiation: rule_netlink.c:_hook_typecheck_if_add Unexecuted instantiation: rule_netlink.c:_hook_typecheck_if_del Unexecuted instantiation: rule_netlink.c:_hook_typecheck_zlog_init Unexecuted instantiation: rule_netlink.c:_hook_typecheck_zlog_fini Unexecuted instantiation: rule_netlink.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: rule_netlink.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: rule_netlink.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: rule_netlink.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: rule_netlink.c:_hook_typecheck_frr_early_init Unexecuted instantiation: rule_netlink.c:_hook_typecheck_frr_late_init Unexecuted instantiation: rule_netlink.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: rule_netlink.c:_hook_typecheck_frr_config_post Unexecuted instantiation: rule_netlink.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: rule_netlink.c:_hook_typecheck_frr_fini Unexecuted instantiation: rule_netlink.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: rule_netlink.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: rule_netlink.c:_hook_typecheck_rib_update Unexecuted instantiation: rule_netlink.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: rule_netlink.c:_hook_typecheck_pw_install Unexecuted instantiation: rule_netlink.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: rule_netlink.c:_hook_typecheck_zebra_if_extra_info Unexecuted instantiation: rule_netlink.c:_hook_typecheck_zebra_if_config_wr Unexecuted instantiation: rule_netlink.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: rule_netlink.c:_hook_typecheck_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: rule_netlink.c:_hook_typecheck_zebra_pbr_iptable_get_stat Unexecuted instantiation: rule_netlink.c:_hook_typecheck_zebra_pbr_iptable_update Unexecuted instantiation: rule_netlink.c:_hook_typecheck_zebra_pbr_ipset_entry_update Unexecuted instantiation: rule_netlink.c:_hook_typecheck_zebra_pbr_ipset_update Unexecuted instantiation: table_manager.c:_hook_typecheck_zlog_init Unexecuted instantiation: table_manager.c:_hook_typecheck_zlog_fini Unexecuted instantiation: table_manager.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: table_manager.c:_hook_typecheck_if_add Unexecuted instantiation: table_manager.c:_hook_typecheck_if_del Unexecuted instantiation: table_manager.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: table_manager.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: table_manager.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: table_manager.c:_hook_typecheck_frr_early_init Unexecuted instantiation: table_manager.c:_hook_typecheck_frr_late_init Unexecuted instantiation: table_manager.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: table_manager.c:_hook_typecheck_frr_config_post Unexecuted instantiation: table_manager.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: table_manager.c:_hook_typecheck_frr_fini Unexecuted instantiation: table_manager.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: table_manager.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: table_manager.c:_hook_typecheck_rib_update Unexecuted instantiation: table_manager.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: table_manager.c:_hook_typecheck_pw_install Unexecuted instantiation: table_manager.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: table_manager.c:_hook_typecheck_lm_client_connect Unexecuted instantiation: table_manager.c:_hook_typecheck_lm_client_disconnect Unexecuted instantiation: table_manager.c:_hook_typecheck_lm_get_chunk Unexecuted instantiation: table_manager.c:_hook_typecheck_lm_release_chunk Unexecuted instantiation: table_manager.c:_hook_typecheck_lm_cbs_inited Unexecuted instantiation: tc_netlink.c:_hook_typecheck_if_add Unexecuted instantiation: tc_netlink.c:_hook_typecheck_if_del Unexecuted instantiation: tc_netlink.c:_hook_typecheck_zlog_init Unexecuted instantiation: tc_netlink.c:_hook_typecheck_zlog_fini Unexecuted instantiation: tc_netlink.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: tc_netlink.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: tc_netlink.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: tc_netlink.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: tc_netlink.c:_hook_typecheck_frr_early_init Unexecuted instantiation: tc_netlink.c:_hook_typecheck_frr_late_init Unexecuted instantiation: tc_netlink.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: tc_netlink.c:_hook_typecheck_frr_config_post Unexecuted instantiation: tc_netlink.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: tc_netlink.c:_hook_typecheck_frr_fini Unexecuted instantiation: tc_netlink.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: tc_netlink.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: tc_netlink.c:_hook_typecheck_rib_update Unexecuted instantiation: tc_netlink.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: tc_netlink.c:_hook_typecheck_pw_install Unexecuted instantiation: tc_netlink.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: tc_netlink.c:_hook_typecheck_zebra_if_extra_info Unexecuted instantiation: tc_netlink.c:_hook_typecheck_zebra_if_config_wr Unexecuted instantiation: tc_netlink.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: zapi_msg.c:_hook_typecheck_if_add Unexecuted instantiation: zapi_msg.c:_hook_typecheck_if_del Unexecuted instantiation: zapi_msg.c:_hook_typecheck_zlog_init Unexecuted instantiation: zapi_msg.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zapi_msg.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zapi_msg.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zapi_msg.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zapi_msg.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zapi_msg.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zapi_msg.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zapi_msg.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zapi_msg.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zapi_msg.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zapi_msg.c:_hook_typecheck_frr_fini Unexecuted instantiation: zapi_msg.c:_hook_typecheck_rib_update Unexecuted instantiation: zapi_msg.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zapi_msg.c:_hook_typecheck_pw_install Unexecuted instantiation: zapi_msg.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zapi_msg.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zapi_msg.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zapi_msg.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: zapi_msg.c:_hook_typecheck_zebra_if_extra_info Unexecuted instantiation: zapi_msg.c:_hook_typecheck_zebra_if_config_wr Unexecuted instantiation: zapi_msg.c:_hook_typecheck_zebra_rmac_update Unexecuted instantiation: zapi_msg.c:_hook_typecheck_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: zapi_msg.c:_hook_typecheck_zebra_pbr_iptable_get_stat Unexecuted instantiation: zapi_msg.c:_hook_typecheck_zebra_pbr_iptable_update Unexecuted instantiation: zapi_msg.c:_hook_typecheck_zebra_pbr_ipset_entry_update Unexecuted instantiation: zapi_msg.c:_hook_typecheck_zebra_pbr_ipset_update Unexecuted instantiation: zapi_msg.c:_hook_typecheck_lm_client_connect Unexecuted instantiation: zapi_msg.c:_hook_typecheck_lm_client_disconnect Unexecuted instantiation: zapi_msg.c:_hook_typecheck_lm_get_chunk Unexecuted instantiation: zapi_msg.c:_hook_typecheck_lm_release_chunk Unexecuted instantiation: zapi_msg.c:_hook_typecheck_lm_cbs_inited Unexecuted instantiation: zapi_msg.c:_hook_typecheck_srv6_manager_client_connect Unexecuted instantiation: zapi_msg.c:_hook_typecheck_srv6_manager_client_disconnect Unexecuted instantiation: zapi_msg.c:_hook_typecheck_srv6_manager_get_chunk Unexecuted instantiation: zapi_msg.c:_hook_typecheck_srv6_manager_release_chunk Unexecuted instantiation: zapi_msg.c:_hook_typecheck_zebra_mlag_private_write_data Unexecuted instantiation: zapi_msg.c:_hook_typecheck_zebra_mlag_private_monitor_state Unexecuted instantiation: zapi_msg.c:_hook_typecheck_zebra_mlag_private_open_channel Unexecuted instantiation: zapi_msg.c:_hook_typecheck_zebra_mlag_private_close_channel Unexecuted instantiation: zapi_msg.c:_hook_typecheck_zebra_mlag_private_cleanup_data Unexecuted instantiation: zebra_affinitymap.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_affinitymap.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_affinitymap.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_affinitymap.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_affinitymap.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_affinitymap.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_affinitymap.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_affinitymap.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_affinitymap.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_affinitymap.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_affinitymap.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_affinitymap.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_affinitymap.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_affinitymap.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_affinitymap.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_affinitymap.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_affinitymap.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_affinitymap.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_pw_install Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_zebra_if_extra_info Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_zebra_if_config_wr Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_zebra_rmac_update Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_zebra_pbr_iptable_get_stat Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_zebra_pbr_iptable_update Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_zebra_pbr_ipset_entry_update Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_zebra_pbr_ipset_update Unexecuted instantiation: zebra_errors.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_errors.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_errors.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_errors.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_errors.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_errors.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_errors.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_errors.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_errors.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_errors.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_errors.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_errors.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_errors.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_errors.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_gr.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_gr.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_gr.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_gr.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_gr.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_gr.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_gr.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_gr.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_gr.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_gr.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_gr.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_gr.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_gr.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_gr.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_gr.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_gr.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_gr.c:_hook_typecheck_pw_install Unexecuted instantiation: zebra_gr.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zebra_gr.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_gr.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_gr.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: zebra_gr.c:_hook_typecheck_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: zebra_gr.c:_hook_typecheck_zebra_pbr_iptable_get_stat Unexecuted instantiation: zebra_gr.c:_hook_typecheck_zebra_pbr_iptable_update Unexecuted instantiation: zebra_gr.c:_hook_typecheck_zebra_pbr_ipset_entry_update Unexecuted instantiation: zebra_gr.c:_hook_typecheck_zebra_pbr_ipset_update Unexecuted instantiation: zebra_gr.c:_hook_typecheck_lm_client_connect Unexecuted instantiation: zebra_gr.c:_hook_typecheck_lm_client_disconnect Unexecuted instantiation: zebra_gr.c:_hook_typecheck_lm_get_chunk Unexecuted instantiation: zebra_gr.c:_hook_typecheck_lm_release_chunk Unexecuted instantiation: zebra_gr.c:_hook_typecheck_lm_cbs_inited Unexecuted instantiation: zebra_gr.c:_hook_typecheck_srv6_manager_client_connect Unexecuted instantiation: zebra_gr.c:_hook_typecheck_srv6_manager_client_disconnect Unexecuted instantiation: zebra_gr.c:_hook_typecheck_srv6_manager_get_chunk Unexecuted instantiation: zebra_gr.c:_hook_typecheck_srv6_manager_release_chunk Unexecuted instantiation: zebra_l2.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_l2.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_l2.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_l2.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_l2.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_l2.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_l2.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_l2.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_l2.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_l2.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_l2.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_l2.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_l2.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_l2.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_l2.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_l2.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_l2.c:_hook_typecheck_pw_install Unexecuted instantiation: zebra_l2.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zebra_l2.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_l2.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_l2.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: zebra_l2.c:_hook_typecheck_zebra_if_extra_info Unexecuted instantiation: zebra_l2.c:_hook_typecheck_zebra_if_config_wr Unexecuted instantiation: zebra_l2.c:_hook_typecheck_zebra_rmac_update Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_pw_install Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_zebra_if_extra_info Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_zebra_if_config_wr Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_zebra_rmac_update Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_pw_install Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_zebra_if_extra_info Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_zebra_if_config_wr Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_zebra_rmac_update Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_pw_install Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_zebra_if_extra_info Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_zebra_if_config_wr Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_zebra_rmac_update Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_pw_install Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_zebra_if_extra_info Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_zebra_if_config_wr Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_zebra_rmac_update Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_zebra_mlag_private_write_data Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_zebra_mlag_private_monitor_state Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_zebra_mlag_private_open_channel Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_zebra_mlag_private_close_channel Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_zebra_mlag_private_cleanup_data Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_pw_install Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_zebra_pbr_iptable_get_stat Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_zebra_pbr_iptable_update Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_zebra_pbr_ipset_entry_update Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_zebra_pbr_ipset_update Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_lm_client_connect Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_lm_client_disconnect Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_lm_get_chunk Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_lm_release_chunk Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_lm_cbs_inited Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_srv6_manager_client_connect Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_srv6_manager_client_disconnect Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_srv6_manager_get_chunk Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_srv6_manager_release_chunk Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_pw_install Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_zebra_pbr_iptable_get_stat Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_zebra_pbr_iptable_update Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_zebra_pbr_ipset_entry_update Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_zebra_pbr_ipset_update Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_lm_client_connect Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_lm_client_disconnect Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_lm_get_chunk Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_lm_release_chunk Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_lm_cbs_inited Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_srv6_manager_client_connect Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_srv6_manager_client_disconnect Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_srv6_manager_get_chunk Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_srv6_manager_release_chunk Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_pw_install Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_zebra_if_extra_info Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_zebra_if_config_wr Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_pw_install Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_mpls_null.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_mpls_null.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_mpls_null.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_mpls_null.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_mpls_null.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_mpls_null.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_mpls_null.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_mpls_null.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_mpls_null.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_mpls_null.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_mpls_null.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_mpls_null.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_mpls_null.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_mpls_null.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_mpls_null.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_mpls_null.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_mpls_null.c:_hook_typecheck_pw_install Unexecuted instantiation: zebra_mpls_null.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zebra_mpls_null.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_mpls_null.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_mpls_vty.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_mpls_vty.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_mpls_vty.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_mpls_vty.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_mpls_vty.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_mpls_vty.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_mpls_vty.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_mpls_vty.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_mpls_vty.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_mpls_vty.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_mpls_vty.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_mpls_vty.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_mpls_vty.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_mpls_vty.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_mpls_vty.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_mpls_vty.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_mpls_vty.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_mpls_vty.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_mpls_vty.c:_hook_typecheck_pw_install Unexecuted instantiation: zebra_mpls_vty.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_srv6_manager_get_chunk Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_srv6_manager_release_chunk Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_pw_install Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_zebra_pbr_iptable_get_stat Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_zebra_pbr_iptable_update Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_zebra_pbr_ipset_entry_update Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_zebra_pbr_ipset_update Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_lm_client_connect Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_lm_client_disconnect Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_lm_get_chunk Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_lm_release_chunk Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_lm_cbs_inited Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_srv6_manager_client_connect Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_srv6_manager_client_disconnect Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_pw_install Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_srv6_manager_client_connect Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_srv6_manager_client_disconnect Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_srv6_manager_get_chunk Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_srv6_manager_release_chunk Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_pw_install Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: zebra_nb.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_nb.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_nb.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_nb.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_nb.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_nb.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_nb.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_nb.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_nb.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_nb.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_nb.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_nb.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_nb.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_nb.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_nb.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_nb.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_nb.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_nb.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_nb.c:_hook_typecheck_pw_install Unexecuted instantiation: zebra_nb.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zebra_nb.c:_hook_typecheck_zebra_if_extra_info Unexecuted instantiation: zebra_nb.c:_hook_typecheck_zebra_if_config_wr Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_pw_install Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_zebra_if_extra_info Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_zebra_if_config_wr Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_zebra_rmac_update Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_pw_install Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_zebra_if_extra_info Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_zebra_if_config_wr Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_pw_install Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_zebra_if_extra_info Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_zebra_if_config_wr Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: zebra_netns_id.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_netns_id.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_netns_id.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_netns_id.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_netns_id.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_netns_id.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_netns_id.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_netns_id.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_netns_id.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_netns_id.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_netns_id.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_netns_id.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_netns_id.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_netns_id.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_netns_id.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_netns_id.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_netns_id.c:_hook_typecheck_pw_install Unexecuted instantiation: zebra_netns_id.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zebra_netns_id.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_netns_id.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_pw_install Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_zebra_if_extra_info Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_zebra_if_config_wr Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_pw_install Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_zebra_if_extra_info Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_zebra_if_config_wr Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_zebra_pbr_iptable_get_stat Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_zebra_pbr_iptable_update Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_zebra_pbr_ipset_entry_update Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_zebra_pbr_ipset_update Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_lm_client_connect Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_lm_client_disconnect Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_lm_get_chunk Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_lm_release_chunk Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_lm_cbs_inited Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_srv6_manager_client_connect Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_srv6_manager_client_disconnect Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_srv6_manager_get_chunk Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_srv6_manager_release_chunk Unexecuted instantiation: zebra_ns.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_ns.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_ns.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_ns.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_ns.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_ns.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_ns.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_ns.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_ns.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_ns.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_ns.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_ns.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_ns.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_ns.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_ns.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_ns.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_ns.c:_hook_typecheck_pw_install Unexecuted instantiation: zebra_ns.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zebra_ns.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_ns.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_ns.c:_hook_typecheck_zebra_if_extra_info Unexecuted instantiation: zebra_ns.c:_hook_typecheck_zebra_if_config_wr Unexecuted instantiation: zebra_ns.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: zebra_ns.c:_hook_typecheck_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: zebra_ns.c:_hook_typecheck_zebra_pbr_iptable_get_stat Unexecuted instantiation: zebra_ns.c:_hook_typecheck_zebra_pbr_iptable_update Unexecuted instantiation: zebra_ns.c:_hook_typecheck_zebra_pbr_ipset_entry_update Unexecuted instantiation: zebra_ns.c:_hook_typecheck_zebra_pbr_ipset_update Unexecuted instantiation: zebra_opaque.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_opaque.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_opaque.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_opaque.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_opaque.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_opaque.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_opaque.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_opaque.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_opaque.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_opaque.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_opaque.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_opaque.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_opaque.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_opaque.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_opaque.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: zebra_opaque.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_opaque.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_opaque.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_opaque.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_pw_install Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_zebra_pbr_iptable_get_stat Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_zebra_pbr_iptable_update Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_zebra_pbr_ipset_entry_update Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_zebra_pbr_ipset_update Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_lm_client_connect Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_lm_client_disconnect Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_lm_get_chunk Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_lm_release_chunk Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_lm_cbs_inited Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_srv6_manager_client_connect Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_srv6_manager_client_disconnect Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_srv6_manager_get_chunk Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_srv6_manager_release_chunk Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_pw_install Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_zebra_if_extra_info Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_zebra_if_config_wr Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_pw_install Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_zebra_pbr_iptable_get_stat Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_zebra_pbr_iptable_update Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_zebra_pbr_ipset_entry_update Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_zebra_pbr_ipset_update Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_lm_client_connect Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_lm_client_disconnect Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_lm_get_chunk Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_lm_release_chunk Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_lm_cbs_inited Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_srv6_manager_client_connect Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_srv6_manager_client_disconnect Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_srv6_manager_get_chunk Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_srv6_manager_release_chunk Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_zebra_if_extra_info Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_zebra_if_config_wr Unexecuted instantiation: zebra_pw.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_pw.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_pw.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_pw.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_pw.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_pw.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_pw.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_pw.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_pw.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_pw.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_pw.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_pw.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_pw.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_pw.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_pw.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_pw.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: zebra_pw.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_pw.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_pw.c:_hook_typecheck_pw_install Unexecuted instantiation: zebra_pw.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zebra_pw.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_pw.c:_hook_typecheck_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: zebra_pw.c:_hook_typecheck_zebra_pbr_iptable_get_stat Unexecuted instantiation: zebra_pw.c:_hook_typecheck_zebra_pbr_iptable_update Unexecuted instantiation: zebra_pw.c:_hook_typecheck_zebra_pbr_ipset_entry_update Unexecuted instantiation: zebra_pw.c:_hook_typecheck_zebra_pbr_ipset_update Unexecuted instantiation: zebra_pw.c:_hook_typecheck_lm_client_connect Unexecuted instantiation: zebra_pw.c:_hook_typecheck_lm_client_disconnect Unexecuted instantiation: zebra_pw.c:_hook_typecheck_lm_get_chunk Unexecuted instantiation: zebra_pw.c:_hook_typecheck_lm_release_chunk Unexecuted instantiation: zebra_pw.c:_hook_typecheck_lm_cbs_inited Unexecuted instantiation: zebra_pw.c:_hook_typecheck_srv6_manager_client_connect Unexecuted instantiation: zebra_pw.c:_hook_typecheck_srv6_manager_client_disconnect Unexecuted instantiation: zebra_pw.c:_hook_typecheck_srv6_manager_get_chunk Unexecuted instantiation: zebra_pw.c:_hook_typecheck_srv6_manager_release_chunk Unexecuted instantiation: zebra_rib.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_rib.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_rib.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_rib.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_rib.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_rib.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_rib.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_rib.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_rib.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_rib.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_rib.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_rib.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_rib.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_rib.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_rib.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_rib.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_rib.c:_hook_typecheck_pw_install Unexecuted instantiation: zebra_rib.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zebra_rib.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_rib.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_rib.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: zebra_rib.c:_hook_typecheck_zebra_if_extra_info Unexecuted instantiation: zebra_rib.c:_hook_typecheck_zebra_if_config_wr Unexecuted instantiation: zebra_rib.c:_hook_typecheck_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: zebra_rib.c:_hook_typecheck_zebra_pbr_iptable_get_stat Unexecuted instantiation: zebra_rib.c:_hook_typecheck_zebra_pbr_iptable_update Unexecuted instantiation: zebra_rib.c:_hook_typecheck_zebra_pbr_ipset_entry_update Unexecuted instantiation: zebra_rib.c:_hook_typecheck_zebra_pbr_ipset_update Unexecuted instantiation: zebra_rib.c:_hook_typecheck_lm_client_connect Unexecuted instantiation: zebra_rib.c:_hook_typecheck_lm_client_disconnect Unexecuted instantiation: zebra_rib.c:_hook_typecheck_lm_get_chunk Unexecuted instantiation: zebra_rib.c:_hook_typecheck_lm_release_chunk Unexecuted instantiation: zebra_rib.c:_hook_typecheck_lm_cbs_inited Unexecuted instantiation: zebra_rib.c:_hook_typecheck_srv6_manager_client_connect Unexecuted instantiation: zebra_rib.c:_hook_typecheck_srv6_manager_client_disconnect Unexecuted instantiation: zebra_rib.c:_hook_typecheck_srv6_manager_get_chunk Unexecuted instantiation: zebra_rib.c:_hook_typecheck_srv6_manager_release_chunk Unexecuted instantiation: zebra_rib.c:_hook_typecheck_zebra_rmac_update Unexecuted instantiation: zebra_router.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_router.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_router.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_router.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_router.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_router.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_router.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_router.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_router.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_router.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_router.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_router.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_router.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_router.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_router.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_router.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_router.c:_hook_typecheck_pw_install Unexecuted instantiation: zebra_router.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zebra_router.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_router.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_router.c:_hook_typecheck_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: zebra_router.c:_hook_typecheck_zebra_pbr_iptable_get_stat Unexecuted instantiation: zebra_router.c:_hook_typecheck_zebra_pbr_iptable_update Unexecuted instantiation: zebra_router.c:_hook_typecheck_zebra_pbr_ipset_entry_update Unexecuted instantiation: zebra_router.c:_hook_typecheck_zebra_pbr_ipset_update Unexecuted instantiation: zebra_router.c:_hook_typecheck_zebra_if_extra_info Unexecuted instantiation: zebra_router.c:_hook_typecheck_zebra_if_config_wr Unexecuted instantiation: zebra_router.c:_hook_typecheck_zebra_mlag_private_write_data Unexecuted instantiation: zebra_router.c:_hook_typecheck_zebra_mlag_private_monitor_state Unexecuted instantiation: zebra_router.c:_hook_typecheck_zebra_mlag_private_open_channel Unexecuted instantiation: zebra_router.c:_hook_typecheck_zebra_mlag_private_close_channel Unexecuted instantiation: zebra_router.c:_hook_typecheck_zebra_mlag_private_cleanup_data Unexecuted instantiation: zebra_router.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_pw_install Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_zebra_if_extra_info Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_zebra_if_config_wr Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_pw_install Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: zebra_routemap_nb.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_routemap_nb.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_routemap_nb.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_routemap_nb.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_routemap_nb.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_routemap_nb.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_routemap_nb.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_routemap_nb.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_routemap_nb.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_routemap_nb.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_routemap_nb.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_routemap_nb.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_routemap_nb.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_routemap_nb.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_routemap_nb_config.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_routemap_nb_config.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_routemap_nb_config.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_routemap_nb_config.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_routemap_nb_config.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_routemap_nb_config.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_routemap_nb_config.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_routemap_nb_config.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_routemap_nb_config.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_routemap_nb_config.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_routemap_nb_config.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_routemap_nb_config.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_routemap_nb_config.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_routemap_nb_config.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_routemap_nb_config.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_routemap_nb_config.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_script.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_script.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_script.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_script.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_script.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_script.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_script.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_script.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_script.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_script.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_script.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_script.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_script.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_script.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_script.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_script.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_script.c:_hook_typecheck_pw_install Unexecuted instantiation: zebra_script.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zebra_script.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_script.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_script.c:_hook_typecheck_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: zebra_script.c:_hook_typecheck_zebra_pbr_iptable_get_stat Unexecuted instantiation: zebra_script.c:_hook_typecheck_zebra_pbr_iptable_update Unexecuted instantiation: zebra_script.c:_hook_typecheck_zebra_pbr_ipset_entry_update Unexecuted instantiation: zebra_script.c:_hook_typecheck_zebra_pbr_ipset_update Unexecuted instantiation: zebra_srte.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_srte.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_srte.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_srte.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_srte.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_srte.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_srte.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_srte.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_srte.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_srte.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_srte.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_srte.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_srte.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_srte.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_srte.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_srte.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_srte.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_srte.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_srte.c:_hook_typecheck_pw_install Unexecuted instantiation: zebra_srte.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zebra_srte.c:_hook_typecheck_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: zebra_srte.c:_hook_typecheck_zebra_pbr_iptable_get_stat Unexecuted instantiation: zebra_srte.c:_hook_typecheck_zebra_pbr_iptable_update Unexecuted instantiation: zebra_srte.c:_hook_typecheck_zebra_pbr_ipset_entry_update Unexecuted instantiation: zebra_srte.c:_hook_typecheck_zebra_pbr_ipset_update Unexecuted instantiation: zebra_srte.c:_hook_typecheck_lm_client_connect Unexecuted instantiation: zebra_srte.c:_hook_typecheck_lm_client_disconnect Unexecuted instantiation: zebra_srte.c:_hook_typecheck_lm_get_chunk Unexecuted instantiation: zebra_srte.c:_hook_typecheck_lm_release_chunk Unexecuted instantiation: zebra_srte.c:_hook_typecheck_lm_cbs_inited Unexecuted instantiation: zebra_srte.c:_hook_typecheck_srv6_manager_client_connect Unexecuted instantiation: zebra_srte.c:_hook_typecheck_srv6_manager_client_disconnect Unexecuted instantiation: zebra_srte.c:_hook_typecheck_srv6_manager_get_chunk Unexecuted instantiation: zebra_srte.c:_hook_typecheck_srv6_manager_release_chunk Unexecuted instantiation: zebra_tc.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_tc.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_tc.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_tc.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_tc.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_tc.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_tc.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_tc.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_tc.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_tc.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_tc.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_tc.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_tc.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_tc.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_tc.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_tc.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_tc.c:_hook_typecheck_pw_install Unexecuted instantiation: zebra_tc.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zebra_tc.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_tc.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_tc.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_pw_install Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_zebra_pbr_iptable_get_stat Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_zebra_pbr_iptable_update Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_zebra_pbr_ipset_entry_update Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_zebra_pbr_ipset_update Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_lm_client_connect Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_lm_client_disconnect Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_lm_get_chunk Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_lm_release_chunk Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_lm_cbs_inited Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_srv6_manager_client_connect Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_srv6_manager_client_disconnect Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_srv6_manager_get_chunk Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_srv6_manager_release_chunk Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_zebra_if_extra_info Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_zebra_if_config_wr Unexecuted instantiation: zebra_vty.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_vty.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_vty.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_vty.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_vty.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_vty.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_vty.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_vty.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_vty.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_vty.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_vty.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_vty.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_vty.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_vty.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_vty.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_vty.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_vty.c:_hook_typecheck_pw_install Unexecuted instantiation: zebra_vty.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zebra_vty.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_vty.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_vty.c:_hook_typecheck_zebra_if_extra_info Unexecuted instantiation: zebra_vty.c:_hook_typecheck_zebra_if_config_wr Unexecuted instantiation: zebra_vty.c:_hook_typecheck_zebra_rmac_update Unexecuted instantiation: zebra_vty.c:_hook_typecheck_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: zebra_vty.c:_hook_typecheck_zebra_pbr_iptable_get_stat Unexecuted instantiation: zebra_vty.c:_hook_typecheck_zebra_pbr_iptable_update Unexecuted instantiation: zebra_vty.c:_hook_typecheck_zebra_pbr_ipset_entry_update Unexecuted instantiation: zebra_vty.c:_hook_typecheck_zebra_pbr_ipset_update Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_pw_install Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_zebra_if_extra_info Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_zebra_if_config_wr Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_zebra_rmac_update Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_pw_install Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_zebra_if_extra_info Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_zebra_if_config_wr Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_zebra_rmac_update Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_pw_install Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_zebra_if_extra_info Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_zebra_if_config_wr Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_zebra_rmac_update Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_zlog_init Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_if_add Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_if_del Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_frr_fini Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_rib_update Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_pw_install Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_zebra_if_extra_info Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_zebra_if_config_wr Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_zebra_pbr_iptable_get_stat Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_zebra_pbr_iptable_update Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_zebra_pbr_ipset_entry_update Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_zebra_pbr_ipset_update Unexecuted instantiation: zserv.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: zserv.c:_hook_typecheck_zlog_init Unexecuted instantiation: zserv.c:_hook_typecheck_zlog_fini Unexecuted instantiation: zserv.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: zserv.c:_hook_typecheck_if_add Unexecuted instantiation: zserv.c:_hook_typecheck_if_del Unexecuted instantiation: zserv.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: zserv.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: zserv.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: zserv.c:_hook_typecheck_frr_early_init Unexecuted instantiation: zserv.c:_hook_typecheck_frr_late_init Unexecuted instantiation: zserv.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: zserv.c:_hook_typecheck_frr_config_post Unexecuted instantiation: zserv.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: zserv.c:_hook_typecheck_frr_fini Unexecuted instantiation: zserv.c:_hook_typecheck_zebra_debug_show_debugging Unexecuted instantiation: zserv.c:_hook_typecheck_rib_update Unexecuted instantiation: zserv.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: zserv.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: zserv.c:_hook_typecheck_pw_install Unexecuted instantiation: zserv.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: zserv.c:_hook_typecheck_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: zserv.c:_hook_typecheck_zebra_pbr_iptable_get_stat Unexecuted instantiation: zserv.c:_hook_typecheck_zebra_pbr_iptable_update Unexecuted instantiation: zserv.c:_hook_typecheck_zebra_pbr_ipset_entry_update Unexecuted instantiation: zserv.c:_hook_typecheck_zebra_pbr_ipset_update Unexecuted instantiation: zserv.c:_hook_typecheck_lm_client_connect Unexecuted instantiation: zserv.c:_hook_typecheck_lm_client_disconnect Unexecuted instantiation: zserv.c:_hook_typecheck_lm_get_chunk Unexecuted instantiation: zserv.c:_hook_typecheck_lm_release_chunk Unexecuted instantiation: zserv.c:_hook_typecheck_lm_cbs_inited Unexecuted instantiation: zserv.c:_hook_typecheck_srv6_manager_client_connect Unexecuted instantiation: zserv.c:_hook_typecheck_srv6_manager_client_disconnect Unexecuted instantiation: zserv.c:_hook_typecheck_srv6_manager_get_chunk Unexecuted instantiation: zserv.c:_hook_typecheck_srv6_manager_release_chunk Unexecuted instantiation: debug_nl.c:_hook_typecheck_if_add Unexecuted instantiation: debug_nl.c:_hook_typecheck_if_del Unexecuted instantiation: debug_nl.c:_hook_typecheck_zlog_init Unexecuted instantiation: debug_nl.c:_hook_typecheck_zlog_fini Unexecuted instantiation: debug_nl.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: debug_nl.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: debug_nl.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: debug_nl.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: debug_nl.c:_hook_typecheck_frr_early_init Unexecuted instantiation: debug_nl.c:_hook_typecheck_frr_late_init Unexecuted instantiation: debug_nl.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: debug_nl.c:_hook_typecheck_frr_config_post Unexecuted instantiation: debug_nl.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: debug_nl.c:_hook_typecheck_frr_fini Unexecuted instantiation: debug_nl.c:_hook_typecheck_zserv_client_connect Unexecuted instantiation: debug_nl.c:_hook_typecheck_zserv_client_close Unexecuted instantiation: debug_nl.c:_hook_typecheck_rib_update Unexecuted instantiation: debug_nl.c:_hook_typecheck_rib_shutdown Unexecuted instantiation: debug_nl.c:_hook_typecheck_pw_install Unexecuted instantiation: debug_nl.c:_hook_typecheck_pw_uninstall Unexecuted instantiation: frr-zebra.yang.c:_hook_typecheck_if_add Unexecuted instantiation: frr-zebra.yang.c:_hook_typecheck_if_del Unexecuted instantiation: frr-zebra.yang.c:_hook_typecheck_zlog_init Unexecuted instantiation: frr-zebra.yang.c:_hook_typecheck_zlog_fini Unexecuted instantiation: frr-zebra.yang.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: frr-zebra-route-map.yang.c:_hook_typecheck_if_add Unexecuted instantiation: frr-zebra-route-map.yang.c:_hook_typecheck_if_del Unexecuted instantiation: frr-zebra-route-map.yang.c:_hook_typecheck_zlog_init Unexecuted instantiation: frr-zebra-route-map.yang.c:_hook_typecheck_zlog_fini Unexecuted instantiation: frr-zebra-route-map.yang.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_main.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_main.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_main.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_main.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_main.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_main.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_main.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_main.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_main.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_main.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_main.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_main.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_main.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_main.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_main.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_main.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_main.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_main.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_main.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_main.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_main.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_main.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_main.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_main.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_main.c:_hook_typecheck_bgp_packet_dump Unexecuted instantiation: bgp_main.c:_hook_typecheck_bgp_packet_send Unexecuted instantiation: frr-bgp-types.yang.c:_hook_typecheck_if_add Unexecuted instantiation: frr-bgp-types.yang.c:_hook_typecheck_if_del Unexecuted instantiation: frr-bgp-types.yang.c:_hook_typecheck_zlog_init Unexecuted instantiation: frr-bgp-types.yang.c:_hook_typecheck_zlog_fini Unexecuted instantiation: frr-bgp-types.yang.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: frr-bgp.yang.c:_hook_typecheck_if_add Unexecuted instantiation: frr-bgp.yang.c:_hook_typecheck_if_del Unexecuted instantiation: frr-bgp.yang.c:_hook_typecheck_zlog_init Unexecuted instantiation: frr-bgp.yang.c:_hook_typecheck_zlog_fini Unexecuted instantiation: frr-bgp.yang.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: frr-bgp-common-structure.yang.c:_hook_typecheck_if_add Unexecuted instantiation: frr-bgp-common-structure.yang.c:_hook_typecheck_if_del Unexecuted instantiation: frr-bgp-common-structure.yang.c:_hook_typecheck_zlog_init Unexecuted instantiation: frr-bgp-common-structure.yang.c:_hook_typecheck_zlog_fini Unexecuted instantiation: frr-bgp-common-structure.yang.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: frr-bgp-common.yang.c:_hook_typecheck_if_add Unexecuted instantiation: frr-bgp-common.yang.c:_hook_typecheck_if_del Unexecuted instantiation: frr-bgp-common.yang.c:_hook_typecheck_zlog_init Unexecuted instantiation: frr-bgp-common.yang.c:_hook_typecheck_zlog_fini Unexecuted instantiation: frr-bgp-common.yang.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: frr-bgp-common-multiprotocol.yang.c:_hook_typecheck_if_add Unexecuted instantiation: frr-bgp-common-multiprotocol.yang.c:_hook_typecheck_if_del Unexecuted instantiation: frr-bgp-common-multiprotocol.yang.c:_hook_typecheck_zlog_init Unexecuted instantiation: frr-bgp-common-multiprotocol.yang.c:_hook_typecheck_zlog_fini Unexecuted instantiation: frr-bgp-common-multiprotocol.yang.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: frr-bgp-neighbor.yang.c:_hook_typecheck_if_add Unexecuted instantiation: frr-bgp-neighbor.yang.c:_hook_typecheck_if_del Unexecuted instantiation: frr-bgp-neighbor.yang.c:_hook_typecheck_zlog_init Unexecuted instantiation: frr-bgp-neighbor.yang.c:_hook_typecheck_zlog_fini Unexecuted instantiation: frr-bgp-neighbor.yang.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: frr-bgp-peer-group.yang.c:_hook_typecheck_if_add Unexecuted instantiation: frr-bgp-peer-group.yang.c:_hook_typecheck_if_del Unexecuted instantiation: frr-bgp-peer-group.yang.c:_hook_typecheck_zlog_init Unexecuted instantiation: frr-bgp-peer-group.yang.c:_hook_typecheck_zlog_fini Unexecuted instantiation: frr-bgp-peer-group.yang.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: frr-bgp-bmp.yang.c:_hook_typecheck_if_add Unexecuted instantiation: frr-bgp-bmp.yang.c:_hook_typecheck_if_del Unexecuted instantiation: frr-bgp-bmp.yang.c:_hook_typecheck_zlog_init Unexecuted instantiation: frr-bgp-bmp.yang.c:_hook_typecheck_zlog_fini Unexecuted instantiation: frr-bgp-bmp.yang.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: frr-bgp-rpki.yang.c:_hook_typecheck_if_add Unexecuted instantiation: frr-bgp-rpki.yang.c:_hook_typecheck_if_del Unexecuted instantiation: frr-bgp-rpki.yang.c:_hook_typecheck_zlog_init Unexecuted instantiation: frr-bgp-rpki.yang.c:_hook_typecheck_zlog_fini Unexecuted instantiation: frr-bgp-rpki.yang.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: frr-deviations-bgp-datacenter.yang.c:_hook_typecheck_if_add Unexecuted instantiation: frr-deviations-bgp-datacenter.yang.c:_hook_typecheck_if_del Unexecuted instantiation: frr-deviations-bgp-datacenter.yang.c:_hook_typecheck_zlog_init Unexecuted instantiation: frr-deviations-bgp-datacenter.yang.c:_hook_typecheck_zlog_fini Unexecuted instantiation: frr-deviations-bgp-datacenter.yang.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: frr-bgp-filter.yang.c:_hook_typecheck_if_add Unexecuted instantiation: frr-bgp-filter.yang.c:_hook_typecheck_if_del Unexecuted instantiation: frr-bgp-filter.yang.c:_hook_typecheck_zlog_init Unexecuted instantiation: frr-bgp-filter.yang.c:_hook_typecheck_zlog_fini Unexecuted instantiation: frr-bgp-filter.yang.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: frr-bgp-route-map.yang.c:_hook_typecheck_if_add Unexecuted instantiation: frr-bgp-route-map.yang.c:_hook_typecheck_if_del Unexecuted instantiation: frr-bgp-route-map.yang.c:_hook_typecheck_zlog_init Unexecuted instantiation: frr-bgp-route-map.yang.c:_hook_typecheck_zlog_fini Unexecuted instantiation: frr-bgp-route-map.yang.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_attr.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_attr.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_attr.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_attr.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_attr.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_attr.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_attr.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_attr.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_attr.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_attr.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_attr.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_attr.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_attr.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_attr.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_attr.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_attr.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_attr.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_attr.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_attr.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_attr.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_attr.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_attr.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_attr.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_attr.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_attr.c:_hook_typecheck_bgp_packet_dump Unexecuted instantiation: bgp_attr.c:_hook_typecheck_bgp_packet_send Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_clist.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_clist.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_clist.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_clist.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_clist.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_clist.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_clist.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_clist.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_clist.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_clist.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_clist.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_clist.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_clist.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_clist.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_clist.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_clist.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_clist.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_clist.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_clist.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_clist.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_clist.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_clist.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_clist.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_clist.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_community.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_community.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_community.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_community.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_community.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_community.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_community.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_community.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_community.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_community.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_community.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_community.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_community.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_community.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_community.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_community.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_community.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_community.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_community.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_community.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_community.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_community.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_community.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_community.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_debug.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_debug.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_debug.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_debug.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_debug.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_debug.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_debug.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_debug.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_debug.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_debug.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_debug.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_debug.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_debug.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_debug.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_debug.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_debug.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_debug.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_debug.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_debug.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_debug.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_debug.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_debug.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_debug.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_debug.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_debug.c:_hook_typecheck_bgp_packet_dump Unexecuted instantiation: bgp_debug.c:_hook_typecheck_bgp_packet_send Unexecuted instantiation: bgp_dump.c:_hook_typecheck_bgp_packet_dump Unexecuted instantiation: bgp_dump.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_dump.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_dump.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_dump.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_dump.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_dump.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_dump.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_dump.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_dump.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_dump.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_dump.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_dump.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_dump.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_dump.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_dump.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_dump.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_dump.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_dump.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_dump.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_dump.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_dump.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_dump.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_dump.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_dump.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_dump.c:_hook_typecheck_bgp_packet_send Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_errors.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_errors.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_errors.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_errors.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_errors.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_errors.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_errors.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_errors.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_errors.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_errors.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_errors.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_errors.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_errors.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_errors.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_filter.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_filter.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_filter.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_filter.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_filter.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_filter.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_filter.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_filter.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_filter.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_filter.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_filter.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_filter.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_filter.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_filter.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_filter.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_filter.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_filter.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_filter.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_filter.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_filter.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_filter.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_filter.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_filter.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_filter.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_peer_backward_transition Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_peer_established Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_bgp_packet_dump Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_bgp_packet_send Unexecuted instantiation: bgp_io.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_io.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_io.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_io.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_io.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_io.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_io.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_io.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_io.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_io.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_io.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_io.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_io.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_io.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_io.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_io.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_io.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_io.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_io.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_io.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_io.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_io.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_io.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_io.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_io.c:_hook_typecheck_peer_backward_transition Unexecuted instantiation: bgp_io.c:_hook_typecheck_peer_established Unexecuted instantiation: bgp_io.c:_hook_typecheck_bgp_packet_dump Unexecuted instantiation: bgp_io.c:_hook_typecheck_bgp_packet_send Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_bgp_packet_dump Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_bgp_packet_send Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_mac.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_mac.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_mac.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_mac.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_mac.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_mac.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_mac.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_mac.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_mac.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_mac.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_mac.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_mac.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_mac.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_mac.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_mac.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_mac.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_mac.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_mac.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_mac.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_mac.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_mac.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_mac.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_mac.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_mac.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_mac.c:_hook_typecheck_bgp_packet_dump Unexecuted instantiation: bgp_mac.c:_hook_typecheck_bgp_packet_send Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_bgp_packet_dump Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_bgp_packet_send Unexecuted instantiation: bgp_network.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_network.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_network.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_network.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_network.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_network.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_network.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_network.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_network.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_network.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_network.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_network.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_network.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_network.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_network.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_network.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_network.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_network.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_network.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_network.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_network.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_network.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_network.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_network.c:_hook_typecheck_peer_backward_transition Unexecuted instantiation: bgp_network.c:_hook_typecheck_peer_established Unexecuted instantiation: bgp_network.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_peer_backward_transition Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_peer_established Unexecuted instantiation: bgp_nht.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_nht.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_nht.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_nht.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_nht.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_nht.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_nht.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_nht.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_nht.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_nht.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_nht.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_nht.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_nht.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_nht.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_nht.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_nht.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_nht.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_nht.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_nht.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_nht.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_nht.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_nht.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_nht.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_nht.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_nht.c:_hook_typecheck_peer_backward_transition Unexecuted instantiation: bgp_nht.c:_hook_typecheck_peer_established Unexecuted instantiation: bgp_packet.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_packet.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_packet.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_packet.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_packet.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_packet.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_packet.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_packet.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_packet.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_packet.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_packet.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_packet.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_packet.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_packet.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_packet.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_packet.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_packet.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_packet.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_packet.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_packet.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_packet.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_packet.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_packet.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_packet.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_packet.c:_hook_typecheck_peer_backward_transition Unexecuted instantiation: bgp_packet.c:_hook_typecheck_peer_established Unexecuted instantiation: bgp_packet.c:_hook_typecheck_bgp_packet_dump Unexecuted instantiation: bgp_packet.c:_hook_typecheck_bgp_packet_send Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_rd.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_rd.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_rd.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_rd.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_rd.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_rd.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_rd.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_rd.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_rd.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_rd.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_rd.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_rd.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_rd.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_rd.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_rd.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_rd.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_rd.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_rd.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_rd.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_rd.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_rd.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_rd.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_rd.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_rd.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_regex.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_regex.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_regex.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_regex.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_regex.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_regex.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_regex.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_regex.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_regex.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_regex.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_regex.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_regex.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_regex.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_regex.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_regex.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_regex.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_regex.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_regex.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_regex.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_regex.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_regex.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_regex.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_regex.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_regex.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_route.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_route.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_route.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_route.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_route.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_route.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_route.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_route.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_route.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_route.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_route.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_route.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_route.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_route.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_route.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_route.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_route.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_route.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_route.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_route.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_route.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_route.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_route.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_route.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_route.c:_hook_typecheck_bgp_packet_dump Unexecuted instantiation: bgp_route.c:_hook_typecheck_bgp_packet_send Unexecuted instantiation: bgp_route.c:_hook_typecheck_peer_backward_transition Unexecuted instantiation: bgp_route.c:_hook_typecheck_peer_established Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_bgp_packet_dump Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_bgp_packet_send Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_table.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_table.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_table.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_table.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_table.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_table.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_table.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_table.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_table.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_table.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_table.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_table.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_table.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_table.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_table.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_table.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_table.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_table.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_table.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_table.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_table.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_table.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_table.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_table.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_peer_backward_transition Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_peer_established Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_bgp_packet_dump Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_bgp_packet_send Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_bgp_packet_dump Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_bgp_packet_send Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_peer_backward_transition Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_peer_established Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_peer_backward_transition Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_peer_established Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_bgp_packet_dump Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_bgp_packet_send Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_vty.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_vty.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_vty.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_vty.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_vty.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_vty.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_vty.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_vty.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_vty.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_vty.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_vty.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_vty.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_vty.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_vty.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_vty.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_vty.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_vty.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_vty.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_vty.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_vty.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_vty.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_vty.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_vty.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_vty.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_vty.c:_hook_typecheck_peer_backward_transition Unexecuted instantiation: bgp_vty.c:_hook_typecheck_peer_established Unexecuted instantiation: bgp_vty.c:_hook_typecheck_bgp_packet_dump Unexecuted instantiation: bgp_vty.c:_hook_typecheck_bgp_packet_send Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_peer_backward_transition Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_peer_established bgpd.c:_hook_typecheck_bgp_config_end Line | Count | Source | 192 | 1 | { \ | 193 | 1 | return (void *)funcptr; \ | 194 | 1 | } \ |
Unexecuted instantiation: bgpd.c:_hook_typecheck_if_add Unexecuted instantiation: bgpd.c:_hook_typecheck_if_del Unexecuted instantiation: bgpd.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgpd.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgpd.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgpd.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgpd.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgpd.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgpd.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgpd.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgpd.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgpd.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgpd.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgpd.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgpd.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgpd.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgpd.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgpd.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgpd.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgpd.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgpd.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgpd.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgpd.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgpd.c:_hook_typecheck_peer_backward_transition Unexecuted instantiation: bgpd.c:_hook_typecheck_peer_established Unexecuted instantiation: bgpd.c:_hook_typecheck_bgp_packet_dump Unexecuted instantiation: bgpd.c:_hook_typecheck_bgp_packet_send Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_bgp_process Unexecuted instantiation: rfapi_import.c:_hook_typecheck_if_add Unexecuted instantiation: rfapi_import.c:_hook_typecheck_if_del Unexecuted instantiation: rfapi_import.c:_hook_typecheck_zlog_init Unexecuted instantiation: rfapi_import.c:_hook_typecheck_zlog_fini Unexecuted instantiation: rfapi_import.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: rfapi_import.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: rfapi_import.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: rfapi_import.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: rfapi_import.c:_hook_typecheck_frr_early_init Unexecuted instantiation: rfapi_import.c:_hook_typecheck_frr_late_init Unexecuted instantiation: rfapi_import.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: rfapi_import.c:_hook_typecheck_frr_config_post Unexecuted instantiation: rfapi_import.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: rfapi_import.c:_hook_typecheck_frr_fini Unexecuted instantiation: rfapi_import.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: rfapi_import.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: rfapi_import.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: rfapi_import.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: rfapi_import.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: rfapi_import.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: rfapi_import.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: rfapi_import.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: rfapi_import.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: rfapi_import.c:_hook_typecheck_bgp_process Unexecuted instantiation: rfapi.c:_hook_typecheck_if_add Unexecuted instantiation: rfapi.c:_hook_typecheck_if_del Unexecuted instantiation: rfapi.c:_hook_typecheck_zlog_init Unexecuted instantiation: rfapi.c:_hook_typecheck_zlog_fini Unexecuted instantiation: rfapi.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: rfapi.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: rfapi.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: rfapi.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: rfapi.c:_hook_typecheck_frr_early_init Unexecuted instantiation: rfapi.c:_hook_typecheck_frr_late_init Unexecuted instantiation: rfapi.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: rfapi.c:_hook_typecheck_frr_config_post Unexecuted instantiation: rfapi.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: rfapi.c:_hook_typecheck_frr_fini Unexecuted instantiation: rfapi.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: rfapi.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: rfapi.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: rfapi.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: rfapi.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: rfapi.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: rfapi.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: rfapi.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: rfapi.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: rfapi.c:_hook_typecheck_bgp_process Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_if_add Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_if_del Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_zlog_init Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_zlog_fini Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_frr_early_init Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_frr_late_init Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_frr_config_post Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_frr_fini Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_bgp_process Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_if_add Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_if_del Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_zlog_init Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_zlog_fini Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_frr_early_init Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_frr_late_init Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_frr_config_post Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_frr_fini Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_bgp_process Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_if_add Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_if_del Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_zlog_init Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_zlog_fini Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_frr_early_init Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_frr_late_init Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_frr_config_post Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_frr_fini Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_bgp_process Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_if_add Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_if_del Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_zlog_init Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_zlog_fini Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_frr_early_init Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_frr_late_init Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_frr_config_post Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_frr_fini Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_bgp_process Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_if_add Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_if_del Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_zlog_init Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_zlog_fini Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_frr_early_init Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_frr_late_init Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_frr_config_post Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_frr_fini Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_bgp_process Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_if_add Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_if_del Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_zlog_init Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_zlog_fini Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_frr_early_init Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_frr_late_init Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_frr_config_post Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_frr_fini Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_bgp_process Unexecuted instantiation: vnc_debug.c:_hook_typecheck_if_add Unexecuted instantiation: vnc_debug.c:_hook_typecheck_if_del Unexecuted instantiation: vnc_debug.c:_hook_typecheck_zlog_init Unexecuted instantiation: vnc_debug.c:_hook_typecheck_zlog_fini Unexecuted instantiation: vnc_debug.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: vnc_debug.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: vnc_debug.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: vnc_debug.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: vnc_debug.c:_hook_typecheck_frr_early_init Unexecuted instantiation: vnc_debug.c:_hook_typecheck_frr_late_init Unexecuted instantiation: vnc_debug.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: vnc_debug.c:_hook_typecheck_frr_config_post Unexecuted instantiation: vnc_debug.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: vnc_debug.c:_hook_typecheck_frr_fini Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_if_add Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_if_del Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_zlog_init Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_zlog_fini Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_frr_early_init Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_frr_late_init Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_frr_config_post Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_frr_fini Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_bgp_process Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_if_add Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_if_del Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_zlog_init Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_zlog_fini Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_frr_early_init Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_frr_late_init Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_frr_config_post Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_frr_fini Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_bgp_process Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_if_add Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_if_del Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_zlog_init Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_zlog_fini Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_frr_early_init Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_frr_late_init Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_frr_config_post Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_frr_fini Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_bgp_process Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_if_add Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_if_del Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_zlog_init Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_zlog_fini Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_frr_early_init Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_frr_late_init Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_frr_config_post Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_frr_fini Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_bgp_packet_dump Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_bgp_packet_send Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_peer_backward_transition Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_peer_established Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_peer_backward_transition Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_peer_established Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_bgp_packet_dump Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_bgp_packet_send Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_damp.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_damp.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_damp.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_damp.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_damp.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_damp.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_damp.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_damp.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_damp.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_damp.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_damp.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_damp.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_damp.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_damp.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_damp.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_damp.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_damp.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_damp.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_damp.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_damp.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_damp.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_damp.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_damp.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_damp.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_label.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_label.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_label.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_label.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_label.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_label.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_label.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_label.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_label.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_label.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_label.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_label.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_label.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_label.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_label.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_label.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_label.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_label.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_label.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_label.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_label.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_label.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_label.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_label.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_label.c:_hook_typecheck_bgp_packet_dump Unexecuted instantiation: bgp_label.c:_hook_typecheck_bgp_packet_send Unexecuted instantiation: bgp_open.c:_hook_typecheck_if_add Unexecuted instantiation: bgp_open.c:_hook_typecheck_if_del Unexecuted instantiation: bgp_open.c:_hook_typecheck_zlog_init Unexecuted instantiation: bgp_open.c:_hook_typecheck_zlog_fini Unexecuted instantiation: bgp_open.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: bgp_open.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: bgp_open.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: bgp_open.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: bgp_open.c:_hook_typecheck_frr_early_init Unexecuted instantiation: bgp_open.c:_hook_typecheck_frr_late_init Unexecuted instantiation: bgp_open.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: bgp_open.c:_hook_typecheck_frr_config_post Unexecuted instantiation: bgp_open.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: bgp_open.c:_hook_typecheck_frr_fini Unexecuted instantiation: bgp_open.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: bgp_open.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: bgp_open.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: bgp_open.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: bgp_open.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: bgp_open.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: bgp_open.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_open.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: bgp_open.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: bgp_open.c:_hook_typecheck_bgp_process Unexecuted instantiation: bgp_open.c:_hook_typecheck_peer_backward_transition Unexecuted instantiation: bgp_open.c:_hook_typecheck_peer_established Unexecuted instantiation: bgp_open.c:_hook_typecheck_bgp_packet_dump Unexecuted instantiation: bgp_open.c:_hook_typecheck_bgp_packet_send Unexecuted instantiation: rfp_example.c:_hook_typecheck_zlog_init Unexecuted instantiation: rfp_example.c:_hook_typecheck_zlog_fini Unexecuted instantiation: rfp_example.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: rfp_example.c:_hook_typecheck_if_add Unexecuted instantiation: rfp_example.c:_hook_typecheck_if_del Unexecuted instantiation: rfp_example.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: rfp_example.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: rfp_example.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: rfp_example.c:_hook_typecheck_frr_early_init Unexecuted instantiation: rfp_example.c:_hook_typecheck_frr_late_init Unexecuted instantiation: rfp_example.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: rfp_example.c:_hook_typecheck_frr_config_post Unexecuted instantiation: rfp_example.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: rfp_example.c:_hook_typecheck_frr_fini Unexecuted instantiation: rfp_example.c:_hook_typecheck_bgp_inst_delete Unexecuted instantiation: rfp_example.c:_hook_typecheck_bgp_inst_config_write Unexecuted instantiation: rfp_example.c:_hook_typecheck_bgp_config_end Unexecuted instantiation: rfp_example.c:_hook_typecheck_bgp_vrf_status_changed Unexecuted instantiation: rfp_example.c:_hook_typecheck_peer_status_changed Unexecuted instantiation: rfp_example.c:_hook_typecheck_bgp_snmp_init_stats Unexecuted instantiation: rfp_example.c:_hook_typecheck_bgp_snmp_update_last_changed Unexecuted instantiation: rfp_example.c:_hook_typecheck_bgp_snmp_update_stats Unexecuted instantiation: rfp_example.c:_hook_typecheck_bgp_rpki_prefix_status Unexecuted instantiation: rfp_example.c:_hook_typecheck_bgp_process Unexecuted instantiation: pim_addr.c:_hook_typecheck_if_add Unexecuted instantiation: pim_addr.c:_hook_typecheck_if_del Unexecuted instantiation: pim_addr.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_addr.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_addr.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_assert.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_assert.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_assert.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_assert.c:_hook_typecheck_if_add Unexecuted instantiation: pim_assert.c:_hook_typecheck_if_del Unexecuted instantiation: pim_assert.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_assert.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_assert.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_assert.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_assert.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_assert.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_assert.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_assert.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_assert.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_bfd.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_bfd.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_bfd.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_bfd.c:_hook_typecheck_if_add Unexecuted instantiation: pim_bfd.c:_hook_typecheck_if_del Unexecuted instantiation: pim_bfd.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_bfd.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_bfd.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_bfd.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_bfd.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_bfd.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_bfd.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_bfd.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_bfd.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_bsm.c:_hook_typecheck_if_add Unexecuted instantiation: pim_bsm.c:_hook_typecheck_if_del Unexecuted instantiation: pim_bsm.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_bsm.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_bsm.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_bsm.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_bsm.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_bsm.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_bsm.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_bsm.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_bsm.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_bsm.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_bsm.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_bsm.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_cmd_common.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_cmd_common.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_cmd_common.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_cmd_common.c:_hook_typecheck_if_add Unexecuted instantiation: pim_cmd_common.c:_hook_typecheck_if_del Unexecuted instantiation: pim_cmd_common.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_cmd_common.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_cmd_common.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_cmd_common.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_cmd_common.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_cmd_common.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_cmd_common.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_cmd_common.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_cmd_common.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_errors.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_errors.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_errors.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_errors.c:_hook_typecheck_if_add Unexecuted instantiation: pim_errors.c:_hook_typecheck_if_del Unexecuted instantiation: pim_errors.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_errors.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_errors.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_errors.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_errors.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_errors.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_errors.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_errors.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_errors.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_hello.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_hello.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_hello.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_hello.c:_hook_typecheck_if_add Unexecuted instantiation: pim_hello.c:_hook_typecheck_if_del Unexecuted instantiation: pim_hello.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_hello.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_hello.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_hello.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_hello.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_hello.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_hello.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_hello.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_hello.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_iface.c:_hook_typecheck_if_add Unexecuted instantiation: pim_iface.c:_hook_typecheck_if_del Unexecuted instantiation: pim_iface.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_iface.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_iface.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_iface.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_iface.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_iface.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_iface.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_iface.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_iface.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_iface.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_iface.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_iface.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_ifchannel.c:_hook_typecheck_if_add Unexecuted instantiation: pim_ifchannel.c:_hook_typecheck_if_del Unexecuted instantiation: pim_ifchannel.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_ifchannel.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_ifchannel.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_ifchannel.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_ifchannel.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_ifchannel.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_ifchannel.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_ifchannel.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_ifchannel.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_ifchannel.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_ifchannel.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_ifchannel.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_instance.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_instance.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_instance.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_instance.c:_hook_typecheck_if_add Unexecuted instantiation: pim_instance.c:_hook_typecheck_if_del Unexecuted instantiation: pim_instance.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_instance.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_instance.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_instance.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_instance.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_instance.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_instance.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_instance.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_instance.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_join.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_join.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_join.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_join.c:_hook_typecheck_if_add Unexecuted instantiation: pim_join.c:_hook_typecheck_if_del Unexecuted instantiation: pim_join.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_join.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_join.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_join.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_join.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_join.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_join.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_join.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_join.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_jp_agg.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_jp_agg.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_jp_agg.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_jp_agg.c:_hook_typecheck_if_add Unexecuted instantiation: pim_jp_agg.c:_hook_typecheck_if_del Unexecuted instantiation: pim_jp_agg.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_jp_agg.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_jp_agg.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_jp_agg.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_jp_agg.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_jp_agg.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_jp_agg.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_jp_agg.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_jp_agg.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_macro.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_macro.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_macro.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_macro.c:_hook_typecheck_if_add Unexecuted instantiation: pim_macro.c:_hook_typecheck_if_del Unexecuted instantiation: pim_macro.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_macro.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_macro.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_macro.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_macro.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_macro.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_macro.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_macro.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_macro.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_mroute.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_mroute.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_mroute.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_mroute.c:_hook_typecheck_if_add Unexecuted instantiation: pim_mroute.c:_hook_typecheck_if_del Unexecuted instantiation: pim_mroute.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_mroute.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_mroute.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_mroute.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_mroute.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_mroute.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_mroute.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_mroute.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_mroute.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_msg.c:_hook_typecheck_if_add Unexecuted instantiation: pim_msg.c:_hook_typecheck_if_del Unexecuted instantiation: pim_msg.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_msg.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_msg.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_msg.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_msg.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_msg.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_msg.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_msg.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_msg.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_msg.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_msg.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_msg.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_nb.c:_hook_typecheck_if_add Unexecuted instantiation: pim_nb.c:_hook_typecheck_if_del Unexecuted instantiation: pim_nb.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_nb.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_nb.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_nb.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_nb.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_nb.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_nb.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_nb.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_nb.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_nb.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_nb.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_nb.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_nb_config.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_nb_config.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_nb_config.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_nb_config.c:_hook_typecheck_if_add Unexecuted instantiation: pim_nb_config.c:_hook_typecheck_if_del Unexecuted instantiation: pim_nb_config.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_nb_config.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_nb_config.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_nb_config.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_nb_config.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_nb_config.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_nb_config.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_nb_config.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_nb_config.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_neighbor.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_neighbor.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_neighbor.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_neighbor.c:_hook_typecheck_if_add Unexecuted instantiation: pim_neighbor.c:_hook_typecheck_if_del Unexecuted instantiation: pim_neighbor.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_neighbor.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_neighbor.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_neighbor.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_neighbor.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_neighbor.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_neighbor.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_neighbor.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_neighbor.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_nht.c:_hook_typecheck_if_add Unexecuted instantiation: pim_nht.c:_hook_typecheck_if_del Unexecuted instantiation: pim_nht.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_nht.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_nht.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_nht.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_nht.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_nht.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_nht.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_nht.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_nht.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_nht.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_nht.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_nht.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_oil.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_oil.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_oil.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_oil.c:_hook_typecheck_if_add Unexecuted instantiation: pim_oil.c:_hook_typecheck_if_del Unexecuted instantiation: pim_oil.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_oil.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_oil.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_oil.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_oil.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_oil.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_oil.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_oil.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_oil.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_pim.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_pim.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_pim.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_pim.c:_hook_typecheck_if_add Unexecuted instantiation: pim_pim.c:_hook_typecheck_if_del Unexecuted instantiation: pim_pim.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_pim.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_pim.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_pim.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_pim.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_pim.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_pim.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_pim.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_pim.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_routemap.c:_hook_typecheck_if_add Unexecuted instantiation: pim_routemap.c:_hook_typecheck_if_del Unexecuted instantiation: pim_routemap.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_routemap.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_routemap.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_routemap.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_routemap.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_routemap.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_routemap.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_routemap.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_routemap.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_routemap.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_routemap.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_routemap.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_rp.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_rp.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_rp.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_rp.c:_hook_typecheck_if_add Unexecuted instantiation: pim_rp.c:_hook_typecheck_if_del Unexecuted instantiation: pim_rp.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_rp.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_rp.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_rp.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_rp.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_rp.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_rp.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_rp.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_rp.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_rpf.c:_hook_typecheck_if_add Unexecuted instantiation: pim_rpf.c:_hook_typecheck_if_del Unexecuted instantiation: pim_rpf.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_rpf.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_rpf.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_rpf.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_rpf.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_rpf.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_rpf.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_rpf.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_rpf.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_rpf.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_rpf.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_rpf.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_sock.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_sock.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_sock.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_sock.c:_hook_typecheck_if_add Unexecuted instantiation: pim_sock.c:_hook_typecheck_if_del Unexecuted instantiation: pim_sock.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_sock.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_sock.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_sock.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_sock.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_sock.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_sock.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_sock.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_sock.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_ssm.c:_hook_typecheck_if_add Unexecuted instantiation: pim_ssm.c:_hook_typecheck_if_del Unexecuted instantiation: pim_ssm.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_ssm.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_ssm.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_ssm.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_ssm.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_ssm.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_ssm.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_ssm.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_ssm.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_ssm.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_ssm.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_ssm.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_ssmpingd.c:_hook_typecheck_if_add Unexecuted instantiation: pim_ssmpingd.c:_hook_typecheck_if_del Unexecuted instantiation: pim_ssmpingd.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_ssmpingd.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_ssmpingd.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_ssmpingd.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_ssmpingd.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_ssmpingd.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_ssmpingd.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_ssmpingd.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_ssmpingd.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_ssmpingd.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_ssmpingd.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_ssmpingd.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_static.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_static.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_static.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_static.c:_hook_typecheck_if_add Unexecuted instantiation: pim_static.c:_hook_typecheck_if_del Unexecuted instantiation: pim_static.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_static.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_static.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_static.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_static.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_static.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_static.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_static.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_static.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_str.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_str.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_str.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_str.c:_hook_typecheck_if_add Unexecuted instantiation: pim_str.c:_hook_typecheck_if_del Unexecuted instantiation: pim_tib.c:_hook_typecheck_if_add Unexecuted instantiation: pim_tib.c:_hook_typecheck_if_del Unexecuted instantiation: pim_tib.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_tib.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_tib.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_tib.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_tib.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_tib.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_tib.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_tib.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_tib.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_tib.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_tib.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_tib.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_time.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_time.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_time.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_time.c:_hook_typecheck_if_add Unexecuted instantiation: pim_time.c:_hook_typecheck_if_del Unexecuted instantiation: pim_time.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_time.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_time.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_time.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_time.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_time.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_time.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_time.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_time.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_tlv.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_tlv.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_tlv.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_tlv.c:_hook_typecheck_if_add Unexecuted instantiation: pim_tlv.c:_hook_typecheck_if_del Unexecuted instantiation: pim_tlv.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_tlv.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_tlv.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_tlv.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_tlv.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_tlv.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_tlv.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_tlv.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_tlv.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_upstream.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_upstream.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_upstream.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_upstream.c:_hook_typecheck_if_add Unexecuted instantiation: pim_upstream.c:_hook_typecheck_if_del Unexecuted instantiation: pim_upstream.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_upstream.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_upstream.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_upstream.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_upstream.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_upstream.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_upstream.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_upstream.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_upstream.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_util.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_util.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_util.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_util.c:_hook_typecheck_if_add Unexecuted instantiation: pim_util.c:_hook_typecheck_if_del Unexecuted instantiation: pim_util.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_util.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_util.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_util.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_util.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_util.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_util.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_util.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_util.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_vty.c:_hook_typecheck_if_add Unexecuted instantiation: pim_vty.c:_hook_typecheck_if_del Unexecuted instantiation: pim_vty.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_vty.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_vty.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_vty.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_vty.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_vty.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_vty.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_vty.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_vty.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_vty.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_vty.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_vty.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_zebra.c:_hook_typecheck_if_add Unexecuted instantiation: pim_zebra.c:_hook_typecheck_if_del Unexecuted instantiation: pim_zebra.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_zebra.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_zebra.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_zebra.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_zebra.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_zebra.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_zebra.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_zebra.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_zebra.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_zebra.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_zebra.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_zebra.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_zlookup.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_zlookup.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_zlookup.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_zlookup.c:_hook_typecheck_if_add Unexecuted instantiation: pim_zlookup.c:_hook_typecheck_if_del Unexecuted instantiation: pim_zlookup.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_zlookup.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_zlookup.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_zlookup.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_zlookup.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_zlookup.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_zlookup.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_zlookup.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_zlookup.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_vxlan.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_vxlan.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_vxlan.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_vxlan.c:_hook_typecheck_if_add Unexecuted instantiation: pim_vxlan.c:_hook_typecheck_if_del Unexecuted instantiation: pim_vxlan.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_vxlan.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_vxlan.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_vxlan.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_vxlan.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_vxlan.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_vxlan.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_vxlan.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_vxlan.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_register.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_register.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_register.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_register.c:_hook_typecheck_if_add Unexecuted instantiation: pim_register.c:_hook_typecheck_if_del Unexecuted instantiation: pim_register.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_register.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_register.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_register.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_register.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_register.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_register.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_register.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_register.c:_hook_typecheck_frr_fini Unexecuted instantiation: pimd.c:_hook_typecheck_zlog_init Unexecuted instantiation: pimd.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pimd.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pimd.c:_hook_typecheck_if_add Unexecuted instantiation: pimd.c:_hook_typecheck_if_del Unexecuted instantiation: pimd.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pimd.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pimd.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pimd.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pimd.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pimd.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pimd.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pimd.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pimd.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_cmd.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_cmd.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_cmd.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_cmd.c:_hook_typecheck_if_add Unexecuted instantiation: pim_cmd.c:_hook_typecheck_if_del Unexecuted instantiation: pim_cmd.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_cmd.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_cmd.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_cmd.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_cmd.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_cmd.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_cmd.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_cmd.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_cmd.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_igmp.c:_hook_typecheck_if_add Unexecuted instantiation: pim_igmp.c:_hook_typecheck_if_del Unexecuted instantiation: pim_igmp.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_igmp.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_igmp.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_igmp.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_igmp.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_igmp.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_igmp.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_igmp.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_igmp.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_igmp.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_igmp.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_igmp.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_igmp_mtrace.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_igmp_mtrace.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_igmp_mtrace.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_igmp_mtrace.c:_hook_typecheck_if_add Unexecuted instantiation: pim_igmp_mtrace.c:_hook_typecheck_if_del Unexecuted instantiation: pim_igmp_mtrace.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_igmp_mtrace.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_igmp_mtrace.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_igmp_mtrace.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_igmp_mtrace.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_igmp_mtrace.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_igmp_mtrace.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_igmp_mtrace.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_igmp_mtrace.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_igmpv2.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_igmpv2.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_igmpv2.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_igmpv2.c:_hook_typecheck_if_add Unexecuted instantiation: pim_igmpv2.c:_hook_typecheck_if_del Unexecuted instantiation: pim_igmpv2.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_igmpv2.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_igmpv2.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_igmpv2.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_igmpv2.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_igmpv2.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_igmpv2.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_igmpv2.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_igmpv2.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_igmpv3.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_igmpv3.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_igmpv3.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_igmpv3.c:_hook_typecheck_if_add Unexecuted instantiation: pim_igmpv3.c:_hook_typecheck_if_del Unexecuted instantiation: pim_igmpv3.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_igmpv3.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_igmpv3.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_igmpv3.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_igmpv3.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_igmpv3.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_igmpv3.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_igmpv3.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_igmpv3.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_main.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_main.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_main.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_main.c:_hook_typecheck_if_add Unexecuted instantiation: pim_main.c:_hook_typecheck_if_del Unexecuted instantiation: pim_main.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_main.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_main.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_main.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_main.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_main.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_main.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_main.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_main.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_main.c:_hook_typecheck_routing_conf_event Unexecuted instantiation: pim_mlag.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_mlag.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_mlag.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_mlag.c:_hook_typecheck_if_add Unexecuted instantiation: pim_mlag.c:_hook_typecheck_if_del Unexecuted instantiation: pim_mlag.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_mlag.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_mlag.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_mlag.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_mlag.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_mlag.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_mlag.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_mlag.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_mlag.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_msdp.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_msdp.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_msdp.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_msdp.c:_hook_typecheck_if_add Unexecuted instantiation: pim_msdp.c:_hook_typecheck_if_del Unexecuted instantiation: pim_msdp.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_msdp.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_msdp.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_msdp.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_msdp.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_msdp.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_msdp.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_msdp.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_msdp.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_msdp_packet.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_msdp_packet.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_msdp_packet.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_msdp_packet.c:_hook_typecheck_if_add Unexecuted instantiation: pim_msdp_packet.c:_hook_typecheck_if_del Unexecuted instantiation: pim_msdp_packet.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_msdp_packet.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_msdp_packet.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_msdp_packet.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_msdp_packet.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_msdp_packet.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_msdp_packet.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_msdp_packet.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_msdp_packet.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_msdp_socket.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_msdp_socket.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_msdp_socket.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_msdp_socket.c:_hook_typecheck_if_add Unexecuted instantiation: pim_msdp_socket.c:_hook_typecheck_if_del Unexecuted instantiation: pim_msdp_socket.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_msdp_socket.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_msdp_socket.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_msdp_socket.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_msdp_socket.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_msdp_socket.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_msdp_socket.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_msdp_socket.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_msdp_socket.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_signals.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_signals.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_signals.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_signals.c:_hook_typecheck_if_add Unexecuted instantiation: pim_signals.c:_hook_typecheck_if_del Unexecuted instantiation: pim_signals.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_signals.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_signals.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_signals.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_signals.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_signals.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_signals.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_signals.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_signals.c:_hook_typecheck_frr_fini Unexecuted instantiation: pim_zpthread.c:_hook_typecheck_zlog_init Unexecuted instantiation: pim_zpthread.c:_hook_typecheck_zlog_fini Unexecuted instantiation: pim_zpthread.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: pim_zpthread.c:_hook_typecheck_if_add Unexecuted instantiation: pim_zpthread.c:_hook_typecheck_if_del Unexecuted instantiation: pim_zpthread.c:_hook_typecheck_nb_notification_send Unexecuted instantiation: pim_zpthread.c:_hook_typecheck_nb_client_debug_config_write Unexecuted instantiation: pim_zpthread.c:_hook_typecheck_nb_client_debug_set_all Unexecuted instantiation: pim_zpthread.c:_hook_typecheck_frr_early_init Unexecuted instantiation: pim_zpthread.c:_hook_typecheck_frr_late_init Unexecuted instantiation: pim_zpthread.c:_hook_typecheck_frr_config_pre Unexecuted instantiation: pim_zpthread.c:_hook_typecheck_frr_config_post Unexecuted instantiation: pim_zpthread.c:_hook_typecheck_frr_early_fini Unexecuted instantiation: pim_zpthread.c:_hook_typecheck_frr_fini Unexecuted instantiation: frr-pim.yang.c:_hook_typecheck_if_add Unexecuted instantiation: frr-pim.yang.c:_hook_typecheck_if_del Unexecuted instantiation: frr-pim.yang.c:_hook_typecheck_zlog_init Unexecuted instantiation: frr-pim.yang.c:_hook_typecheck_zlog_fini Unexecuted instantiation: frr-pim.yang.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: frr-pim-rp.yang.c:_hook_typecheck_if_add Unexecuted instantiation: frr-pim-rp.yang.c:_hook_typecheck_if_del Unexecuted instantiation: frr-pim-rp.yang.c:_hook_typecheck_zlog_init Unexecuted instantiation: frr-pim-rp.yang.c:_hook_typecheck_zlog_fini Unexecuted instantiation: frr-pim-rp.yang.c:_hook_typecheck_zlog_aux_init Unexecuted instantiation: frr-gmp.yang.c:_hook_typecheck_if_add Unexecuted instantiation: frr-gmp.yang.c:_hook_typecheck_if_del Unexecuted instantiation: frr-gmp.yang.c:_hook_typecheck_zlog_init Unexecuted instantiation: frr-gmp.yang.c:_hook_typecheck_zlog_fini Unexecuted instantiation: frr-gmp.yang.c:_hook_typecheck_zlog_aux_init |
195 | | __attribute__((unused)) static inline void \ |
196 | | *_hook_typecheck_arg_##hookname(int(*funcptr) \ |
197 | | HOOK_ADDDEF arglist) \ |
198 | 0 | { \ |
199 | 0 | return (void *)funcptr; \ |
200 | 0 | } \ Unexecuted instantiation: ospf_main.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ospf_main.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ospf_main.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ospf_main.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ospf_main.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ospf_main.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: ospf_main.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: ospf_main.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: ospf_main.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: ospf_main.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: ospf_main.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: ospf_main.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: ospf_main.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: ospf_main.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: ospf_main.c:_hook_typecheck_arg_ospf_vl_add Unexecuted instantiation: ospf_main.c:_hook_typecheck_arg_ospf_vl_delete Unexecuted instantiation: ospf_main.c:_hook_typecheck_arg_ospf_if_update Unexecuted instantiation: ospf_main.c:_hook_typecheck_arg_ospf_if_delete Unexecuted instantiation: frr-ospf-route-map.yang.c:_hook_typecheck_arg_if_add Unexecuted instantiation: frr-ospf-route-map.yang.c:_hook_typecheck_arg_if_del Unexecuted instantiation: frr-ospf-route-map.yang.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: frr-ospf-route-map.yang.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: frr-ospf-route-map.yang.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ospf_bfd.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ospf_bfd.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ospf_bfd.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ospf_bfd.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ospf_bfd.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ospf_bfd.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: ospf_bfd.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: ospf_bfd.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: ospf_bfd.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: ospf_bfd.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: ospf_bfd.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: ospf_bfd.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: ospf_bfd.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: ospf_bfd.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: ospf_bfd.c:_hook_typecheck_arg_ospf_vl_add Unexecuted instantiation: ospf_bfd.c:_hook_typecheck_arg_ospf_vl_delete Unexecuted instantiation: ospf_bfd.c:_hook_typecheck_arg_ospf_if_update Unexecuted instantiation: ospf_bfd.c:_hook_typecheck_arg_ospf_if_delete Unexecuted instantiation: ospf_bfd.c:_hook_typecheck_arg_ospf_nsm_change Unexecuted instantiation: ospf_dump.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ospf_dump.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ospf_dump.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ospf_dump.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ospf_dump.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ospf_dump.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: ospf_dump.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: ospf_dump.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: ospf_dump.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: ospf_dump.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: ospf_dump.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: ospf_dump.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: ospf_dump.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: ospf_dump.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: ospf_dump.c:_hook_typecheck_arg_ospf_vl_add Unexecuted instantiation: ospf_dump.c:_hook_typecheck_arg_ospf_vl_delete Unexecuted instantiation: ospf_dump.c:_hook_typecheck_arg_ospf_if_update Unexecuted instantiation: ospf_dump.c:_hook_typecheck_arg_ospf_if_delete Unexecuted instantiation: ospf_dump.c:_hook_typecheck_arg_ospf_ism_change Unexecuted instantiation: ospf_dump.c:_hook_typecheck_arg_ospf_nsm_change Unexecuted instantiation: ospf_dump_api.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ospf_dump_api.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ospf_dump_api.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ospf_dump_api.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ospf_dump_api.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ospf_dump_api.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: ospf_dump_api.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: ospf_dump_api.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: ospf_dump_api.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: ospf_dump_api.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: ospf_dump_api.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: ospf_dump_api.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: ospf_dump_api.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: ospf_dump_api.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: ospf_dump_api.c:_hook_typecheck_arg_ospf_nsm_change Unexecuted instantiation: ospf_dump_api.c:_hook_typecheck_arg_ospf_ism_change Unexecuted instantiation: ospf_errors.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ospf_errors.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ospf_errors.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ospf_errors.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ospf_errors.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ospf_errors.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: ospf_errors.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: ospf_errors.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: ospf_errors.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: ospf_errors.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: ospf_errors.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: ospf_errors.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: ospf_errors.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: ospf_errors.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: ospf_interface.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ospf_interface.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ospf_interface.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ospf_interface.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ospf_interface.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ospf_interface.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: ospf_interface.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: ospf_interface.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: ospf_interface.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: ospf_interface.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: ospf_interface.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: ospf_interface.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: ospf_interface.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: ospf_interface.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: ospf_interface.c:_hook_typecheck_arg_ospf_vl_add Unexecuted instantiation: ospf_interface.c:_hook_typecheck_arg_ospf_vl_delete Unexecuted instantiation: ospf_interface.c:_hook_typecheck_arg_ospf_if_update Unexecuted instantiation: ospf_interface.c:_hook_typecheck_arg_ospf_if_delete Unexecuted instantiation: ospf_interface.c:_hook_typecheck_arg_ospf_ism_change Unexecuted instantiation: ospf_interface.c:_hook_typecheck_arg_ospf_nsm_change Unexecuted instantiation: ospf_lsa.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ospf_lsa.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ospf_lsa.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ospf_lsa.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ospf_lsa.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ospf_lsa.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: ospf_lsa.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: ospf_lsa.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: ospf_lsa.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: ospf_lsa.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: ospf_lsa.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: ospf_lsa.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: ospf_lsa.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: ospf_lsa.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: ospf_lsa.c:_hook_typecheck_arg_ospf_vl_add Unexecuted instantiation: ospf_lsa.c:_hook_typecheck_arg_ospf_vl_delete Unexecuted instantiation: ospf_lsa.c:_hook_typecheck_arg_ospf_if_update Unexecuted instantiation: ospf_lsa.c:_hook_typecheck_arg_ospf_if_delete Unexecuted instantiation: ospf_lsa.c:_hook_typecheck_arg_ospf_ism_change Unexecuted instantiation: ospf_lsa.c:_hook_typecheck_arg_ospf_nsm_change Unexecuted instantiation: ospf_lsdb.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ospf_lsdb.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ospf_lsdb.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ospf_lsdb.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ospf_lsdb.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ospf_lsdb.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: ospf_lsdb.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: ospf_lsdb.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: ospf_lsdb.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: ospf_lsdb.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: ospf_lsdb.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: ospf_lsdb.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: ospf_lsdb.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: ospf_lsdb.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: ospf_neighbor.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ospf_neighbor.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ospf_neighbor.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ospf_neighbor.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ospf_neighbor.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ospf_neighbor.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: ospf_neighbor.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: ospf_neighbor.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: ospf_neighbor.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: ospf_neighbor.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: ospf_neighbor.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: ospf_neighbor.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: ospf_neighbor.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: ospf_neighbor.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: ospf_neighbor.c:_hook_typecheck_arg_ospf_vl_add Unexecuted instantiation: ospf_neighbor.c:_hook_typecheck_arg_ospf_vl_delete Unexecuted instantiation: ospf_neighbor.c:_hook_typecheck_arg_ospf_if_update Unexecuted instantiation: ospf_neighbor.c:_hook_typecheck_arg_ospf_if_delete Unexecuted instantiation: ospf_neighbor.c:_hook_typecheck_arg_ospf_nsm_change Unexecuted instantiation: ospf_network.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ospf_network.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ospf_network.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ospf_network.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ospf_network.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ospf_network.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: ospf_network.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: ospf_network.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: ospf_network.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: ospf_network.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: ospf_network.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: ospf_network.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: ospf_network.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: ospf_network.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: ospf_network.c:_hook_typecheck_arg_ospf_vl_add Unexecuted instantiation: ospf_network.c:_hook_typecheck_arg_ospf_vl_delete Unexecuted instantiation: ospf_network.c:_hook_typecheck_arg_ospf_if_update Unexecuted instantiation: ospf_network.c:_hook_typecheck_arg_ospf_if_delete Unexecuted instantiation: ospf_nsm.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ospf_nsm.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ospf_nsm.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ospf_nsm.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ospf_nsm.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ospf_nsm.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: ospf_nsm.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: ospf_nsm.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: ospf_nsm.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: ospf_nsm.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: ospf_nsm.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: ospf_nsm.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: ospf_nsm.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: ospf_nsm.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: ospf_nsm.c:_hook_typecheck_arg_ospf_vl_add Unexecuted instantiation: ospf_nsm.c:_hook_typecheck_arg_ospf_vl_delete Unexecuted instantiation: ospf_nsm.c:_hook_typecheck_arg_ospf_if_update Unexecuted instantiation: ospf_nsm.c:_hook_typecheck_arg_ospf_if_delete Unexecuted instantiation: ospf_nsm.c:_hook_typecheck_arg_ospf_ism_change Unexecuted instantiation: ospf_nsm.c:_hook_typecheck_arg_ospf_nsm_change Unexecuted instantiation: ospf_opaque.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ospf_opaque.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ospf_opaque.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ospf_opaque.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ospf_opaque.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ospf_opaque.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: ospf_opaque.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: ospf_opaque.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: ospf_opaque.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: ospf_opaque.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: ospf_opaque.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: ospf_opaque.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: ospf_opaque.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: ospf_opaque.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: ospf_opaque.c:_hook_typecheck_arg_ospf_vl_add Unexecuted instantiation: ospf_opaque.c:_hook_typecheck_arg_ospf_vl_delete Unexecuted instantiation: ospf_opaque.c:_hook_typecheck_arg_ospf_if_update Unexecuted instantiation: ospf_opaque.c:_hook_typecheck_arg_ospf_if_delete Unexecuted instantiation: ospf_opaque.c:_hook_typecheck_arg_ospf_ism_change Unexecuted instantiation: ospf_opaque.c:_hook_typecheck_arg_ospf_nsm_change Unexecuted instantiation: ospf_packet.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ospf_packet.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ospf_packet.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ospf_packet.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ospf_packet.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ospf_packet.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: ospf_packet.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: ospf_packet.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: ospf_packet.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: ospf_packet.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: ospf_packet.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: ospf_packet.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: ospf_packet.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: ospf_packet.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: ospf_packet.c:_hook_typecheck_arg_ospf_vl_add Unexecuted instantiation: ospf_packet.c:_hook_typecheck_arg_ospf_vl_delete Unexecuted instantiation: ospf_packet.c:_hook_typecheck_arg_ospf_if_update Unexecuted instantiation: ospf_packet.c:_hook_typecheck_arg_ospf_if_delete Unexecuted instantiation: ospf_packet.c:_hook_typecheck_arg_ospf_ism_change Unexecuted instantiation: ospf_packet.c:_hook_typecheck_arg_ospf_nsm_change Unexecuted instantiation: ospf_ri.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ospf_ri.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ospf_ri.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ospf_ri.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ospf_ri.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ospf_ri.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: ospf_ri.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: ospf_ri.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: ospf_ri.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: ospf_ri.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: ospf_ri.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: ospf_ri.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: ospf_ri.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: ospf_ri.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: ospf_ri.c:_hook_typecheck_arg_ospf_vl_add Unexecuted instantiation: ospf_ri.c:_hook_typecheck_arg_ospf_vl_delete Unexecuted instantiation: ospf_ri.c:_hook_typecheck_arg_ospf_if_update Unexecuted instantiation: ospf_ri.c:_hook_typecheck_arg_ospf_if_delete Unexecuted instantiation: ospf_ri.c:_hook_typecheck_arg_ospf_ism_change Unexecuted instantiation: ospf_ri.c:_hook_typecheck_arg_ospf_nsm_change Unexecuted instantiation: ospf_routemap.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ospf_routemap.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ospf_routemap.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ospf_routemap.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ospf_routemap.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ospf_routemap.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: ospf_routemap.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: ospf_routemap.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: ospf_routemap.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: ospf_routemap.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: ospf_routemap.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: ospf_routemap.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: ospf_routemap.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: ospf_routemap.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: ospf_routemap.c:_hook_typecheck_arg_ospf_vl_add Unexecuted instantiation: ospf_routemap.c:_hook_typecheck_arg_ospf_vl_delete Unexecuted instantiation: ospf_routemap.c:_hook_typecheck_arg_ospf_if_update Unexecuted instantiation: ospf_routemap.c:_hook_typecheck_arg_ospf_if_delete Unexecuted instantiation: ospf_routemap_nb.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ospf_routemap_nb.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ospf_routemap_nb.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ospf_routemap_nb.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ospf_routemap_nb.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ospf_routemap_nb.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: ospf_routemap_nb.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: ospf_routemap_nb.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: ospf_routemap_nb.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: ospf_routemap_nb.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: ospf_routemap_nb.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: ospf_routemap_nb.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: ospf_routemap_nb.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: ospf_routemap_nb.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: ospf_routemap_nb_config.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ospf_routemap_nb_config.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ospf_routemap_nb_config.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ospf_routemap_nb_config.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ospf_routemap_nb_config.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ospf_routemap_nb_config.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: ospf_routemap_nb_config.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: ospf_routemap_nb_config.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: ospf_routemap_nb_config.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: ospf_routemap_nb_config.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: ospf_routemap_nb_config.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: ospf_routemap_nb_config.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: ospf_routemap_nb_config.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: ospf_routemap_nb_config.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: ospf_spf.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ospf_spf.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ospf_spf.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ospf_spf.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ospf_spf.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ospf_spf.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: ospf_spf.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: ospf_spf.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: ospf_spf.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: ospf_spf.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: ospf_spf.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: ospf_spf.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: ospf_spf.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: ospf_spf.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: ospf_spf.c:_hook_typecheck_arg_ospf_vl_add Unexecuted instantiation: ospf_spf.c:_hook_typecheck_arg_ospf_vl_delete Unexecuted instantiation: ospf_spf.c:_hook_typecheck_arg_ospf_if_update Unexecuted instantiation: ospf_spf.c:_hook_typecheck_arg_ospf_if_delete Unexecuted instantiation: ospf_spf.c:_hook_typecheck_arg_ospf_ism_change Unexecuted instantiation: ospf_spf.c:_hook_typecheck_arg_ospf_nsm_change Unexecuted instantiation: ospf_ti_lfa.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ospf_ti_lfa.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ospf_ti_lfa.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ospf_ti_lfa.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ospf_ti_lfa.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ospf_ti_lfa.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: ospf_ti_lfa.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: ospf_ti_lfa.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: ospf_ti_lfa.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: ospf_ti_lfa.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: ospf_ti_lfa.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: ospf_ti_lfa.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: ospf_ti_lfa.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: ospf_ti_lfa.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: ospf_sr.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ospf_sr.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ospf_sr.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ospf_sr.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ospf_sr.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ospf_sr.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: ospf_sr.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: ospf_sr.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: ospf_sr.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: ospf_sr.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: ospf_sr.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: ospf_sr.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: ospf_sr.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: ospf_sr.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: ospf_sr.c:_hook_typecheck_arg_ospf_vl_add Unexecuted instantiation: ospf_sr.c:_hook_typecheck_arg_ospf_vl_delete Unexecuted instantiation: ospf_sr.c:_hook_typecheck_arg_ospf_if_update Unexecuted instantiation: ospf_sr.c:_hook_typecheck_arg_ospf_if_delete Unexecuted instantiation: ospf_sr.c:_hook_typecheck_arg_ospf_ism_change Unexecuted instantiation: ospf_sr.c:_hook_typecheck_arg_ospf_nsm_change Unexecuted instantiation: ospf_te.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ospf_te.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ospf_te.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ospf_te.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ospf_te.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ospf_te.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: ospf_te.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: ospf_te.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: ospf_te.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: ospf_te.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: ospf_te.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: ospf_te.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: ospf_te.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: ospf_te.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: ospf_te.c:_hook_typecheck_arg_ospf_vl_add Unexecuted instantiation: ospf_te.c:_hook_typecheck_arg_ospf_vl_delete Unexecuted instantiation: ospf_te.c:_hook_typecheck_arg_ospf_if_update Unexecuted instantiation: ospf_te.c:_hook_typecheck_arg_ospf_if_delete Unexecuted instantiation: ospf_te.c:_hook_typecheck_arg_ospf_ism_change Unexecuted instantiation: ospf_te.c:_hook_typecheck_arg_ospf_nsm_change Unexecuted instantiation: ospf_vty.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ospf_vty.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ospf_vty.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ospf_vty.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ospf_vty.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ospf_vty.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: ospf_vty.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: ospf_vty.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: ospf_vty.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: ospf_vty.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: ospf_vty.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: ospf_vty.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: ospf_vty.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: ospf_vty.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: ospf_vty.c:_hook_typecheck_arg_ospf_ism_change Unexecuted instantiation: ospf_vty.c:_hook_typecheck_arg_ospf_vl_add Unexecuted instantiation: ospf_vty.c:_hook_typecheck_arg_ospf_vl_delete Unexecuted instantiation: ospf_vty.c:_hook_typecheck_arg_ospf_if_update Unexecuted instantiation: ospf_vty.c:_hook_typecheck_arg_ospf_if_delete Unexecuted instantiation: ospf_vty.c:_hook_typecheck_arg_ospf_nsm_change Unexecuted instantiation: ospf_zebra.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ospf_zebra.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ospf_zebra.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ospf_zebra.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ospf_zebra.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ospf_zebra.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: ospf_zebra.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: ospf_zebra.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: ospf_zebra.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: ospf_zebra.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: ospf_zebra.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: ospf_zebra.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: ospf_zebra.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: ospf_zebra.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: ospf_zebra.c:_hook_typecheck_arg_ospf_vl_add Unexecuted instantiation: ospf_zebra.c:_hook_typecheck_arg_ospf_vl_delete Unexecuted instantiation: ospf_zebra.c:_hook_typecheck_arg_ospf_if_update Unexecuted instantiation: ospf_zebra.c:_hook_typecheck_arg_ospf_if_delete Unexecuted instantiation: ospf_zebra.c:_hook_typecheck_arg_ospf_ism_change Unexecuted instantiation: ospf_zebra.c:_hook_typecheck_arg_ospf_nsm_change Unexecuted instantiation: ospfd.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ospfd.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ospfd.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ospfd.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ospfd.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ospfd.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: ospfd.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: ospfd.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: ospfd.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: ospfd.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: ospfd.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: ospfd.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: ospfd.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: ospfd.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: ospfd.c:_hook_typecheck_arg_ospf_vl_add Unexecuted instantiation: ospfd.c:_hook_typecheck_arg_ospf_vl_delete Unexecuted instantiation: ospfd.c:_hook_typecheck_arg_ospf_if_update Unexecuted instantiation: ospfd.c:_hook_typecheck_arg_ospf_if_delete Unexecuted instantiation: ospfd.c:_hook_typecheck_arg_ospf_ism_change Unexecuted instantiation: ospfd.c:_hook_typecheck_arg_ospf_nsm_change Unexecuted instantiation: ospf_gr_helper.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ospf_gr_helper.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ospf_gr_helper.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ospf_gr_helper.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ospf_gr_helper.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ospf_gr_helper.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: ospf_gr_helper.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: ospf_gr_helper.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: ospf_gr_helper.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: ospf_gr_helper.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: ospf_gr_helper.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: ospf_gr_helper.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: ospf_gr_helper.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: ospf_gr_helper.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: ospf_gr_helper.c:_hook_typecheck_arg_ospf_vl_add Unexecuted instantiation: ospf_gr_helper.c:_hook_typecheck_arg_ospf_vl_delete Unexecuted instantiation: ospf_gr_helper.c:_hook_typecheck_arg_ospf_if_update Unexecuted instantiation: ospf_gr_helper.c:_hook_typecheck_arg_ospf_if_delete Unexecuted instantiation: ospf_gr_helper.c:_hook_typecheck_arg_ospf_nsm_change Unexecuted instantiation: ospf_gr_helper.c:_hook_typecheck_arg_ospf_ism_change Unexecuted instantiation: ospf_abr.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ospf_abr.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ospf_abr.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ospf_abr.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ospf_abr.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ospf_abr.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: ospf_abr.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: ospf_abr.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: ospf_abr.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: ospf_abr.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: ospf_abr.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: ospf_abr.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: ospf_abr.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: ospf_abr.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: ospf_abr.c:_hook_typecheck_arg_ospf_vl_add Unexecuted instantiation: ospf_abr.c:_hook_typecheck_arg_ospf_vl_delete Unexecuted instantiation: ospf_abr.c:_hook_typecheck_arg_ospf_if_update Unexecuted instantiation: ospf_abr.c:_hook_typecheck_arg_ospf_if_delete Unexecuted instantiation: ospf_abr.c:_hook_typecheck_arg_ospf_ism_change Unexecuted instantiation: ospf_abr.c:_hook_typecheck_arg_ospf_nsm_change Unexecuted instantiation: ospf_apiserver.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ospf_apiserver.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ospf_apiserver.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ospf_apiserver.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ospf_apiserver.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ospf_apiserver.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: ospf_apiserver.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: ospf_apiserver.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: ospf_apiserver.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: ospf_apiserver.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: ospf_apiserver.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: ospf_apiserver.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: ospf_apiserver.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: ospf_apiserver.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: ospf_apiserver.c:_hook_typecheck_arg_ospf_vl_add Unexecuted instantiation: ospf_apiserver.c:_hook_typecheck_arg_ospf_vl_delete Unexecuted instantiation: ospf_apiserver.c:_hook_typecheck_arg_ospf_if_update Unexecuted instantiation: ospf_apiserver.c:_hook_typecheck_arg_ospf_if_delete Unexecuted instantiation: ospf_apiserver.c:_hook_typecheck_arg_ospf_ism_change Unexecuted instantiation: ospf_apiserver.c:_hook_typecheck_arg_ospf_nsm_change Unexecuted instantiation: ospf_asbr.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ospf_asbr.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ospf_asbr.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ospf_asbr.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ospf_asbr.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ospf_asbr.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: ospf_asbr.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: ospf_asbr.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: ospf_asbr.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: ospf_asbr.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: ospf_asbr.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: ospf_asbr.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: ospf_asbr.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: ospf_asbr.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: ospf_asbr.c:_hook_typecheck_arg_ospf_vl_add Unexecuted instantiation: ospf_asbr.c:_hook_typecheck_arg_ospf_vl_delete Unexecuted instantiation: ospf_asbr.c:_hook_typecheck_arg_ospf_if_update Unexecuted instantiation: ospf_asbr.c:_hook_typecheck_arg_ospf_if_delete Unexecuted instantiation: ospf_ase.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ospf_ase.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ospf_ase.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ospf_ase.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ospf_ase.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ospf_ase.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: ospf_ase.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: ospf_ase.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: ospf_ase.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: ospf_ase.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: ospf_ase.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: ospf_ase.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: ospf_ase.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: ospf_ase.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: ospf_ase.c:_hook_typecheck_arg_ospf_vl_add Unexecuted instantiation: ospf_ase.c:_hook_typecheck_arg_ospf_vl_delete Unexecuted instantiation: ospf_ase.c:_hook_typecheck_arg_ospf_if_update Unexecuted instantiation: ospf_ase.c:_hook_typecheck_arg_ospf_if_delete Unexecuted instantiation: ospf_ase.c:_hook_typecheck_arg_ospf_ism_change Unexecuted instantiation: ospf_ase.c:_hook_typecheck_arg_ospf_nsm_change Unexecuted instantiation: ospf_ext.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ospf_ext.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ospf_ext.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ospf_ext.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ospf_ext.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ospf_ext.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: ospf_ext.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: ospf_ext.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: ospf_ext.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: ospf_ext.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: ospf_ext.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: ospf_ext.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: ospf_ext.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: ospf_ext.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: ospf_ext.c:_hook_typecheck_arg_ospf_vl_add Unexecuted instantiation: ospf_ext.c:_hook_typecheck_arg_ospf_vl_delete Unexecuted instantiation: ospf_ext.c:_hook_typecheck_arg_ospf_if_update Unexecuted instantiation: ospf_ext.c:_hook_typecheck_arg_ospf_if_delete Unexecuted instantiation: ospf_ext.c:_hook_typecheck_arg_ospf_ism_change Unexecuted instantiation: ospf_ext.c:_hook_typecheck_arg_ospf_nsm_change Unexecuted instantiation: ospf_flood.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ospf_flood.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ospf_flood.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ospf_flood.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ospf_flood.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ospf_flood.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: ospf_flood.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: ospf_flood.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: ospf_flood.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: ospf_flood.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: ospf_flood.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: ospf_flood.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: ospf_flood.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: ospf_flood.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: ospf_flood.c:_hook_typecheck_arg_ospf_vl_add Unexecuted instantiation: ospf_flood.c:_hook_typecheck_arg_ospf_vl_delete Unexecuted instantiation: ospf_flood.c:_hook_typecheck_arg_ospf_if_update Unexecuted instantiation: ospf_flood.c:_hook_typecheck_arg_ospf_if_delete Unexecuted instantiation: ospf_flood.c:_hook_typecheck_arg_ospf_ism_change Unexecuted instantiation: ospf_flood.c:_hook_typecheck_arg_ospf_nsm_change Unexecuted instantiation: ospf_gr.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ospf_gr.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ospf_gr.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ospf_gr.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ospf_gr.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ospf_gr.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: ospf_gr.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: ospf_gr.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: ospf_gr.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: ospf_gr.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: ospf_gr.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: ospf_gr.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: ospf_gr.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: ospf_gr.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: ospf_gr.c:_hook_typecheck_arg_ospf_ism_change Unexecuted instantiation: ospf_gr.c:_hook_typecheck_arg_ospf_vl_add Unexecuted instantiation: ospf_gr.c:_hook_typecheck_arg_ospf_vl_delete Unexecuted instantiation: ospf_gr.c:_hook_typecheck_arg_ospf_if_update Unexecuted instantiation: ospf_gr.c:_hook_typecheck_arg_ospf_if_delete Unexecuted instantiation: ospf_gr.c:_hook_typecheck_arg_ospf_nsm_change Unexecuted instantiation: ospf_ia.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ospf_ia.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ospf_ia.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ospf_ia.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ospf_ia.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ospf_ia.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: ospf_ia.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: ospf_ia.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: ospf_ia.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: ospf_ia.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: ospf_ia.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: ospf_ia.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: ospf_ia.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: ospf_ia.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: ospf_ia.c:_hook_typecheck_arg_ospf_vl_add Unexecuted instantiation: ospf_ia.c:_hook_typecheck_arg_ospf_vl_delete Unexecuted instantiation: ospf_ia.c:_hook_typecheck_arg_ospf_if_update Unexecuted instantiation: ospf_ia.c:_hook_typecheck_arg_ospf_if_delete Unexecuted instantiation: ospf_ia.c:_hook_typecheck_arg_ospf_ism_change Unexecuted instantiation: ospf_ia.c:_hook_typecheck_arg_ospf_nsm_change Unexecuted instantiation: ospf_ism.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ospf_ism.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ospf_ism.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ospf_ism.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ospf_ism.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ospf_ism.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: ospf_ism.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: ospf_ism.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: ospf_ism.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: ospf_ism.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: ospf_ism.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: ospf_ism.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: ospf_ism.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: ospf_ism.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: ospf_ism.c:_hook_typecheck_arg_ospf_vl_add Unexecuted instantiation: ospf_ism.c:_hook_typecheck_arg_ospf_vl_delete Unexecuted instantiation: ospf_ism.c:_hook_typecheck_arg_ospf_if_update Unexecuted instantiation: ospf_ism.c:_hook_typecheck_arg_ospf_if_delete Unexecuted instantiation: ospf_ism.c:_hook_typecheck_arg_ospf_ism_change Unexecuted instantiation: ospf_ism.c:_hook_typecheck_arg_ospf_nsm_change Unexecuted instantiation: ospf_ldp_sync.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ospf_ldp_sync.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ospf_ldp_sync.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ospf_ldp_sync.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ospf_ldp_sync.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ospf_ldp_sync.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: ospf_ldp_sync.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: ospf_ldp_sync.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: ospf_ldp_sync.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: ospf_ldp_sync.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: ospf_ldp_sync.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: ospf_ldp_sync.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: ospf_ldp_sync.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: ospf_ldp_sync.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: ospf_ldp_sync.c:_hook_typecheck_arg_ospf_vl_add Unexecuted instantiation: ospf_ldp_sync.c:_hook_typecheck_arg_ospf_vl_delete Unexecuted instantiation: ospf_ldp_sync.c:_hook_typecheck_arg_ospf_if_update Unexecuted instantiation: ospf_ldp_sync.c:_hook_typecheck_arg_ospf_if_delete Unexecuted instantiation: ospf_ldp_sync.c:_hook_typecheck_arg_ospf_ism_change Unexecuted instantiation: ospf_route.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ospf_route.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ospf_route.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ospf_route.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ospf_route.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ospf_route.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: ospf_route.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: ospf_route.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: ospf_route.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: ospf_route.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: ospf_route.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: ospf_route.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: ospf_route.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: ospf_route.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: ospf_route.c:_hook_typecheck_arg_ospf_vl_add Unexecuted instantiation: ospf_route.c:_hook_typecheck_arg_ospf_vl_delete Unexecuted instantiation: ospf_route.c:_hook_typecheck_arg_ospf_if_update Unexecuted instantiation: ospf_route.c:_hook_typecheck_arg_ospf_if_delete Unexecuted instantiation: ospf_api.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ospf_api.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ospf_api.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ospf_api.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ospf_api.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ospf_api.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: ospf_api.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: ospf_api.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: ospf_api.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: ospf_api.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: ospf_api.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: ospf_api.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: ospf_api.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: ospf_api.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: ospf_api.c:_hook_typecheck_arg_ospf_vl_add Unexecuted instantiation: ospf_api.c:_hook_typecheck_arg_ospf_vl_delete Unexecuted instantiation: ospf_api.c:_hook_typecheck_arg_ospf_if_update Unexecuted instantiation: ospf_api.c:_hook_typecheck_arg_ospf_if_delete Unexecuted instantiation: ospf_api.c:_hook_typecheck_arg_ospf_ism_change Unexecuted instantiation: ospf_api.c:_hook_typecheck_arg_ospf_nsm_change Unexecuted instantiation: affinitymap.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: affinitymap.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: affinitymap.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: affinitymap.c:_hook_typecheck_arg_if_add Unexecuted instantiation: affinitymap.c:_hook_typecheck_arg_if_del Unexecuted instantiation: affinitymap.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: affinitymap.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: affinitymap.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: affinitymap.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: affinitymap.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: affinitymap.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: affinitymap.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: affinitymap.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: affinitymap.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: affinitymap_cli.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: affinitymap_cli.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: affinitymap_cli.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: affinitymap_cli.c:_hook_typecheck_arg_if_add Unexecuted instantiation: affinitymap_cli.c:_hook_typecheck_arg_if_del Unexecuted instantiation: affinitymap_cli.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: affinitymap_cli.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: affinitymap_cli.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: affinitymap_cli.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: affinitymap_cli.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: affinitymap_cli.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: affinitymap_cli.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: affinitymap_cli.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: affinitymap_cli.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: affinitymap_northbound.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: affinitymap_northbound.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: affinitymap_northbound.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: affinitymap_northbound.c:_hook_typecheck_arg_if_add Unexecuted instantiation: affinitymap_northbound.c:_hook_typecheck_arg_if_del Unexecuted instantiation: affinitymap_northbound.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: affinitymap_northbound.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: affinitymap_northbound.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: affinitymap_northbound.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: affinitymap_northbound.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: affinitymap_northbound.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: affinitymap_northbound.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: affinitymap_northbound.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: affinitymap_northbound.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: agg_table.c:_hook_typecheck_arg_if_add Unexecuted instantiation: agg_table.c:_hook_typecheck_arg_if_del Unexecuted instantiation: agg_table.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: agg_table.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: agg_table.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: asn.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: asn.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: asn.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: asn.c:_hook_typecheck_arg_if_add Unexecuted instantiation: asn.c:_hook_typecheck_arg_if_del Unexecuted instantiation: asn.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: asn.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: asn.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: asn.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: asn.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: asn.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: asn.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: asn.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: asn.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bfd.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bfd.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bfd.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bfd.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bfd.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bfd.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bfd.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bfd.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bfd.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bfd.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bfd.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bfd.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bfd.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bfd.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: buffer.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: buffer.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: buffer.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: buffer.c:_hook_typecheck_arg_if_add Unexecuted instantiation: buffer.c:_hook_typecheck_arg_if_del Unexecuted instantiation: buffer.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: buffer.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: buffer.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: buffer.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: buffer.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: buffer.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: buffer.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: buffer.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: buffer.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: command.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: command.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: command.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: command.c:_hook_typecheck_arg_if_add Unexecuted instantiation: command.c:_hook_typecheck_arg_if_del Unexecuted instantiation: command.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: command.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: command.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: command.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: command.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: command.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: command.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: command.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: command.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: command.c:_hook_typecheck_arg_zlog_rotate Unexecuted instantiation: command.c:_hook_typecheck_arg_zlog_cli_show Unexecuted instantiation: command.c:_hook_typecheck_arg_cmd_execute Unexecuted instantiation: command.c:_hook_typecheck_arg_cmd_execute_done Unexecuted instantiation: command_graph.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: command_graph.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: command_graph.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: command_graph.c:_hook_typecheck_arg_if_add Unexecuted instantiation: command_graph.c:_hook_typecheck_arg_if_del Unexecuted instantiation: command_graph.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: command_graph.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: command_graph.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: command_graph.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: command_graph.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: command_graph.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: command_graph.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: command_graph.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: command_graph.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: command_lex.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: command_lex.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: command_lex.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: command_match.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: command_match.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: command_match.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: command_match.c:_hook_typecheck_arg_if_add Unexecuted instantiation: command_match.c:_hook_typecheck_arg_if_del Unexecuted instantiation: command_match.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: command_match.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: command_match.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: command_match.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: command_match.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: command_match.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: command_match.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: command_match.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: command_match.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: command_parse.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: command_parse.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: command_parse.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: cspf.c:_hook_typecheck_arg_if_add Unexecuted instantiation: cspf.c:_hook_typecheck_arg_if_del Unexecuted instantiation: cspf.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: cspf.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: cspf.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: debug.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: debug.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: debug.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: debug.c:_hook_typecheck_arg_if_add Unexecuted instantiation: debug.c:_hook_typecheck_arg_if_del Unexecuted instantiation: debug.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: debug.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: debug.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: debug.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: debug.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: debug.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: debug.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: debug.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: debug.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: distribute.c:_hook_typecheck_arg_if_add Unexecuted instantiation: distribute.c:_hook_typecheck_arg_if_del Unexecuted instantiation: distribute.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: distribute.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: distribute.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: distribute.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: distribute.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: distribute.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: distribute.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: distribute.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: distribute.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: distribute.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: distribute.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: distribute.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: ferr.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ferr.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ferr.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ferr.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ferr.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ferr.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: ferr.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: ferr.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: ferr.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: ferr.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: ferr.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: ferr.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: ferr.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: ferr.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: filter.c:_hook_typecheck_arg_if_add Unexecuted instantiation: filter.c:_hook_typecheck_arg_if_del Unexecuted instantiation: filter.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: filter.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: filter.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: filter.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: filter.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: filter.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: filter.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: filter.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: filter.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: filter.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: filter.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: filter.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: filter_cli.c:_hook_typecheck_arg_if_add Unexecuted instantiation: filter_cli.c:_hook_typecheck_arg_if_del Unexecuted instantiation: filter_cli.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: filter_cli.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: filter_cli.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: filter_cli.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: filter_cli.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: filter_cli.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: filter_cli.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: filter_cli.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: filter_cli.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: filter_cli.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: filter_cli.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: filter_cli.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: filter_nb.c:_hook_typecheck_arg_if_add Unexecuted instantiation: filter_nb.c:_hook_typecheck_arg_if_del Unexecuted instantiation: filter_nb.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: filter_nb.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: filter_nb.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: filter_nb.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: filter_nb.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: filter_nb.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: filter_nb.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: filter_nb.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: filter_nb.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: filter_nb.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: filter_nb.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: filter_nb.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: flex_algo.c:_hook_typecheck_arg_if_add Unexecuted instantiation: flex_algo.c:_hook_typecheck_arg_if_del Unexecuted instantiation: flex_algo.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: flex_algo.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: flex_algo.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: frr_pthread.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: frr_pthread.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: frr_pthread.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: frr_pthread.c:_hook_typecheck_arg_if_add Unexecuted instantiation: frr_pthread.c:_hook_typecheck_arg_if_del Unexecuted instantiation: frr_pthread.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: frr_pthread.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: frr_pthread.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: frr_pthread.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: frr_pthread.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: frr_pthread.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: frr_pthread.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: frr_pthread.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: frr_pthread.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: grammar_sandbox.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: grammar_sandbox.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: grammar_sandbox.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: grammar_sandbox.c:_hook_typecheck_arg_if_add Unexecuted instantiation: grammar_sandbox.c:_hook_typecheck_arg_if_del Unexecuted instantiation: grammar_sandbox.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: grammar_sandbox.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: grammar_sandbox.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: grammar_sandbox.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: grammar_sandbox.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: grammar_sandbox.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: grammar_sandbox.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: grammar_sandbox.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: grammar_sandbox.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: hash.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: hash.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: hash.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: hash.c:_hook_typecheck_arg_if_add Unexecuted instantiation: hash.c:_hook_typecheck_arg_if_del Unexecuted instantiation: hash.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: hash.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: hash.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: hash.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: hash.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: hash.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: hash.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: hash.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: hash.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: id_alloc.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: id_alloc.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: id_alloc.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: id_alloc.c:_hook_typecheck_arg_if_add Unexecuted instantiation: id_alloc.c:_hook_typecheck_arg_if_del Unexecuted instantiation: id_alloc.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: id_alloc.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: id_alloc.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: id_alloc.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: id_alloc.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: id_alloc.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: id_alloc.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: id_alloc.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: id_alloc.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: if.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: if.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: if.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: if.c:_hook_typecheck_arg_if_add Unexecuted instantiation: if.c:_hook_typecheck_arg_if_del Unexecuted instantiation: if.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: if.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: if.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: if.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: if.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: if.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: if.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: if.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: if.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: if_rmap.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: if_rmap.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: if_rmap.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: if_rmap.c:_hook_typecheck_arg_if_add Unexecuted instantiation: if_rmap.c:_hook_typecheck_arg_if_del Unexecuted instantiation: if_rmap.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: if_rmap.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: if_rmap.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: if_rmap.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: if_rmap.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: if_rmap.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: if_rmap.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: if_rmap.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: if_rmap.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: json.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: json.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: json.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: json.c:_hook_typecheck_arg_if_add Unexecuted instantiation: json.c:_hook_typecheck_arg_if_del Unexecuted instantiation: json.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: json.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: json.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: json.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: json.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: json.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: json.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: json.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: json.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: keychain.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: keychain.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: keychain.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: keychain.c:_hook_typecheck_arg_if_add Unexecuted instantiation: keychain.c:_hook_typecheck_arg_if_del Unexecuted instantiation: keychain.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: keychain.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: keychain.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: keychain.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: keychain.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: keychain.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: keychain.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: keychain.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: keychain.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: ldp_sync.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ldp_sync.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ldp_sync.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ldp_sync.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ldp_sync.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ldp_sync.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: ldp_sync.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: ldp_sync.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: ldp_sync.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: ldp_sync.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: ldp_sync.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: ldp_sync.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: ldp_sync.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: ldp_sync.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: lib_errors.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: lib_errors.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: lib_errors.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: lib_errors.c:_hook_typecheck_arg_if_add Unexecuted instantiation: lib_errors.c:_hook_typecheck_arg_if_del Unexecuted instantiation: lib_errors.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: lib_errors.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: lib_errors.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: lib_errors.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: lib_errors.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: lib_errors.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: lib_errors.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: lib_errors.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: lib_errors.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: lib_vty.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: lib_vty.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: lib_vty.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: lib_vty.c:_hook_typecheck_arg_if_add Unexecuted instantiation: lib_vty.c:_hook_typecheck_arg_if_del Unexecuted instantiation: lib_vty.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: lib_vty.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: lib_vty.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: lib_vty.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: lib_vty.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: lib_vty.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: lib_vty.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: lib_vty.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: lib_vty.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: libfrr.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: libfrr.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: libfrr.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: libfrr.c:_hook_typecheck_arg_if_add Unexecuted instantiation: libfrr.c:_hook_typecheck_arg_if_del Unexecuted instantiation: libfrr.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: libfrr.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: libfrr.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: libfrr.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: libfrr.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: libfrr.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: libfrr.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: libfrr.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: libfrr.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: libfrr.c:_hook_typecheck_arg_zlog_rotate Unexecuted instantiation: libfrr.c:_hook_typecheck_arg_zlog_cli_show Unexecuted instantiation: link_state.c:_hook_typecheck_arg_if_add Unexecuted instantiation: link_state.c:_hook_typecheck_arg_if_del Unexecuted instantiation: link_state.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: link_state.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: link_state.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: link_state.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: link_state.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: link_state.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: link_state.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: link_state.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: link_state.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: link_state.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: link_state.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: link_state.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: log.c:_hook_typecheck_arg_if_add Unexecuted instantiation: log.c:_hook_typecheck_arg_if_del Unexecuted instantiation: log.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: log.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: log.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: log.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: log.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: log.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: log.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: log.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: log.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: log.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: log.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: log.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: log_filter.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: log_filter.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: log_filter.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: log_vty.c:_hook_typecheck_arg_zlog_rotate Unexecuted instantiation: log_vty.c:_hook_typecheck_arg_zlog_cli_show Unexecuted instantiation: log_vty.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: log_vty.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: log_vty.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: log_vty.c:_hook_typecheck_arg_if_add Unexecuted instantiation: log_vty.c:_hook_typecheck_arg_if_del Unexecuted instantiation: log_vty.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: log_vty.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: log_vty.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: log_vty.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: log_vty.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: log_vty.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: log_vty.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: log_vty.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: log_vty.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: memory.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: memory.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: memory.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: mgmt_be_client.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: mgmt_be_client.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: mgmt_be_client.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: mgmt_be_client.c:_hook_typecheck_arg_if_add Unexecuted instantiation: mgmt_be_client.c:_hook_typecheck_arg_if_del Unexecuted instantiation: mgmt_be_client.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: mgmt_be_client.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: mgmt_be_client.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: mgmt_be_client.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: mgmt_be_client.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: mgmt_be_client.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: mgmt_be_client.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: mgmt_be_client.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: mgmt_be_client.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: mgmt_fe_client.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: mgmt_fe_client.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: mgmt_fe_client.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: mgmt_fe_client.c:_hook_typecheck_arg_if_add Unexecuted instantiation: mgmt_fe_client.c:_hook_typecheck_arg_if_del Unexecuted instantiation: mgmt_fe_client.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: mgmt_fe_client.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: mgmt_fe_client.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: mgmt_fe_client.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: mgmt_fe_client.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: mgmt_fe_client.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: mgmt_fe_client.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: mgmt_fe_client.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: mgmt_fe_client.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: mgmt_msg.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: mgmt_msg.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: mgmt_msg.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: mgmt_msg.c:_hook_typecheck_arg_if_add Unexecuted instantiation: mgmt_msg.c:_hook_typecheck_arg_if_del Unexecuted instantiation: mgmt_msg.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: mgmt_msg.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: mgmt_msg.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: mgmt_msg.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: mgmt_msg.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: mgmt_msg.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: mgmt_msg.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: mgmt_msg.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: mgmt_msg.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: mlag.c:_hook_typecheck_arg_if_add Unexecuted instantiation: mlag.c:_hook_typecheck_arg_if_del Unexecuted instantiation: mlag.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: mlag.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: mlag.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: mlag.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: mlag.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: mlag.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: mlag.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: mlag.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: mlag.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: mlag.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: mlag.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: mlag.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: srv6.c:_hook_typecheck_arg_if_add Unexecuted instantiation: srv6.c:_hook_typecheck_arg_if_del Unexecuted instantiation: srv6.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: srv6.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: srv6.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: srv6.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: srv6.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: srv6.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: srv6.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: srv6.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: srv6.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: srv6.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: srv6.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: srv6.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: network.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: network.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: network.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: network.c:_hook_typecheck_arg_if_add Unexecuted instantiation: network.c:_hook_typecheck_arg_if_del Unexecuted instantiation: network.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: network.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: network.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: network.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: network.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: network.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: network.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: network.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: network.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: nexthop.c:_hook_typecheck_arg_if_add Unexecuted instantiation: nexthop.c:_hook_typecheck_arg_if_del Unexecuted instantiation: nexthop.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: nexthop.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: nexthop.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: nexthop.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: nexthop.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: nexthop.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: nexthop.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: nexthop.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: nexthop.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: nexthop.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: nexthop.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: nexthop.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: netns_linux.c:_hook_typecheck_arg_if_add Unexecuted instantiation: netns_linux.c:_hook_typecheck_arg_if_del Unexecuted instantiation: netns_linux.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: netns_linux.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: netns_linux.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: netns_linux.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: netns_linux.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: netns_linux.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: netns_linux.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: netns_linux.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: netns_linux.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: netns_linux.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: netns_linux.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: netns_linux.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: nexthop_group.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: nexthop_group.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: nexthop_group.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: nexthop_group.c:_hook_typecheck_arg_if_add Unexecuted instantiation: nexthop_group.c:_hook_typecheck_arg_if_del Unexecuted instantiation: nexthop_group.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: nexthop_group.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: nexthop_group.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: nexthop_group.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: nexthop_group.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: nexthop_group.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: nexthop_group.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: nexthop_group.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: nexthop_group.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: northbound.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: northbound.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: northbound.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: northbound.c:_hook_typecheck_arg_if_add Unexecuted instantiation: northbound.c:_hook_typecheck_arg_if_del Unexecuted instantiation: northbound.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: northbound.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: northbound.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: northbound.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: northbound.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: northbound.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: northbound.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: northbound.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: northbound.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: northbound_cli.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: northbound_cli.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: northbound_cli.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: northbound_cli.c:_hook_typecheck_arg_if_add Unexecuted instantiation: northbound_cli.c:_hook_typecheck_arg_if_del Unexecuted instantiation: northbound_cli.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: northbound_cli.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: northbound_cli.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: northbound_cli.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: northbound_cli.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: northbound_cli.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: northbound_cli.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: northbound_cli.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: northbound_cli.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: northbound_db.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: northbound_db.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: northbound_db.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: northbound_db.c:_hook_typecheck_arg_if_add Unexecuted instantiation: northbound_db.c:_hook_typecheck_arg_if_del Unexecuted instantiation: northbound_db.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: northbound_db.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: northbound_db.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: northbound_db.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: northbound_db.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: northbound_db.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: northbound_db.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: northbound_db.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: northbound_db.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pid_output.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pid_output.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pid_output.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pid_output.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pid_output.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pid_output.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pid_output.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pid_output.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pid_output.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pid_output.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pid_output.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pid_output.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pid_output.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pid_output.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: plist.c:_hook_typecheck_arg_if_add Unexecuted instantiation: plist.c:_hook_typecheck_arg_if_del Unexecuted instantiation: plist.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: plist.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: plist.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: plist.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: plist.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: plist.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: plist.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: plist.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: plist.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: plist.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: plist.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: plist.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: prefix.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: prefix.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: prefix.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: prefix.c:_hook_typecheck_arg_if_add Unexecuted instantiation: prefix.c:_hook_typecheck_arg_if_del Unexecuted instantiation: prefix.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: prefix.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: prefix.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: prefix.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: prefix.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: prefix.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: prefix.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: prefix.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: prefix.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: privs.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: privs.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: privs.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: privs.c:_hook_typecheck_arg_if_add Unexecuted instantiation: privs.c:_hook_typecheck_arg_if_del Unexecuted instantiation: privs.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: privs.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: privs.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: privs.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: privs.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: privs.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: privs.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: privs.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: privs.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pullwr.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pullwr.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pullwr.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pullwr.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pullwr.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: qobj.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: qobj.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: qobj.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: routemap.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: routemap.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: routemap.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: routemap.c:_hook_typecheck_arg_if_add Unexecuted instantiation: routemap.c:_hook_typecheck_arg_if_del Unexecuted instantiation: routemap.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: routemap.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: routemap.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: routemap.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: routemap.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: routemap.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: routemap.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: routemap.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: routemap.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: routemap_cli.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: routemap_cli.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: routemap_cli.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: routemap_cli.c:_hook_typecheck_arg_if_add Unexecuted instantiation: routemap_cli.c:_hook_typecheck_arg_if_del Unexecuted instantiation: routemap_cli.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: routemap_cli.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: routemap_cli.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: routemap_cli.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: routemap_cli.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: routemap_cli.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: routemap_cli.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: routemap_cli.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: routemap_cli.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: routemap_northbound.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: routemap_northbound.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: routemap_northbound.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: routemap_northbound.c:_hook_typecheck_arg_if_add Unexecuted instantiation: routemap_northbound.c:_hook_typecheck_arg_if_del Unexecuted instantiation: routemap_northbound.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: routemap_northbound.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: routemap_northbound.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: routemap_northbound.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: routemap_northbound.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: routemap_northbound.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: routemap_northbound.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: routemap_northbound.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: routemap_northbound.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: sbuf.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: sbuf.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: sbuf.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: sigevent.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: sigevent.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: sigevent.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: sigevent.c:_hook_typecheck_arg_if_add Unexecuted instantiation: sigevent.c:_hook_typecheck_arg_if_del Unexecuted instantiation: sigevent.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: sigevent.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: sigevent.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: sigevent.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: sigevent.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: sigevent.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: sigevent.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: sigevent.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: sigevent.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: skiplist.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: skiplist.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: skiplist.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: skiplist.c:_hook_typecheck_arg_if_add Unexecuted instantiation: skiplist.c:_hook_typecheck_arg_if_del Unexecuted instantiation: skiplist.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: skiplist.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: skiplist.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: skiplist.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: skiplist.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: skiplist.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: skiplist.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: skiplist.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: skiplist.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: sockopt.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: sockopt.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: sockopt.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: sockopt.c:_hook_typecheck_arg_if_add Unexecuted instantiation: sockopt.c:_hook_typecheck_arg_if_del Unexecuted instantiation: sockopt.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: sockopt.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: sockopt.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: sockopt.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: sockopt.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: sockopt.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: sockopt.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: sockopt.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: sockopt.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: sockunion.c:_hook_typecheck_arg_if_add Unexecuted instantiation: sockunion.c:_hook_typecheck_arg_if_del Unexecuted instantiation: sockunion.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: sockunion.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: sockunion.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: sockunion.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: sockunion.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: sockunion.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: sockunion.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: sockunion.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: sockunion.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: sockunion.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: sockunion.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: sockunion.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: spf_backoff.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: spf_backoff.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: spf_backoff.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: spf_backoff.c:_hook_typecheck_arg_if_add Unexecuted instantiation: spf_backoff.c:_hook_typecheck_arg_if_del Unexecuted instantiation: spf_backoff.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: spf_backoff.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: spf_backoff.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: spf_backoff.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: spf_backoff.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: spf_backoff.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: spf_backoff.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: spf_backoff.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: spf_backoff.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: srcdest_table.c:_hook_typecheck_arg_if_add Unexecuted instantiation: srcdest_table.c:_hook_typecheck_arg_if_del Unexecuted instantiation: srcdest_table.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: srcdest_table.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: srcdest_table.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: stream.c:_hook_typecheck_arg_if_add Unexecuted instantiation: stream.c:_hook_typecheck_arg_if_del Unexecuted instantiation: stream.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: stream.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: stream.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: stream.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: stream.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: stream.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: stream.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: stream.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: stream.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: stream.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: stream.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: stream.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: systemd.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: systemd.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: systemd.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: systemd.c:_hook_typecheck_arg_if_add Unexecuted instantiation: systemd.c:_hook_typecheck_arg_if_del Unexecuted instantiation: systemd.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: systemd.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: systemd.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: systemd.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: systemd.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: systemd.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: systemd.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: systemd.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: systemd.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: table.c:_hook_typecheck_arg_if_add Unexecuted instantiation: table.c:_hook_typecheck_arg_if_del Unexecuted instantiation: table.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: table.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: table.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: termtable.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: termtable.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: termtable.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: termtable.c:_hook_typecheck_arg_if_add Unexecuted instantiation: termtable.c:_hook_typecheck_arg_if_del Unexecuted instantiation: termtable.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: termtable.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: termtable.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: termtable.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: termtable.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: termtable.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: termtable.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: termtable.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: termtable.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: event.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: event.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: event.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: event.c:_hook_typecheck_arg_if_add Unexecuted instantiation: event.c:_hook_typecheck_arg_if_del Unexecuted instantiation: event.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: event.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: event.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: event.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: event.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: event.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: event.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: event.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: event.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: vrf.c:_hook_typecheck_arg_if_add Unexecuted instantiation: vrf.c:_hook_typecheck_arg_if_del Unexecuted instantiation: vrf.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: vrf.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: vrf.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: vrf.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: vrf.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: vrf.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: vrf.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: vrf.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: vrf.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: vrf.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: vrf.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: vrf.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: vty.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: vty.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: vty.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: vty.c:_hook_typecheck_arg_if_add Unexecuted instantiation: vty.c:_hook_typecheck_arg_if_del Unexecuted instantiation: vty.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: vty.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: vty.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: vty.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: vty.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: vty.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: vty.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: vty.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: vty.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: wheel.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: wheel.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: wheel.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: workqueue.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: workqueue.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: workqueue.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: workqueue.c:_hook_typecheck_arg_if_add Unexecuted instantiation: workqueue.c:_hook_typecheck_arg_if_del Unexecuted instantiation: workqueue.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: workqueue.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: workqueue.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: workqueue.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: workqueue.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: workqueue.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: workqueue.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: workqueue.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: workqueue.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: xref.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: xref.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: xref.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: xref.c:_hook_typecheck_arg_if_add Unexecuted instantiation: xref.c:_hook_typecheck_arg_if_del Unexecuted instantiation: xref.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: xref.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: xref.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: xref.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: xref.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: xref.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: xref.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: xref.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: xref.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: yang.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: yang.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: yang.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: yang.c:_hook_typecheck_arg_if_add Unexecuted instantiation: yang.c:_hook_typecheck_arg_if_del Unexecuted instantiation: yang.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: yang.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: yang.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: yang.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: yang.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: yang.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: yang.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: yang.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: yang.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: yang_translator.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: yang_translator.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: yang_translator.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: yang_translator.c:_hook_typecheck_arg_if_add Unexecuted instantiation: yang_translator.c:_hook_typecheck_arg_if_del Unexecuted instantiation: yang_translator.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: yang_translator.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: yang_translator.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: yang_translator.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: yang_translator.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: yang_translator.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: yang_translator.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: yang_translator.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: yang_translator.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: yang_wrappers.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: yang_wrappers.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: yang_wrappers.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: yang_wrappers.c:_hook_typecheck_arg_if_add Unexecuted instantiation: yang_wrappers.c:_hook_typecheck_arg_if_del Unexecuted instantiation: yang_wrappers.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: yang_wrappers.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: yang_wrappers.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: yang_wrappers.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: yang_wrappers.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: yang_wrappers.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: yang_wrappers.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: yang_wrappers.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: yang_wrappers.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zclient.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zclient.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zclient.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zclient.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zclient.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zclient.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zclient.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zclient.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zclient.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zclient.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zclient.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zclient.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zclient.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zclient.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zlog.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zlog.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zlog.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zlog_5424.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zlog_5424.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zlog_5424.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zlog_5424.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zlog_5424.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zlog_5424.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zlog_5424.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zlog_5424.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zlog_5424.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zlog_5424.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zlog_5424.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zlog_5424.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zlog_5424.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zlog_5424.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zlog_5424_cli.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zlog_5424_cli.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zlog_5424_cli.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zlog_5424_cli.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zlog_5424_cli.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zlog_5424_cli.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zlog_5424_cli.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zlog_5424_cli.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zlog_5424_cli.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zlog_5424_cli.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zlog_5424_cli.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zlog_5424_cli.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zlog_5424_cli.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zlog_5424_cli.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zlog_5424_cli.c:_hook_typecheck_arg_zlog_rotate Unexecuted instantiation: zlog_5424_cli.c:_hook_typecheck_arg_zlog_cli_show Unexecuted instantiation: zlog_live.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zlog_live.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zlog_live.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zlog_targets.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zlog_targets.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zlog_targets.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: routing_nb.c:_hook_typecheck_arg_if_add Unexecuted instantiation: routing_nb.c:_hook_typecheck_arg_if_del Unexecuted instantiation: routing_nb.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: routing_nb.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: routing_nb.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: routing_nb.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: routing_nb.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: routing_nb.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: routing_nb.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: routing_nb.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: routing_nb.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: routing_nb.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: routing_nb.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: routing_nb.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: routing_nb.c:_hook_typecheck_arg_routing_conf_event Unexecuted instantiation: routing_nb_config.c:_hook_typecheck_arg_if_add Unexecuted instantiation: routing_nb_config.c:_hook_typecheck_arg_if_del Unexecuted instantiation: routing_nb_config.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: routing_nb_config.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: routing_nb_config.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: routing_nb_config.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: routing_nb_config.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: routing_nb_config.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: routing_nb_config.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: routing_nb_config.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: routing_nb_config.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: routing_nb_config.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: routing_nb_config.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: routing_nb_config.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: routing_nb_config.c:_hook_typecheck_arg_routing_conf_event Unexecuted instantiation: tc.c:_hook_typecheck_arg_if_add Unexecuted instantiation: tc.c:_hook_typecheck_arg_if_del Unexecuted instantiation: tc.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: tc.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: tc.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: frr-affinity-map.yang.c:_hook_typecheck_arg_if_add Unexecuted instantiation: frr-affinity-map.yang.c:_hook_typecheck_arg_if_del Unexecuted instantiation: frr-affinity-map.yang.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: frr-affinity-map.yang.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: frr-affinity-map.yang.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: frr-filter.yang.c:_hook_typecheck_arg_if_add Unexecuted instantiation: frr-filter.yang.c:_hook_typecheck_arg_if_del Unexecuted instantiation: frr-filter.yang.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: frr-filter.yang.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: frr-filter.yang.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: frr-if-rmap.yang.c:_hook_typecheck_arg_if_add Unexecuted instantiation: frr-if-rmap.yang.c:_hook_typecheck_arg_if_del Unexecuted instantiation: frr-if-rmap.yang.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: frr-if-rmap.yang.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: frr-if-rmap.yang.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: frr-interface.yang.c:_hook_typecheck_arg_if_add Unexecuted instantiation: frr-interface.yang.c:_hook_typecheck_arg_if_del Unexecuted instantiation: frr-interface.yang.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: frr-interface.yang.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: frr-interface.yang.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: frr-route-map.yang.c:_hook_typecheck_arg_if_add Unexecuted instantiation: frr-route-map.yang.c:_hook_typecheck_arg_if_del Unexecuted instantiation: frr-route-map.yang.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: frr-route-map.yang.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: frr-route-map.yang.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: frr-route-types.yang.c:_hook_typecheck_arg_if_add Unexecuted instantiation: frr-route-types.yang.c:_hook_typecheck_arg_if_del Unexecuted instantiation: frr-route-types.yang.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: frr-route-types.yang.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: frr-route-types.yang.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: frr-vrf.yang.c:_hook_typecheck_arg_if_add Unexecuted instantiation: frr-vrf.yang.c:_hook_typecheck_arg_if_del Unexecuted instantiation: frr-vrf.yang.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: frr-vrf.yang.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: frr-vrf.yang.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: frr-routing.yang.c:_hook_typecheck_arg_if_add Unexecuted instantiation: frr-routing.yang.c:_hook_typecheck_arg_if_del Unexecuted instantiation: frr-routing.yang.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: frr-routing.yang.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: frr-routing.yang.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: frr-nexthop.yang.c:_hook_typecheck_arg_if_add Unexecuted instantiation: frr-nexthop.yang.c:_hook_typecheck_arg_if_del Unexecuted instantiation: frr-nexthop.yang.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: frr-nexthop.yang.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: frr-nexthop.yang.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ietf-routing-types.yang.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ietf-routing-types.yang.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ietf-routing-types.yang.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ietf-routing-types.yang.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ietf-routing-types.yang.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ietf-interfaces.yang.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ietf-interfaces.yang.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ietf-interfaces.yang.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ietf-interfaces.yang.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ietf-interfaces.yang.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ietf-bgp-types.yang.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ietf-bgp-types.yang.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ietf-bgp-types.yang.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ietf-bgp-types.yang.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ietf-bgp-types.yang.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: frr-module-translator.yang.c:_hook_typecheck_arg_if_add Unexecuted instantiation: frr-module-translator.yang.c:_hook_typecheck_arg_if_del Unexecuted instantiation: frr-module-translator.yang.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: frr-module-translator.yang.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: frr-module-translator.yang.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: connected.c:_hook_typecheck_arg_if_add Unexecuted instantiation: connected.c:_hook_typecheck_arg_if_del Unexecuted instantiation: connected.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: connected.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: connected.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: connected.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: connected.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: connected.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: connected.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: connected.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: connected.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: connected.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: connected.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: connected.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: connected.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: connected.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: connected.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: connected.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: connected.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: connected.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: connected.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: connected.c:_hook_typecheck_arg_zebra_if_extra_info Unexecuted instantiation: connected.c:_hook_typecheck_arg_zebra_if_config_wr Unexecuted instantiation: debug.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: if_netlink.c:_hook_typecheck_arg_if_add Unexecuted instantiation: if_netlink.c:_hook_typecheck_arg_if_del Unexecuted instantiation: if_netlink.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: if_netlink.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: if_netlink.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: if_netlink.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: if_netlink.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: if_netlink.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: if_netlink.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: if_netlink.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: if_netlink.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: if_netlink.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: if_netlink.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: if_netlink.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: if_netlink.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: if_netlink.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: if_netlink.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: if_netlink.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: if_netlink.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: if_netlink.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: if_netlink.c:_hook_typecheck_arg_zebra_if_extra_info Unexecuted instantiation: if_netlink.c:_hook_typecheck_arg_zebra_if_config_wr Unexecuted instantiation: if_netlink.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: if_netlink.c:_hook_typecheck_arg_zebra_rmac_update Unexecuted instantiation: interface.c:_hook_typecheck_arg_if_add Unexecuted instantiation: interface.c:_hook_typecheck_arg_if_del Unexecuted instantiation: interface.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: interface.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: interface.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: interface.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: interface.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: interface.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: interface.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: interface.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: interface.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: interface.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: interface.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: interface.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: interface.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: interface.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: interface.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: interface.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: interface.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: interface.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: interface.c:_hook_typecheck_arg_zebra_if_extra_info Unexecuted instantiation: interface.c:_hook_typecheck_arg_zebra_if_config_wr Unexecuted instantiation: interface.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: interface.c:_hook_typecheck_arg_zebra_rmac_update Unexecuted instantiation: ioctl.c:_hook_typecheck_arg_if_add Unexecuted instantiation: ioctl.c:_hook_typecheck_arg_if_del Unexecuted instantiation: ioctl.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ioctl.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ioctl.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: ioctl.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: ioctl.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: ioctl.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: ioctl.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: ioctl.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: ioctl.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: ioctl.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: ioctl.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: ioctl.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: ioctl.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: ioctl.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: ioctl.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: ioctl.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: ioctl.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: ioctl.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: ioctl.c:_hook_typecheck_arg_zebra_if_extra_info Unexecuted instantiation: ioctl.c:_hook_typecheck_arg_zebra_if_config_wr Unexecuted instantiation: ioctl.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: ipforward_proc.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: ipforward_proc.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: ipforward_proc.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_arg_if_add Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_arg_if_del Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: kernel_netlink.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: label_manager.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: label_manager.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: label_manager.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: label_manager.c:_hook_typecheck_arg_if_add Unexecuted instantiation: label_manager.c:_hook_typecheck_arg_if_del Unexecuted instantiation: label_manager.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: label_manager.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: label_manager.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: label_manager.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: label_manager.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: label_manager.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: label_manager.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: label_manager.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: label_manager.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: label_manager.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: label_manager.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: label_manager.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: label_manager.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: label_manager.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: label_manager.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: label_manager.c:_hook_typecheck_arg_lm_client_connect Unexecuted instantiation: label_manager.c:_hook_typecheck_arg_lm_client_disconnect Unexecuted instantiation: label_manager.c:_hook_typecheck_arg_lm_get_chunk Unexecuted instantiation: label_manager.c:_hook_typecheck_arg_lm_release_chunk Unexecuted instantiation: label_manager.c:_hook_typecheck_arg_lm_cbs_inited Unexecuted instantiation: label_manager.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: label_manager.c:_hook_typecheck_arg_zebra_pbr_iptable_get_stat Unexecuted instantiation: label_manager.c:_hook_typecheck_arg_zebra_pbr_iptable_update Unexecuted instantiation: label_manager.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_update Unexecuted instantiation: label_manager.c:_hook_typecheck_arg_zebra_pbr_ipset_update Unexecuted instantiation: label_manager.c:_hook_typecheck_arg_srv6_manager_client_connect Unexecuted instantiation: label_manager.c:_hook_typecheck_arg_srv6_manager_client_disconnect Unexecuted instantiation: label_manager.c:_hook_typecheck_arg_srv6_manager_get_chunk Unexecuted instantiation: label_manager.c:_hook_typecheck_arg_srv6_manager_release_chunk Unexecuted instantiation: label_manager.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: main.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: main.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: main.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: main.c:_hook_typecheck_arg_if_add Unexecuted instantiation: main.c:_hook_typecheck_arg_if_del Unexecuted instantiation: main.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: main.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: main.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: main.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: main.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: main.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: main.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: main.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: main.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: main.c:_hook_typecheck_arg_routing_conf_event Unexecuted instantiation: main.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: main.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: main.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: main.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: main.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: main.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: main.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: main.c:_hook_typecheck_arg_zebra_if_extra_info Unexecuted instantiation: main.c:_hook_typecheck_arg_zebra_if_config_wr Unexecuted instantiation: main.c:_hook_typecheck_arg_lm_client_connect Unexecuted instantiation: main.c:_hook_typecheck_arg_lm_client_disconnect Unexecuted instantiation: main.c:_hook_typecheck_arg_lm_get_chunk Unexecuted instantiation: main.c:_hook_typecheck_arg_lm_release_chunk Unexecuted instantiation: main.c:_hook_typecheck_arg_lm_cbs_inited Unexecuted instantiation: main.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: main.c:_hook_typecheck_arg_zebra_pbr_iptable_get_stat Unexecuted instantiation: main.c:_hook_typecheck_arg_zebra_pbr_iptable_update Unexecuted instantiation: main.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_update Unexecuted instantiation: main.c:_hook_typecheck_arg_zebra_pbr_ipset_update Unexecuted instantiation: main.c:_hook_typecheck_arg_srv6_manager_client_connect Unexecuted instantiation: main.c:_hook_typecheck_arg_srv6_manager_client_disconnect Unexecuted instantiation: main.c:_hook_typecheck_arg_srv6_manager_get_chunk Unexecuted instantiation: main.c:_hook_typecheck_arg_srv6_manager_release_chunk Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_arg_if_add Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_arg_if_del Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: netconf_netlink.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: redistribute.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: redistribute.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: redistribute.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: redistribute.c:_hook_typecheck_arg_if_add Unexecuted instantiation: redistribute.c:_hook_typecheck_arg_if_del Unexecuted instantiation: redistribute.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: redistribute.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: redistribute.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: redistribute.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: redistribute.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: redistribute.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: redistribute.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: redistribute.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: redistribute.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: redistribute.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: redistribute.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: redistribute.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: redistribute.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: redistribute.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: redistribute.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: redistribute.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: redistribute.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: redistribute.c:_hook_typecheck_arg_zebra_pbr_iptable_get_stat Unexecuted instantiation: redistribute.c:_hook_typecheck_arg_zebra_pbr_iptable_update Unexecuted instantiation: redistribute.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_update Unexecuted instantiation: redistribute.c:_hook_typecheck_arg_zebra_pbr_ipset_update Unexecuted instantiation: redistribute.c:_hook_typecheck_arg_lm_client_connect Unexecuted instantiation: redistribute.c:_hook_typecheck_arg_lm_client_disconnect Unexecuted instantiation: redistribute.c:_hook_typecheck_arg_lm_get_chunk Unexecuted instantiation: redistribute.c:_hook_typecheck_arg_lm_release_chunk Unexecuted instantiation: redistribute.c:_hook_typecheck_arg_lm_cbs_inited Unexecuted instantiation: redistribute.c:_hook_typecheck_arg_srv6_manager_client_connect Unexecuted instantiation: redistribute.c:_hook_typecheck_arg_srv6_manager_client_disconnect Unexecuted instantiation: redistribute.c:_hook_typecheck_arg_srv6_manager_get_chunk Unexecuted instantiation: redistribute.c:_hook_typecheck_arg_srv6_manager_release_chunk Unexecuted instantiation: redistribute.c:_hook_typecheck_arg_zebra_if_extra_info Unexecuted instantiation: redistribute.c:_hook_typecheck_arg_zebra_if_config_wr Unexecuted instantiation: router-id.c:_hook_typecheck_arg_if_add Unexecuted instantiation: router-id.c:_hook_typecheck_arg_if_del Unexecuted instantiation: router-id.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: router-id.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: router-id.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: router-id.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: router-id.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: router-id.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: router-id.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: router-id.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: router-id.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: router-id.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: router-id.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: router-id.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: router-id.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: router-id.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: router-id.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: router-id.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: router-id.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: router-id.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: router-id.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: router-id.c:_hook_typecheck_arg_zebra_pbr_iptable_get_stat Unexecuted instantiation: router-id.c:_hook_typecheck_arg_zebra_pbr_iptable_update Unexecuted instantiation: router-id.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_update Unexecuted instantiation: router-id.c:_hook_typecheck_arg_zebra_pbr_ipset_update Unexecuted instantiation: router-id.c:_hook_typecheck_arg_lm_client_connect Unexecuted instantiation: router-id.c:_hook_typecheck_arg_lm_client_disconnect Unexecuted instantiation: router-id.c:_hook_typecheck_arg_lm_get_chunk Unexecuted instantiation: router-id.c:_hook_typecheck_arg_lm_release_chunk Unexecuted instantiation: router-id.c:_hook_typecheck_arg_lm_cbs_inited Unexecuted instantiation: router-id.c:_hook_typecheck_arg_srv6_manager_client_connect Unexecuted instantiation: router-id.c:_hook_typecheck_arg_srv6_manager_client_disconnect Unexecuted instantiation: router-id.c:_hook_typecheck_arg_srv6_manager_get_chunk Unexecuted instantiation: router-id.c:_hook_typecheck_arg_srv6_manager_release_chunk Unexecuted instantiation: rt_netlink.c:_hook_typecheck_arg_if_add Unexecuted instantiation: rt_netlink.c:_hook_typecheck_arg_if_del Unexecuted instantiation: rt_netlink.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: rt_netlink.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: rt_netlink.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: rt_netlink.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: rt_netlink.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: rt_netlink.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: rt_netlink.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: rt_netlink.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: rt_netlink.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: rt_netlink.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: rt_netlink.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: rt_netlink.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: rt_netlink.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: rt_netlink.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: rt_netlink.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: rt_netlink.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: rt_netlink.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: rt_netlink.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: rt_netlink.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: rt_netlink.c:_hook_typecheck_arg_zebra_pbr_iptable_get_stat Unexecuted instantiation: rt_netlink.c:_hook_typecheck_arg_zebra_pbr_iptable_update Unexecuted instantiation: rt_netlink.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_update Unexecuted instantiation: rt_netlink.c:_hook_typecheck_arg_zebra_pbr_ipset_update Unexecuted instantiation: rt_netlink.c:_hook_typecheck_arg_lm_client_connect Unexecuted instantiation: rt_netlink.c:_hook_typecheck_arg_lm_client_disconnect Unexecuted instantiation: rt_netlink.c:_hook_typecheck_arg_lm_get_chunk Unexecuted instantiation: rt_netlink.c:_hook_typecheck_arg_lm_release_chunk Unexecuted instantiation: rt_netlink.c:_hook_typecheck_arg_lm_cbs_inited Unexecuted instantiation: rt_netlink.c:_hook_typecheck_arg_srv6_manager_client_connect Unexecuted instantiation: rt_netlink.c:_hook_typecheck_arg_srv6_manager_client_disconnect Unexecuted instantiation: rt_netlink.c:_hook_typecheck_arg_srv6_manager_get_chunk Unexecuted instantiation: rt_netlink.c:_hook_typecheck_arg_srv6_manager_release_chunk Unexecuted instantiation: rt_netlink.c:_hook_typecheck_arg_zebra_if_extra_info Unexecuted instantiation: rt_netlink.c:_hook_typecheck_arg_zebra_if_config_wr Unexecuted instantiation: rt_netlink.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: rt_netlink.c:_hook_typecheck_arg_zebra_rmac_update Unexecuted instantiation: rtadv.c:_hook_typecheck_arg_if_add Unexecuted instantiation: rtadv.c:_hook_typecheck_arg_if_del Unexecuted instantiation: rtadv.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: rtadv.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: rtadv.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: rtadv.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: rtadv.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: rtadv.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: rtadv.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: rtadv.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: rtadv.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: rtadv.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: rtadv.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: rtadv.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: rtadv.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: rtadv.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: rtadv.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: rtadv.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: rtadv.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: rtadv.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: rtadv.c:_hook_typecheck_arg_zebra_if_extra_info Unexecuted instantiation: rtadv.c:_hook_typecheck_arg_zebra_if_config_wr Unexecuted instantiation: rtadv.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: rtadv.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: rtadv.c:_hook_typecheck_arg_zebra_pbr_iptable_get_stat Unexecuted instantiation: rtadv.c:_hook_typecheck_arg_zebra_pbr_iptable_update Unexecuted instantiation: rtadv.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_update Unexecuted instantiation: rtadv.c:_hook_typecheck_arg_zebra_pbr_ipset_update Unexecuted instantiation: rtadv.c:_hook_typecheck_arg_lm_client_connect Unexecuted instantiation: rtadv.c:_hook_typecheck_arg_lm_client_disconnect Unexecuted instantiation: rtadv.c:_hook_typecheck_arg_lm_get_chunk Unexecuted instantiation: rtadv.c:_hook_typecheck_arg_lm_release_chunk Unexecuted instantiation: rtadv.c:_hook_typecheck_arg_lm_cbs_inited Unexecuted instantiation: rtadv.c:_hook_typecheck_arg_srv6_manager_client_connect Unexecuted instantiation: rtadv.c:_hook_typecheck_arg_srv6_manager_client_disconnect Unexecuted instantiation: rtadv.c:_hook_typecheck_arg_srv6_manager_get_chunk Unexecuted instantiation: rtadv.c:_hook_typecheck_arg_srv6_manager_release_chunk Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_arg_if_add Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_arg_if_del Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_arg_zebra_pbr_iptable_get_stat Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_arg_zebra_pbr_iptable_update Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_update Unexecuted instantiation: rtread_netlink.c:_hook_typecheck_arg_zebra_pbr_ipset_update Unexecuted instantiation: rule_netlink.c:_hook_typecheck_arg_if_add Unexecuted instantiation: rule_netlink.c:_hook_typecheck_arg_if_del Unexecuted instantiation: rule_netlink.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: rule_netlink.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: rule_netlink.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: rule_netlink.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: rule_netlink.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: rule_netlink.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: rule_netlink.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: rule_netlink.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: rule_netlink.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: rule_netlink.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: rule_netlink.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: rule_netlink.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: rule_netlink.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: rule_netlink.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: rule_netlink.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: rule_netlink.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: rule_netlink.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: rule_netlink.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: rule_netlink.c:_hook_typecheck_arg_zebra_if_extra_info Unexecuted instantiation: rule_netlink.c:_hook_typecheck_arg_zebra_if_config_wr Unexecuted instantiation: rule_netlink.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: rule_netlink.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: rule_netlink.c:_hook_typecheck_arg_zebra_pbr_iptable_get_stat Unexecuted instantiation: rule_netlink.c:_hook_typecheck_arg_zebra_pbr_iptable_update Unexecuted instantiation: rule_netlink.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_update Unexecuted instantiation: rule_netlink.c:_hook_typecheck_arg_zebra_pbr_ipset_update Unexecuted instantiation: table_manager.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: table_manager.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: table_manager.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: table_manager.c:_hook_typecheck_arg_if_add Unexecuted instantiation: table_manager.c:_hook_typecheck_arg_if_del Unexecuted instantiation: table_manager.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: table_manager.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: table_manager.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: table_manager.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: table_manager.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: table_manager.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: table_manager.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: table_manager.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: table_manager.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: table_manager.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: table_manager.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: table_manager.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: table_manager.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: table_manager.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: table_manager.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: table_manager.c:_hook_typecheck_arg_lm_client_connect Unexecuted instantiation: table_manager.c:_hook_typecheck_arg_lm_client_disconnect Unexecuted instantiation: table_manager.c:_hook_typecheck_arg_lm_get_chunk Unexecuted instantiation: table_manager.c:_hook_typecheck_arg_lm_release_chunk Unexecuted instantiation: table_manager.c:_hook_typecheck_arg_lm_cbs_inited Unexecuted instantiation: tc_netlink.c:_hook_typecheck_arg_if_add Unexecuted instantiation: tc_netlink.c:_hook_typecheck_arg_if_del Unexecuted instantiation: tc_netlink.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: tc_netlink.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: tc_netlink.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: tc_netlink.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: tc_netlink.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: tc_netlink.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: tc_netlink.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: tc_netlink.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: tc_netlink.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: tc_netlink.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: tc_netlink.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: tc_netlink.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: tc_netlink.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: tc_netlink.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: tc_netlink.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: tc_netlink.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: tc_netlink.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: tc_netlink.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: tc_netlink.c:_hook_typecheck_arg_zebra_if_extra_info Unexecuted instantiation: tc_netlink.c:_hook_typecheck_arg_zebra_if_config_wr Unexecuted instantiation: tc_netlink.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_zebra_if_extra_info Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_zebra_if_config_wr Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_zebra_rmac_update Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_zebra_pbr_iptable_get_stat Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_zebra_pbr_iptable_update Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_update Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_zebra_pbr_ipset_update Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_lm_client_connect Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_lm_client_disconnect Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_lm_get_chunk Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_lm_release_chunk Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_lm_cbs_inited Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_srv6_manager_client_connect Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_srv6_manager_client_disconnect Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_srv6_manager_get_chunk Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_srv6_manager_release_chunk Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_zebra_mlag_private_write_data Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_zebra_mlag_private_monitor_state Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_zebra_mlag_private_open_channel Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_zebra_mlag_private_close_channel Unexecuted instantiation: zapi_msg.c:_hook_typecheck_arg_zebra_mlag_private_cleanup_data Unexecuted instantiation: zebra_affinitymap.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_affinitymap.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_affinitymap.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_affinitymap.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_affinitymap.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_affinitymap.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_affinitymap.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_affinitymap.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_affinitymap.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_affinitymap.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_affinitymap.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_affinitymap.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_affinitymap.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_affinitymap.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_affinitymap.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_affinitymap.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_affinitymap.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_affinitymap.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_arg_zebra_if_extra_info Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_arg_zebra_if_config_wr Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_arg_zebra_rmac_update Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_arg_zebra_pbr_iptable_get_stat Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_arg_zebra_pbr_iptable_update Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_update Unexecuted instantiation: zebra_dplane.c:_hook_typecheck_arg_zebra_pbr_ipset_update Unexecuted instantiation: zebra_errors.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_errors.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_errors.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_errors.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_errors.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_errors.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_errors.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_errors.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_errors.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_errors.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_errors.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_errors.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_errors.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_errors.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_gr.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_gr.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_gr.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_gr.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_gr.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_gr.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_gr.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_gr.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_gr.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_gr.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_gr.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_gr.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_gr.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_gr.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_gr.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_gr.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_gr.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zebra_gr.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zebra_gr.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_gr.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_gr.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: zebra_gr.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: zebra_gr.c:_hook_typecheck_arg_zebra_pbr_iptable_get_stat Unexecuted instantiation: zebra_gr.c:_hook_typecheck_arg_zebra_pbr_iptable_update Unexecuted instantiation: zebra_gr.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_update Unexecuted instantiation: zebra_gr.c:_hook_typecheck_arg_zebra_pbr_ipset_update Unexecuted instantiation: zebra_gr.c:_hook_typecheck_arg_lm_client_connect Unexecuted instantiation: zebra_gr.c:_hook_typecheck_arg_lm_client_disconnect Unexecuted instantiation: zebra_gr.c:_hook_typecheck_arg_lm_get_chunk Unexecuted instantiation: zebra_gr.c:_hook_typecheck_arg_lm_release_chunk Unexecuted instantiation: zebra_gr.c:_hook_typecheck_arg_lm_cbs_inited Unexecuted instantiation: zebra_gr.c:_hook_typecheck_arg_srv6_manager_client_connect Unexecuted instantiation: zebra_gr.c:_hook_typecheck_arg_srv6_manager_client_disconnect Unexecuted instantiation: zebra_gr.c:_hook_typecheck_arg_srv6_manager_get_chunk Unexecuted instantiation: zebra_gr.c:_hook_typecheck_arg_srv6_manager_release_chunk Unexecuted instantiation: zebra_l2.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_l2.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_l2.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_l2.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_l2.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_l2.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_l2.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_l2.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_l2.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_l2.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_l2.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_l2.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_l2.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_l2.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_l2.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_l2.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_l2.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zebra_l2.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zebra_l2.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_l2.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_l2.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: zebra_l2.c:_hook_typecheck_arg_zebra_if_extra_info Unexecuted instantiation: zebra_l2.c:_hook_typecheck_arg_zebra_if_config_wr Unexecuted instantiation: zebra_l2.c:_hook_typecheck_arg_zebra_rmac_update Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_arg_zebra_if_extra_info Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_arg_zebra_if_config_wr Unexecuted instantiation: zebra_l2_bridge_if.c:_hook_typecheck_arg_zebra_rmac_update Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_arg_zebra_if_extra_info Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_arg_zebra_if_config_wr Unexecuted instantiation: zebra_evpn.c:_hook_typecheck_arg_zebra_rmac_update Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_arg_zebra_if_extra_info Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_arg_zebra_if_config_wr Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: zebra_evpn_mac.c:_hook_typecheck_arg_zebra_rmac_update Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_arg_zebra_if_extra_info Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_arg_zebra_if_config_wr Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: zebra_evpn_neigh.c:_hook_typecheck_arg_zebra_rmac_update Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_arg_zebra_mlag_private_write_data Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_arg_zebra_mlag_private_monitor_state Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_arg_zebra_mlag_private_open_channel Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_arg_zebra_mlag_private_close_channel Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_arg_zebra_mlag_private_cleanup_data Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_arg_zebra_pbr_iptable_get_stat Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_arg_zebra_pbr_iptable_update Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_update Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_arg_zebra_pbr_ipset_update Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_arg_lm_client_connect Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_arg_lm_client_disconnect Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_arg_lm_get_chunk Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_arg_lm_release_chunk Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_arg_lm_cbs_inited Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_arg_srv6_manager_client_connect Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_arg_srv6_manager_client_disconnect Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_arg_srv6_manager_get_chunk Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_arg_srv6_manager_release_chunk Unexecuted instantiation: zebra_mlag.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_arg_zebra_pbr_iptable_get_stat Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_arg_zebra_pbr_iptable_update Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_update Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_arg_zebra_pbr_ipset_update Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_arg_lm_client_connect Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_arg_lm_client_disconnect Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_arg_lm_get_chunk Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_arg_lm_release_chunk Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_arg_lm_cbs_inited Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_arg_srv6_manager_client_connect Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_arg_srv6_manager_client_disconnect Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_arg_srv6_manager_get_chunk Unexecuted instantiation: zebra_mlag_vty.c:_hook_typecheck_arg_srv6_manager_release_chunk Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_arg_zebra_if_extra_info Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_arg_zebra_if_config_wr Unexecuted instantiation: zebra_mpls.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_mpls_netlink.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_mpls_null.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_mpls_null.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_mpls_null.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_mpls_null.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_mpls_null.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_mpls_null.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_mpls_null.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_mpls_null.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_mpls_null.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_mpls_null.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_mpls_null.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_mpls_null.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_mpls_null.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_mpls_null.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_mpls_null.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_mpls_null.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_mpls_null.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zebra_mpls_null.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zebra_mpls_null.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_mpls_null.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_mpls_vty.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_mpls_vty.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_mpls_vty.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_mpls_vty.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_mpls_vty.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_mpls_vty.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_mpls_vty.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_mpls_vty.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_mpls_vty.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_mpls_vty.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_mpls_vty.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_mpls_vty.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_mpls_vty.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_mpls_vty.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_mpls_vty.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_mpls_vty.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_mpls_vty.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_mpls_vty.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_mpls_vty.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zebra_mpls_vty.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_arg_zebra_pbr_iptable_get_stat Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_arg_zebra_pbr_iptable_update Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_update Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_arg_zebra_pbr_ipset_update Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_arg_lm_client_connect Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_arg_lm_client_disconnect Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_arg_lm_get_chunk Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_arg_lm_release_chunk Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_arg_lm_cbs_inited Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_arg_srv6_manager_client_connect Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_arg_srv6_manager_client_disconnect Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_arg_srv6_manager_get_chunk Unexecuted instantiation: zebra_srv6.c:_hook_typecheck_arg_srv6_manager_release_chunk Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_arg_srv6_manager_client_connect Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_arg_srv6_manager_client_disconnect Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_arg_srv6_manager_get_chunk Unexecuted instantiation: zebra_srv6_vty.c:_hook_typecheck_arg_srv6_manager_release_chunk Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zebra_mroute.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: zebra_nb.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_nb.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_nb.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_nb.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_nb.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_nb.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_nb.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_nb.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_nb.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_nb.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_nb.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_nb.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_nb.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_nb.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_nb.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_nb.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_nb.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_nb.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_nb.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zebra_nb.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zebra_nb.c:_hook_typecheck_arg_zebra_if_extra_info Unexecuted instantiation: zebra_nb.c:_hook_typecheck_arg_zebra_if_config_wr Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_arg_zebra_if_extra_info Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_arg_zebra_if_config_wr Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: zebra_nb_config.c:_hook_typecheck_arg_zebra_rmac_update Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_arg_zebra_if_extra_info Unexecuted instantiation: zebra_nb_rpcs.c:_hook_typecheck_arg_zebra_if_config_wr Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_arg_zebra_if_extra_info Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_arg_zebra_if_config_wr Unexecuted instantiation: zebra_nb_state.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: zebra_netns_id.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_netns_id.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_netns_id.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_netns_id.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_netns_id.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_netns_id.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_netns_id.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_netns_id.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_netns_id.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_netns_id.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_netns_id.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_netns_id.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_netns_id.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_netns_id.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_netns_id.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_netns_id.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_netns_id.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zebra_netns_id.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zebra_netns_id.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_netns_id.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_arg_zebra_if_extra_info Unexecuted instantiation: zebra_netns_notify.c:_hook_typecheck_arg_zebra_if_config_wr Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_arg_zebra_if_extra_info Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_arg_zebra_if_config_wr Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_arg_zebra_pbr_iptable_get_stat Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_arg_zebra_pbr_iptable_update Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_update Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_arg_zebra_pbr_ipset_update Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_arg_lm_client_connect Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_arg_lm_client_disconnect Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_arg_lm_get_chunk Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_arg_lm_release_chunk Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_arg_lm_cbs_inited Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_arg_srv6_manager_client_connect Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_arg_srv6_manager_client_disconnect Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_arg_srv6_manager_get_chunk Unexecuted instantiation: zebra_nhg.c:_hook_typecheck_arg_srv6_manager_release_chunk Unexecuted instantiation: zebra_ns.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_ns.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_ns.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_ns.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_ns.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_ns.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_ns.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_ns.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_ns.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_ns.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_ns.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_ns.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_ns.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_ns.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_ns.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_ns.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_ns.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zebra_ns.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zebra_ns.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_ns.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_ns.c:_hook_typecheck_arg_zebra_if_extra_info Unexecuted instantiation: zebra_ns.c:_hook_typecheck_arg_zebra_if_config_wr Unexecuted instantiation: zebra_ns.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: zebra_ns.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: zebra_ns.c:_hook_typecheck_arg_zebra_pbr_iptable_get_stat Unexecuted instantiation: zebra_ns.c:_hook_typecheck_arg_zebra_pbr_iptable_update Unexecuted instantiation: zebra_ns.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_update Unexecuted instantiation: zebra_ns.c:_hook_typecheck_arg_zebra_pbr_ipset_update Unexecuted instantiation: zebra_opaque.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_opaque.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_opaque.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_opaque.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_opaque.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_opaque.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_opaque.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_opaque.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_opaque.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_opaque.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_opaque.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_opaque.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_opaque.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_opaque.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_opaque.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: zebra_opaque.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_opaque.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_opaque.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_opaque.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_arg_zebra_pbr_iptable_get_stat Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_arg_zebra_pbr_iptable_update Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_update Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_arg_zebra_pbr_ipset_update Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_arg_lm_client_connect Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_arg_lm_client_disconnect Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_arg_lm_get_chunk Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_arg_lm_release_chunk Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_arg_lm_cbs_inited Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_arg_srv6_manager_client_connect Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_arg_srv6_manager_client_disconnect Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_arg_srv6_manager_get_chunk Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_arg_srv6_manager_release_chunk Unexecuted instantiation: zebra_pbr.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_arg_zebra_if_extra_info Unexecuted instantiation: zebra_ptm.c:_hook_typecheck_arg_zebra_if_config_wr Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_arg_zebra_pbr_iptable_get_stat Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_arg_zebra_pbr_iptable_update Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_update Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_arg_zebra_pbr_ipset_update Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_arg_lm_client_connect Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_arg_lm_client_disconnect Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_arg_lm_get_chunk Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_arg_lm_release_chunk Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_arg_lm_cbs_inited Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_arg_srv6_manager_client_connect Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_arg_srv6_manager_client_disconnect Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_arg_srv6_manager_get_chunk Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_arg_srv6_manager_release_chunk Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_arg_zebra_if_extra_info Unexecuted instantiation: zebra_ptm_redistribute.c:_hook_typecheck_arg_zebra_if_config_wr Unexecuted instantiation: zebra_pw.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_pw.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_pw.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_pw.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_pw.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_pw.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_pw.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_pw.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_pw.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_pw.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_pw.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_pw.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_pw.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_pw.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_pw.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: zebra_pw.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_pw.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_pw.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zebra_pw.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zebra_pw.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_pw.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_pw.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: zebra_pw.c:_hook_typecheck_arg_zebra_pbr_iptable_get_stat Unexecuted instantiation: zebra_pw.c:_hook_typecheck_arg_zebra_pbr_iptable_update Unexecuted instantiation: zebra_pw.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_update Unexecuted instantiation: zebra_pw.c:_hook_typecheck_arg_zebra_pbr_ipset_update Unexecuted instantiation: zebra_pw.c:_hook_typecheck_arg_lm_client_connect Unexecuted instantiation: zebra_pw.c:_hook_typecheck_arg_lm_client_disconnect Unexecuted instantiation: zebra_pw.c:_hook_typecheck_arg_lm_get_chunk Unexecuted instantiation: zebra_pw.c:_hook_typecheck_arg_lm_release_chunk Unexecuted instantiation: zebra_pw.c:_hook_typecheck_arg_lm_cbs_inited Unexecuted instantiation: zebra_pw.c:_hook_typecheck_arg_srv6_manager_client_connect Unexecuted instantiation: zebra_pw.c:_hook_typecheck_arg_srv6_manager_client_disconnect Unexecuted instantiation: zebra_pw.c:_hook_typecheck_arg_srv6_manager_get_chunk Unexecuted instantiation: zebra_pw.c:_hook_typecheck_arg_srv6_manager_release_chunk Unexecuted instantiation: zebra_rib.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_rib.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_rib.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_rib.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_rib.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_rib.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_rib.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_rib.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_rib.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_rib.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_rib.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_rib.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_rib.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_rib.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_rib.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_rib.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_rib.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zebra_rib.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zebra_rib.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_rib.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_rib.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: zebra_rib.c:_hook_typecheck_arg_zebra_if_extra_info Unexecuted instantiation: zebra_rib.c:_hook_typecheck_arg_zebra_if_config_wr Unexecuted instantiation: zebra_rib.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: zebra_rib.c:_hook_typecheck_arg_zebra_pbr_iptable_get_stat Unexecuted instantiation: zebra_rib.c:_hook_typecheck_arg_zebra_pbr_iptable_update Unexecuted instantiation: zebra_rib.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_update Unexecuted instantiation: zebra_rib.c:_hook_typecheck_arg_zebra_pbr_ipset_update Unexecuted instantiation: zebra_rib.c:_hook_typecheck_arg_lm_client_connect Unexecuted instantiation: zebra_rib.c:_hook_typecheck_arg_lm_client_disconnect Unexecuted instantiation: zebra_rib.c:_hook_typecheck_arg_lm_get_chunk Unexecuted instantiation: zebra_rib.c:_hook_typecheck_arg_lm_release_chunk Unexecuted instantiation: zebra_rib.c:_hook_typecheck_arg_lm_cbs_inited Unexecuted instantiation: zebra_rib.c:_hook_typecheck_arg_srv6_manager_client_connect Unexecuted instantiation: zebra_rib.c:_hook_typecheck_arg_srv6_manager_client_disconnect Unexecuted instantiation: zebra_rib.c:_hook_typecheck_arg_srv6_manager_get_chunk Unexecuted instantiation: zebra_rib.c:_hook_typecheck_arg_srv6_manager_release_chunk Unexecuted instantiation: zebra_rib.c:_hook_typecheck_arg_zebra_rmac_update Unexecuted instantiation: zebra_router.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_router.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_router.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_router.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_router.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_router.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_router.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_router.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_router.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_router.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_router.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_router.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_router.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_router.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_router.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_router.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_router.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zebra_router.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zebra_router.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_router.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_router.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: zebra_router.c:_hook_typecheck_arg_zebra_pbr_iptable_get_stat Unexecuted instantiation: zebra_router.c:_hook_typecheck_arg_zebra_pbr_iptable_update Unexecuted instantiation: zebra_router.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_update Unexecuted instantiation: zebra_router.c:_hook_typecheck_arg_zebra_pbr_ipset_update Unexecuted instantiation: zebra_router.c:_hook_typecheck_arg_zebra_if_extra_info Unexecuted instantiation: zebra_router.c:_hook_typecheck_arg_zebra_if_config_wr Unexecuted instantiation: zebra_router.c:_hook_typecheck_arg_zebra_mlag_private_write_data Unexecuted instantiation: zebra_router.c:_hook_typecheck_arg_zebra_mlag_private_monitor_state Unexecuted instantiation: zebra_router.c:_hook_typecheck_arg_zebra_mlag_private_open_channel Unexecuted instantiation: zebra_router.c:_hook_typecheck_arg_zebra_mlag_private_close_channel Unexecuted instantiation: zebra_router.c:_hook_typecheck_arg_zebra_mlag_private_cleanup_data Unexecuted instantiation: zebra_router.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_arg_zebra_if_extra_info Unexecuted instantiation: zebra_rnh.c:_hook_typecheck_arg_zebra_if_config_wr Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_routemap.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: zebra_routemap_nb.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_routemap_nb.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_routemap_nb.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_routemap_nb.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_routemap_nb.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_routemap_nb.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_routemap_nb.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_routemap_nb.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_routemap_nb.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_routemap_nb.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_routemap_nb.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_routemap_nb.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_routemap_nb.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_routemap_nb.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_routemap_nb_config.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_routemap_nb_config.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_routemap_nb_config.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_routemap_nb_config.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_routemap_nb_config.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_routemap_nb_config.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_routemap_nb_config.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_routemap_nb_config.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_routemap_nb_config.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_routemap_nb_config.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_routemap_nb_config.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_routemap_nb_config.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_routemap_nb_config.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_routemap_nb_config.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_routemap_nb_config.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_routemap_nb_config.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_script.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_script.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_script.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_script.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_script.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_script.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_script.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_script.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_script.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_script.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_script.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_script.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_script.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_script.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_script.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_script.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_script.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zebra_script.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zebra_script.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_script.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_script.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: zebra_script.c:_hook_typecheck_arg_zebra_pbr_iptable_get_stat Unexecuted instantiation: zebra_script.c:_hook_typecheck_arg_zebra_pbr_iptable_update Unexecuted instantiation: zebra_script.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_update Unexecuted instantiation: zebra_script.c:_hook_typecheck_arg_zebra_pbr_ipset_update Unexecuted instantiation: zebra_srte.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_srte.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_srte.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_srte.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_srte.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_srte.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_srte.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_srte.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_srte.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_srte.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_srte.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_srte.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_srte.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_srte.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_srte.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_srte.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_srte.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_srte.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_srte.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zebra_srte.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zebra_srte.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: zebra_srte.c:_hook_typecheck_arg_zebra_pbr_iptable_get_stat Unexecuted instantiation: zebra_srte.c:_hook_typecheck_arg_zebra_pbr_iptable_update Unexecuted instantiation: zebra_srte.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_update Unexecuted instantiation: zebra_srte.c:_hook_typecheck_arg_zebra_pbr_ipset_update Unexecuted instantiation: zebra_srte.c:_hook_typecheck_arg_lm_client_connect Unexecuted instantiation: zebra_srte.c:_hook_typecheck_arg_lm_client_disconnect Unexecuted instantiation: zebra_srte.c:_hook_typecheck_arg_lm_get_chunk Unexecuted instantiation: zebra_srte.c:_hook_typecheck_arg_lm_release_chunk Unexecuted instantiation: zebra_srte.c:_hook_typecheck_arg_lm_cbs_inited Unexecuted instantiation: zebra_srte.c:_hook_typecheck_arg_srv6_manager_client_connect Unexecuted instantiation: zebra_srte.c:_hook_typecheck_arg_srv6_manager_client_disconnect Unexecuted instantiation: zebra_srte.c:_hook_typecheck_arg_srv6_manager_get_chunk Unexecuted instantiation: zebra_srte.c:_hook_typecheck_arg_srv6_manager_release_chunk Unexecuted instantiation: zebra_tc.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_tc.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_tc.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_tc.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_tc.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_tc.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_tc.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_tc.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_tc.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_tc.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_tc.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_tc.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_tc.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_tc.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_tc.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_tc.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_tc.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zebra_tc.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zebra_tc.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_tc.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_tc.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_arg_zebra_pbr_iptable_get_stat Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_arg_zebra_pbr_iptable_update Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_update Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_arg_zebra_pbr_ipset_update Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_arg_lm_client_connect Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_arg_lm_client_disconnect Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_arg_lm_get_chunk Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_arg_lm_release_chunk Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_arg_lm_cbs_inited Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_arg_srv6_manager_client_connect Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_arg_srv6_manager_client_disconnect Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_arg_srv6_manager_get_chunk Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_arg_srv6_manager_release_chunk Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_arg_zebra_if_extra_info Unexecuted instantiation: zebra_vrf.c:_hook_typecheck_arg_zebra_if_config_wr Unexecuted instantiation: zebra_vty.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_vty.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_vty.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_vty.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_vty.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_vty.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_vty.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_vty.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_vty.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_vty.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_vty.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_vty.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_vty.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_vty.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_vty.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_vty.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_vty.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zebra_vty.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zebra_vty.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_vty.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_vty.c:_hook_typecheck_arg_zebra_if_extra_info Unexecuted instantiation: zebra_vty.c:_hook_typecheck_arg_zebra_if_config_wr Unexecuted instantiation: zebra_vty.c:_hook_typecheck_arg_zebra_rmac_update Unexecuted instantiation: zebra_vty.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: zebra_vty.c:_hook_typecheck_arg_zebra_pbr_iptable_get_stat Unexecuted instantiation: zebra_vty.c:_hook_typecheck_arg_zebra_pbr_iptable_update Unexecuted instantiation: zebra_vty.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_update Unexecuted instantiation: zebra_vty.c:_hook_typecheck_arg_zebra_pbr_ipset_update Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_arg_zebra_if_extra_info Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_arg_zebra_if_config_wr Unexecuted instantiation: zebra_vxlan.c:_hook_typecheck_arg_zebra_rmac_update Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_arg_zebra_if_extra_info Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_arg_zebra_if_config_wr Unexecuted instantiation: zebra_vxlan_if.c:_hook_typecheck_arg_zebra_rmac_update Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_arg_zebra_if_extra_info Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_arg_zebra_if_config_wr Unexecuted instantiation: zebra_evpn_mh.c:_hook_typecheck_arg_zebra_rmac_update Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_arg_zebra_if_extra_info Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_arg_zebra_if_config_wr Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_arg_zebra_pbr_iptable_get_stat Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_arg_zebra_pbr_iptable_update Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_update Unexecuted instantiation: zebra_neigh.c:_hook_typecheck_arg_zebra_pbr_ipset_update Unexecuted instantiation: zserv.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: zserv.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: zserv.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: zserv.c:_hook_typecheck_arg_if_add Unexecuted instantiation: zserv.c:_hook_typecheck_arg_if_del Unexecuted instantiation: zserv.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: zserv.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: zserv.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: zserv.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: zserv.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: zserv.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: zserv.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: zserv.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: zserv.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: zserv.c:_hook_typecheck_arg_zebra_debug_show_debugging Unexecuted instantiation: zserv.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: zserv.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: zserv.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: zserv.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: zserv.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: zserv.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: zserv.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: zserv.c:_hook_typecheck_arg_zebra_pbr_iptable_get_stat Unexecuted instantiation: zserv.c:_hook_typecheck_arg_zebra_pbr_iptable_update Unexecuted instantiation: zserv.c:_hook_typecheck_arg_zebra_pbr_ipset_entry_update Unexecuted instantiation: zserv.c:_hook_typecheck_arg_zebra_pbr_ipset_update Unexecuted instantiation: zserv.c:_hook_typecheck_arg_lm_client_connect Unexecuted instantiation: zserv.c:_hook_typecheck_arg_lm_client_disconnect Unexecuted instantiation: zserv.c:_hook_typecheck_arg_lm_get_chunk Unexecuted instantiation: zserv.c:_hook_typecheck_arg_lm_release_chunk Unexecuted instantiation: zserv.c:_hook_typecheck_arg_lm_cbs_inited Unexecuted instantiation: zserv.c:_hook_typecheck_arg_srv6_manager_client_connect Unexecuted instantiation: zserv.c:_hook_typecheck_arg_srv6_manager_client_disconnect Unexecuted instantiation: zserv.c:_hook_typecheck_arg_srv6_manager_get_chunk Unexecuted instantiation: zserv.c:_hook_typecheck_arg_srv6_manager_release_chunk Unexecuted instantiation: debug_nl.c:_hook_typecheck_arg_if_add Unexecuted instantiation: debug_nl.c:_hook_typecheck_arg_if_del Unexecuted instantiation: debug_nl.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: debug_nl.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: debug_nl.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: debug_nl.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: debug_nl.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: debug_nl.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: debug_nl.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: debug_nl.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: debug_nl.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: debug_nl.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: debug_nl.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: debug_nl.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: debug_nl.c:_hook_typecheck_arg_zserv_client_connect Unexecuted instantiation: debug_nl.c:_hook_typecheck_arg_zserv_client_close Unexecuted instantiation: debug_nl.c:_hook_typecheck_arg_rib_update Unexecuted instantiation: debug_nl.c:_hook_typecheck_arg_rib_shutdown Unexecuted instantiation: debug_nl.c:_hook_typecheck_arg_pw_install Unexecuted instantiation: debug_nl.c:_hook_typecheck_arg_pw_uninstall Unexecuted instantiation: frr-zebra.yang.c:_hook_typecheck_arg_if_add Unexecuted instantiation: frr-zebra.yang.c:_hook_typecheck_arg_if_del Unexecuted instantiation: frr-zebra.yang.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: frr-zebra.yang.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: frr-zebra.yang.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: frr-zebra-route-map.yang.c:_hook_typecheck_arg_if_add Unexecuted instantiation: frr-zebra-route-map.yang.c:_hook_typecheck_arg_if_del Unexecuted instantiation: frr-zebra-route-map.yang.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: frr-zebra-route-map.yang.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: frr-zebra-route-map.yang.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_main.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_main.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_main.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_main.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_main.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_main.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_main.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_main.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_main.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_main.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_main.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_main.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_main.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_main.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_main.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_main.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_main.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_main.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_main.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_main.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_main.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_main.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_main.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_main.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_main.c:_hook_typecheck_arg_bgp_packet_dump Unexecuted instantiation: bgp_main.c:_hook_typecheck_arg_bgp_packet_send Unexecuted instantiation: frr-bgp-types.yang.c:_hook_typecheck_arg_if_add Unexecuted instantiation: frr-bgp-types.yang.c:_hook_typecheck_arg_if_del Unexecuted instantiation: frr-bgp-types.yang.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: frr-bgp-types.yang.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: frr-bgp-types.yang.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: frr-bgp.yang.c:_hook_typecheck_arg_if_add Unexecuted instantiation: frr-bgp.yang.c:_hook_typecheck_arg_if_del Unexecuted instantiation: frr-bgp.yang.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: frr-bgp.yang.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: frr-bgp.yang.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: frr-bgp-common-structure.yang.c:_hook_typecheck_arg_if_add Unexecuted instantiation: frr-bgp-common-structure.yang.c:_hook_typecheck_arg_if_del Unexecuted instantiation: frr-bgp-common-structure.yang.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: frr-bgp-common-structure.yang.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: frr-bgp-common-structure.yang.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: frr-bgp-common.yang.c:_hook_typecheck_arg_if_add Unexecuted instantiation: frr-bgp-common.yang.c:_hook_typecheck_arg_if_del Unexecuted instantiation: frr-bgp-common.yang.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: frr-bgp-common.yang.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: frr-bgp-common.yang.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: frr-bgp-common-multiprotocol.yang.c:_hook_typecheck_arg_if_add Unexecuted instantiation: frr-bgp-common-multiprotocol.yang.c:_hook_typecheck_arg_if_del Unexecuted instantiation: frr-bgp-common-multiprotocol.yang.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: frr-bgp-common-multiprotocol.yang.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: frr-bgp-common-multiprotocol.yang.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: frr-bgp-neighbor.yang.c:_hook_typecheck_arg_if_add Unexecuted instantiation: frr-bgp-neighbor.yang.c:_hook_typecheck_arg_if_del Unexecuted instantiation: frr-bgp-neighbor.yang.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: frr-bgp-neighbor.yang.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: frr-bgp-neighbor.yang.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: frr-bgp-peer-group.yang.c:_hook_typecheck_arg_if_add Unexecuted instantiation: frr-bgp-peer-group.yang.c:_hook_typecheck_arg_if_del Unexecuted instantiation: frr-bgp-peer-group.yang.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: frr-bgp-peer-group.yang.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: frr-bgp-peer-group.yang.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: frr-bgp-bmp.yang.c:_hook_typecheck_arg_if_add Unexecuted instantiation: frr-bgp-bmp.yang.c:_hook_typecheck_arg_if_del Unexecuted instantiation: frr-bgp-bmp.yang.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: frr-bgp-bmp.yang.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: frr-bgp-bmp.yang.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: frr-bgp-rpki.yang.c:_hook_typecheck_arg_if_add Unexecuted instantiation: frr-bgp-rpki.yang.c:_hook_typecheck_arg_if_del Unexecuted instantiation: frr-bgp-rpki.yang.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: frr-bgp-rpki.yang.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: frr-bgp-rpki.yang.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: frr-deviations-bgp-datacenter.yang.c:_hook_typecheck_arg_if_add Unexecuted instantiation: frr-deviations-bgp-datacenter.yang.c:_hook_typecheck_arg_if_del Unexecuted instantiation: frr-deviations-bgp-datacenter.yang.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: frr-deviations-bgp-datacenter.yang.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: frr-deviations-bgp-datacenter.yang.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: frr-bgp-filter.yang.c:_hook_typecheck_arg_if_add Unexecuted instantiation: frr-bgp-filter.yang.c:_hook_typecheck_arg_if_del Unexecuted instantiation: frr-bgp-filter.yang.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: frr-bgp-filter.yang.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: frr-bgp-filter.yang.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: frr-bgp-route-map.yang.c:_hook_typecheck_arg_if_add Unexecuted instantiation: frr-bgp-route-map.yang.c:_hook_typecheck_arg_if_del Unexecuted instantiation: frr-bgp-route-map.yang.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: frr-bgp-route-map.yang.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: frr-bgp-route-map.yang.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_attr.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_attr.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_attr.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_attr.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_attr.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_attr.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_attr.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_attr.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_attr.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_attr.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_attr.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_attr.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_attr.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_attr.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_attr.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_attr.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_attr.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_attr.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_attr.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_attr.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_attr.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_attr.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_attr.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_attr.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_attr.c:_hook_typecheck_arg_bgp_packet_dump Unexecuted instantiation: bgp_attr.c:_hook_typecheck_arg_bgp_packet_send Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_attr_evpn.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_clist.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_clist.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_clist.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_clist.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_clist.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_clist.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_clist.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_clist.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_clist.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_clist.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_clist.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_clist.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_clist.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_clist.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_clist.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_clist.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_clist.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_clist.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_clist.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_clist.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_clist.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_clist.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_clist.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_clist.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_community.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_community.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_community.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_community.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_community.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_community.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_community.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_community.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_community.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_community.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_community.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_community.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_community.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_community.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_community.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_community.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_community.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_community.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_community.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_community.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_community.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_community.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_community.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_community.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_community_alias.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_debug.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_debug.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_debug.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_debug.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_debug.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_debug.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_debug.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_debug.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_debug.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_debug.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_debug.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_debug.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_debug.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_debug.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_debug.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_debug.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_debug.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_debug.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_debug.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_debug.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_debug.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_debug.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_debug.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_debug.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_debug.c:_hook_typecheck_arg_bgp_packet_dump Unexecuted instantiation: bgp_debug.c:_hook_typecheck_arg_bgp_packet_send Unexecuted instantiation: bgp_dump.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_dump.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_dump.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_dump.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_dump.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_dump.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_dump.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_dump.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_dump.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_dump.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_dump.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_dump.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_dump.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_dump.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_dump.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_dump.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_dump.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_dump.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_dump.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_dump.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_dump.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_dump.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_dump.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_dump.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_dump.c:_hook_typecheck_arg_bgp_packet_dump Unexecuted instantiation: bgp_dump.c:_hook_typecheck_arg_bgp_packet_send Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_ecommunity.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_errors.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_errors.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_errors.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_errors.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_errors.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_errors.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_errors.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_errors.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_errors.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_errors.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_errors.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_errors.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_errors.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_errors.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_evpn.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_evpn_mh.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_evpn_vty.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_filter.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_filter.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_filter.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_filter.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_filter.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_filter.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_filter.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_filter.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_filter.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_filter.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_filter.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_filter.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_filter.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_filter.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_filter.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_filter.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_filter.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_filter.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_filter.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_filter.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_filter.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_filter.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_filter.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_filter.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_flowspec_vty.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_arg_peer_backward_transition Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_arg_peer_established Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_arg_bgp_packet_dump Unexecuted instantiation: bgp_fsm.c:_hook_typecheck_arg_bgp_packet_send Unexecuted instantiation: bgp_io.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_io.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_io.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_io.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_io.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_io.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_io.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_io.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_io.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_io.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_io.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_io.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_io.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_io.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_io.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_io.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_io.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_io.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_io.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_io.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_io.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_io.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_io.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_io.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_io.c:_hook_typecheck_arg_peer_backward_transition Unexecuted instantiation: bgp_io.c:_hook_typecheck_arg_peer_established Unexecuted instantiation: bgp_io.c:_hook_typecheck_arg_bgp_packet_dump Unexecuted instantiation: bgp_io.c:_hook_typecheck_arg_bgp_packet_send Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_arg_bgp_packet_dump Unexecuted instantiation: bgp_keepalives.c:_hook_typecheck_arg_bgp_packet_send Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_labelpool.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_lcommunity.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_mac.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_mac.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_mac.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_mac.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_mac.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_mac.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_mac.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_mac.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_mac.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_mac.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_mac.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_mac.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_mac.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_mac.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_mac.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_mac.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_mac.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_mac.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_mac.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_mac.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_mac.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_mac.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_mac.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_mac.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_mac.c:_hook_typecheck_arg_bgp_packet_dump Unexecuted instantiation: bgp_mac.c:_hook_typecheck_arg_bgp_packet_send Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_mpath.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_arg_bgp_packet_dump Unexecuted instantiation: bgp_mplsvpn.c:_hook_typecheck_arg_bgp_packet_send Unexecuted instantiation: bgp_network.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_network.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_network.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_network.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_network.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_network.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_network.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_network.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_network.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_network.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_network.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_network.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_network.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_network.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_network.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_network.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_network.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_network.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_network.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_network.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_network.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_network.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_network.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_network.c:_hook_typecheck_arg_peer_backward_transition Unexecuted instantiation: bgp_network.c:_hook_typecheck_arg_peer_established Unexecuted instantiation: bgp_network.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_arg_peer_backward_transition Unexecuted instantiation: bgp_nexthop.c:_hook_typecheck_arg_peer_established Unexecuted instantiation: bgp_nht.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_nht.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_nht.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_nht.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_nht.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_nht.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_nht.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_nht.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_nht.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_nht.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_nht.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_nht.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_nht.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_nht.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_nht.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_nht.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_nht.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_nht.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_nht.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_nht.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_nht.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_nht.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_nht.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_nht.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_nht.c:_hook_typecheck_arg_peer_backward_transition Unexecuted instantiation: bgp_nht.c:_hook_typecheck_arg_peer_established Unexecuted instantiation: bgp_packet.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_packet.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_packet.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_packet.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_packet.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_packet.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_packet.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_packet.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_packet.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_packet.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_packet.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_packet.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_packet.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_packet.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_packet.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_packet.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_packet.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_packet.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_packet.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_packet.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_packet.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_packet.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_packet.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_packet.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_packet.c:_hook_typecheck_arg_peer_backward_transition Unexecuted instantiation: bgp_packet.c:_hook_typecheck_arg_peer_established Unexecuted instantiation: bgp_packet.c:_hook_typecheck_arg_bgp_packet_dump Unexecuted instantiation: bgp_packet.c:_hook_typecheck_arg_bgp_packet_send Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_pbr.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_rd.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_rd.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_rd.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_rd.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_rd.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_rd.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_rd.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_rd.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_rd.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_rd.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_rd.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_rd.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_rd.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_rd.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_rd.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_rd.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_rd.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_rd.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_rd.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_rd.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_rd.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_rd.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_rd.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_rd.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_regex.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_regex.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_regex.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_regex.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_regex.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_regex.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_regex.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_regex.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_regex.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_regex.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_regex.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_regex.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_regex.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_regex.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_regex.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_regex.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_regex.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_regex.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_regex.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_regex.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_regex.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_regex.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_regex.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_regex.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_route.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_route.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_route.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_route.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_route.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_route.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_route.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_route.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_route.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_route.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_route.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_route.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_route.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_route.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_route.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_route.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_route.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_route.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_route.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_route.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_route.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_route.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_route.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_route.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_route.c:_hook_typecheck_arg_bgp_packet_dump Unexecuted instantiation: bgp_route.c:_hook_typecheck_arg_bgp_packet_send Unexecuted instantiation: bgp_route.c:_hook_typecheck_arg_peer_backward_transition Unexecuted instantiation: bgp_route.c:_hook_typecheck_arg_peer_established Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_arg_bgp_packet_dump Unexecuted instantiation: bgp_routemap.c:_hook_typecheck_arg_bgp_packet_send Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_routemap_nb.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_routemap_nb_config.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_table.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_table.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_table.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_table.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_table.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_table.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_table.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_table.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_table.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_table.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_table.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_table.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_table.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_table.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_table.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_table.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_table.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_table.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_table.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_table.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_table.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_table.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_table.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_table.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_arg_peer_backward_transition Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_arg_peer_established Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_arg_bgp_packet_dump Unexecuted instantiation: bgp_updgrp.c:_hook_typecheck_arg_bgp_packet_send Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_arg_bgp_packet_dump Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_arg_bgp_packet_send Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_arg_peer_backward_transition Unexecuted instantiation: bgp_updgrp_adv.c:_hook_typecheck_arg_peer_established Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_arg_peer_backward_transition Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_arg_peer_established Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_arg_bgp_packet_dump Unexecuted instantiation: bgp_updgrp_packet.c:_hook_typecheck_arg_bgp_packet_send Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_vpn.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_vty.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_vty.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_vty.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_vty.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_vty.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_vty.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_vty.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_vty.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_vty.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_vty.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_vty.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_vty.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_vty.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_vty.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_vty.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_vty.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_vty.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_vty.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_vty.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_vty.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_vty.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_vty.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_vty.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_vty.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_vty.c:_hook_typecheck_arg_peer_backward_transition Unexecuted instantiation: bgp_vty.c:_hook_typecheck_arg_peer_established Unexecuted instantiation: bgp_vty.c:_hook_typecheck_arg_bgp_packet_dump Unexecuted instantiation: bgp_vty.c:_hook_typecheck_arg_bgp_packet_send Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_arg_peer_backward_transition Unexecuted instantiation: bgp_zebra.c:_hook_typecheck_arg_peer_established Unexecuted instantiation: bgpd.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgpd.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgpd.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgpd.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgpd.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgpd.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgpd.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgpd.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgpd.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgpd.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgpd.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgpd.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgpd.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgpd.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgpd.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgpd.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgpd.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgpd.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgpd.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgpd.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgpd.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgpd.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgpd.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgpd.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgpd.c:_hook_typecheck_arg_peer_backward_transition Unexecuted instantiation: bgpd.c:_hook_typecheck_arg_peer_established Unexecuted instantiation: bgpd.c:_hook_typecheck_arg_bgp_packet_dump Unexecuted instantiation: bgpd.c:_hook_typecheck_arg_bgp_packet_send Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_rfapi_cfg.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: rfapi_import.c:_hook_typecheck_arg_if_add Unexecuted instantiation: rfapi_import.c:_hook_typecheck_arg_if_del Unexecuted instantiation: rfapi_import.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: rfapi_import.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: rfapi_import.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: rfapi_import.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: rfapi_import.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: rfapi_import.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: rfapi_import.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: rfapi_import.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: rfapi_import.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: rfapi_import.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: rfapi_import.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: rfapi_import.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: rfapi_import.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: rfapi_import.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: rfapi_import.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: rfapi_import.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: rfapi_import.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: rfapi_import.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: rfapi_import.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: rfapi_import.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: rfapi_import.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: rfapi_import.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: rfapi.c:_hook_typecheck_arg_if_add Unexecuted instantiation: rfapi.c:_hook_typecheck_arg_if_del Unexecuted instantiation: rfapi.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: rfapi.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: rfapi.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: rfapi.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: rfapi.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: rfapi.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: rfapi.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: rfapi.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: rfapi.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: rfapi.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: rfapi.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: rfapi.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: rfapi.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: rfapi.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: rfapi.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: rfapi.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: rfapi.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: rfapi.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: rfapi.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: rfapi.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: rfapi.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: rfapi.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_arg_if_add Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_arg_if_del Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: rfapi_ap.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_arg_if_add Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_arg_if_del Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: rfapi_encap_tlv.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_arg_if_add Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_arg_if_del Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: rfapi_nve_addr.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_arg_if_add Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_arg_if_del Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: rfapi_monitor.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_arg_if_add Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_arg_if_del Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: rfapi_rib.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_arg_if_add Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_arg_if_del Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: rfapi_vty.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: vnc_debug.c:_hook_typecheck_arg_if_add Unexecuted instantiation: vnc_debug.c:_hook_typecheck_arg_if_del Unexecuted instantiation: vnc_debug.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: vnc_debug.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: vnc_debug.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: vnc_debug.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: vnc_debug.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: vnc_debug.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: vnc_debug.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: vnc_debug.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: vnc_debug.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: vnc_debug.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: vnc_debug.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: vnc_debug.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_arg_if_add Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_arg_if_del Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: vnc_export_bgp.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_arg_if_add Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_arg_if_del Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: vnc_export_table.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_arg_if_add Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_arg_if_del Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: vnc_import_bgp.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_arg_if_add Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_arg_if_del Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: vnc_zebra.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_addpath.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_arg_bgp_packet_dump Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_arg_bgp_packet_send Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_arg_peer_backward_transition Unexecuted instantiation: bgp_advertise.c:_hook_typecheck_arg_peer_established Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_aspath.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_arg_peer_backward_transition Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_arg_peer_established Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_arg_bgp_packet_dump Unexecuted instantiation: bgp_bfd.c:_hook_typecheck_arg_bgp_packet_send Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_conditional_adv.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_damp.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_damp.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_damp.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_damp.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_damp.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_damp.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_damp.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_damp.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_damp.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_damp.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_damp.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_damp.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_damp.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_damp.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_damp.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_damp.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_damp.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_damp.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_damp.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_damp.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_damp.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_damp.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_damp.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_damp.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_encap_tlv.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_flowspec.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_flowspec_util.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_label.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_label.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_label.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_label.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_label.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_label.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_label.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_label.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_label.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_label.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_label.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_label.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_label.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_label.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_label.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_label.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_label.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_label.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_label.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_label.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_label.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_label.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_label.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_label.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_label.c:_hook_typecheck_arg_bgp_packet_dump Unexecuted instantiation: bgp_label.c:_hook_typecheck_arg_bgp_packet_send Unexecuted instantiation: bgp_open.c:_hook_typecheck_arg_if_add Unexecuted instantiation: bgp_open.c:_hook_typecheck_arg_if_del Unexecuted instantiation: bgp_open.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: bgp_open.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: bgp_open.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: bgp_open.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: bgp_open.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: bgp_open.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: bgp_open.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: bgp_open.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: bgp_open.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: bgp_open.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: bgp_open.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: bgp_open.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: bgp_open.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: bgp_open.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: bgp_open.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: bgp_open.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: bgp_open.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: bgp_open.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: bgp_open.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_open.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: bgp_open.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: bgp_open.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: bgp_open.c:_hook_typecheck_arg_peer_backward_transition Unexecuted instantiation: bgp_open.c:_hook_typecheck_arg_peer_established Unexecuted instantiation: bgp_open.c:_hook_typecheck_arg_bgp_packet_dump Unexecuted instantiation: bgp_open.c:_hook_typecheck_arg_bgp_packet_send Unexecuted instantiation: rfp_example.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: rfp_example.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: rfp_example.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: rfp_example.c:_hook_typecheck_arg_if_add Unexecuted instantiation: rfp_example.c:_hook_typecheck_arg_if_del Unexecuted instantiation: rfp_example.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: rfp_example.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: rfp_example.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: rfp_example.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: rfp_example.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: rfp_example.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: rfp_example.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: rfp_example.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: rfp_example.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: rfp_example.c:_hook_typecheck_arg_bgp_inst_delete Unexecuted instantiation: rfp_example.c:_hook_typecheck_arg_bgp_inst_config_write Unexecuted instantiation: rfp_example.c:_hook_typecheck_arg_bgp_config_end Unexecuted instantiation: rfp_example.c:_hook_typecheck_arg_bgp_vrf_status_changed Unexecuted instantiation: rfp_example.c:_hook_typecheck_arg_peer_status_changed Unexecuted instantiation: rfp_example.c:_hook_typecheck_arg_bgp_snmp_init_stats Unexecuted instantiation: rfp_example.c:_hook_typecheck_arg_bgp_snmp_update_last_changed Unexecuted instantiation: rfp_example.c:_hook_typecheck_arg_bgp_snmp_update_stats Unexecuted instantiation: rfp_example.c:_hook_typecheck_arg_bgp_rpki_prefix_status Unexecuted instantiation: rfp_example.c:_hook_typecheck_arg_bgp_process Unexecuted instantiation: pim_addr.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_addr.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_addr.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_addr.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_addr.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_assert.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_assert.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_assert.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_assert.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_assert.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_assert.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_assert.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_assert.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_assert.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_assert.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_assert.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_assert.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_assert.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_assert.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_bfd.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_bfd.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_bfd.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_bfd.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_bfd.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_bfd.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_bfd.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_bfd.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_bfd.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_bfd.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_bfd.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_bfd.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_bfd.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_bfd.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_bsm.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_bsm.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_bsm.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_bsm.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_bsm.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_bsm.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_bsm.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_bsm.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_bsm.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_bsm.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_bsm.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_bsm.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_bsm.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_bsm.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_cmd_common.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_cmd_common.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_cmd_common.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_cmd_common.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_cmd_common.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_cmd_common.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_cmd_common.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_cmd_common.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_cmd_common.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_cmd_common.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_cmd_common.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_cmd_common.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_cmd_common.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_cmd_common.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_errors.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_errors.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_errors.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_errors.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_errors.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_errors.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_errors.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_errors.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_errors.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_errors.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_errors.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_errors.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_errors.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_errors.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_hello.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_hello.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_hello.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_hello.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_hello.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_hello.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_hello.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_hello.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_hello.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_hello.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_hello.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_hello.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_hello.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_hello.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_iface.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_iface.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_iface.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_iface.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_iface.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_iface.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_iface.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_iface.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_iface.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_iface.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_iface.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_iface.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_iface.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_iface.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_ifchannel.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_ifchannel.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_ifchannel.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_ifchannel.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_ifchannel.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_ifchannel.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_ifchannel.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_ifchannel.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_ifchannel.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_ifchannel.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_ifchannel.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_ifchannel.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_ifchannel.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_ifchannel.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_instance.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_instance.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_instance.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_instance.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_instance.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_instance.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_instance.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_instance.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_instance.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_instance.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_instance.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_instance.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_instance.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_instance.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_join.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_join.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_join.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_join.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_join.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_join.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_join.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_join.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_join.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_join.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_join.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_join.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_join.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_join.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_jp_agg.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_jp_agg.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_jp_agg.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_jp_agg.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_jp_agg.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_jp_agg.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_jp_agg.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_jp_agg.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_jp_agg.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_jp_agg.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_jp_agg.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_jp_agg.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_jp_agg.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_jp_agg.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_macro.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_macro.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_macro.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_macro.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_macro.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_macro.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_macro.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_macro.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_macro.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_macro.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_macro.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_macro.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_macro.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_macro.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_mroute.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_mroute.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_mroute.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_mroute.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_mroute.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_mroute.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_mroute.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_mroute.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_mroute.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_mroute.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_mroute.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_mroute.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_mroute.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_mroute.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_msg.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_msg.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_msg.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_msg.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_msg.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_msg.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_msg.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_msg.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_msg.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_msg.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_msg.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_msg.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_msg.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_msg.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_nb.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_nb.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_nb.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_nb.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_nb.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_nb.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_nb.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_nb.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_nb.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_nb.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_nb.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_nb.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_nb.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_nb.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_nb_config.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_nb_config.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_nb_config.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_nb_config.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_nb_config.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_nb_config.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_nb_config.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_nb_config.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_nb_config.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_nb_config.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_nb_config.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_nb_config.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_nb_config.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_nb_config.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_neighbor.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_neighbor.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_neighbor.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_neighbor.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_neighbor.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_neighbor.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_neighbor.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_neighbor.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_neighbor.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_neighbor.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_neighbor.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_neighbor.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_neighbor.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_neighbor.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_nht.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_nht.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_nht.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_nht.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_nht.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_nht.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_nht.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_nht.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_nht.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_nht.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_nht.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_nht.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_nht.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_nht.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_oil.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_oil.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_oil.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_oil.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_oil.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_oil.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_oil.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_oil.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_oil.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_oil.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_oil.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_oil.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_oil.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_oil.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_pim.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_pim.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_pim.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_pim.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_pim.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_pim.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_pim.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_pim.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_pim.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_pim.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_pim.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_pim.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_pim.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_pim.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_routemap.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_routemap.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_routemap.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_routemap.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_routemap.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_routemap.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_routemap.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_routemap.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_routemap.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_routemap.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_routemap.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_routemap.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_routemap.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_routemap.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_rp.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_rp.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_rp.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_rp.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_rp.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_rp.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_rp.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_rp.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_rp.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_rp.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_rp.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_rp.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_rp.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_rp.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_rpf.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_rpf.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_rpf.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_rpf.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_rpf.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_rpf.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_rpf.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_rpf.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_rpf.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_rpf.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_rpf.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_rpf.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_rpf.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_rpf.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_sock.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_sock.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_sock.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_sock.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_sock.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_sock.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_sock.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_sock.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_sock.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_sock.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_sock.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_sock.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_sock.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_sock.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_ssm.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_ssm.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_ssm.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_ssm.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_ssm.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_ssm.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_ssm.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_ssm.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_ssm.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_ssm.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_ssm.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_ssm.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_ssm.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_ssm.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_ssmpingd.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_ssmpingd.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_ssmpingd.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_ssmpingd.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_ssmpingd.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_ssmpingd.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_ssmpingd.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_ssmpingd.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_ssmpingd.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_ssmpingd.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_ssmpingd.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_ssmpingd.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_ssmpingd.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_ssmpingd.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_static.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_static.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_static.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_static.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_static.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_static.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_static.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_static.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_static.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_static.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_static.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_static.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_static.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_static.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_str.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_str.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_str.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_str.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_str.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_tib.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_tib.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_tib.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_tib.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_tib.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_tib.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_tib.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_tib.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_tib.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_tib.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_tib.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_tib.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_tib.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_tib.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_time.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_time.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_time.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_time.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_time.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_time.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_time.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_time.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_time.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_time.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_time.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_time.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_time.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_time.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_tlv.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_tlv.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_tlv.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_tlv.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_tlv.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_tlv.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_tlv.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_tlv.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_tlv.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_tlv.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_tlv.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_tlv.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_tlv.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_tlv.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_upstream.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_upstream.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_upstream.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_upstream.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_upstream.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_upstream.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_upstream.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_upstream.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_upstream.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_upstream.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_upstream.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_upstream.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_upstream.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_upstream.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_util.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_util.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_util.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_util.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_util.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_util.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_util.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_util.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_util.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_util.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_util.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_util.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_util.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_util.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_vty.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_vty.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_vty.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_vty.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_vty.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_vty.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_vty.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_vty.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_vty.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_vty.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_vty.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_vty.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_vty.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_vty.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_zebra.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_zebra.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_zebra.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_zebra.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_zebra.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_zebra.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_zebra.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_zebra.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_zebra.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_zebra.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_zebra.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_zebra.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_zebra.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_zebra.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_zlookup.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_zlookup.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_zlookup.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_zlookup.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_zlookup.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_zlookup.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_zlookup.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_zlookup.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_zlookup.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_zlookup.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_zlookup.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_zlookup.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_zlookup.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_zlookup.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_vxlan.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_vxlan.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_vxlan.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_vxlan.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_vxlan.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_vxlan.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_vxlan.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_vxlan.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_vxlan.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_vxlan.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_vxlan.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_vxlan.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_vxlan.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_vxlan.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_register.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_register.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_register.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_register.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_register.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_register.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_register.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_register.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_register.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_register.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_register.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_register.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_register.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_register.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pimd.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pimd.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pimd.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pimd.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pimd.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pimd.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pimd.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pimd.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pimd.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pimd.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pimd.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pimd.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pimd.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pimd.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_cmd.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_cmd.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_cmd.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_cmd.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_cmd.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_cmd.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_cmd.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_cmd.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_cmd.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_cmd.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_cmd.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_cmd.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_cmd.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_cmd.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_igmp.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_igmp.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_igmp.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_igmp.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_igmp.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_igmp.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_igmp.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_igmp.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_igmp.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_igmp.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_igmp.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_igmp.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_igmp.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_igmp.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_igmp_mtrace.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_igmp_mtrace.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_igmp_mtrace.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_igmp_mtrace.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_igmp_mtrace.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_igmp_mtrace.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_igmp_mtrace.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_igmp_mtrace.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_igmp_mtrace.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_igmp_mtrace.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_igmp_mtrace.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_igmp_mtrace.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_igmp_mtrace.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_igmp_mtrace.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_igmpv2.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_igmpv2.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_igmpv2.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_igmpv2.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_igmpv2.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_igmpv2.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_igmpv2.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_igmpv2.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_igmpv2.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_igmpv2.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_igmpv2.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_igmpv2.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_igmpv2.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_igmpv2.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_igmpv3.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_igmpv3.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_igmpv3.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_igmpv3.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_igmpv3.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_igmpv3.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_igmpv3.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_igmpv3.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_igmpv3.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_igmpv3.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_igmpv3.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_igmpv3.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_igmpv3.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_igmpv3.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_main.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_main.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_main.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_main.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_main.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_main.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_main.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_main.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_main.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_main.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_main.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_main.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_main.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_main.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_main.c:_hook_typecheck_arg_routing_conf_event Unexecuted instantiation: pim_mlag.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_mlag.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_mlag.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_mlag.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_mlag.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_mlag.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_mlag.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_mlag.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_mlag.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_mlag.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_mlag.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_mlag.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_mlag.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_mlag.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_msdp.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_msdp.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_msdp.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_msdp.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_msdp.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_msdp.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_msdp.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_msdp.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_msdp.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_msdp.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_msdp.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_msdp.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_msdp.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_msdp.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_msdp_packet.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_msdp_packet.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_msdp_packet.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_msdp_packet.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_msdp_packet.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_msdp_packet.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_msdp_packet.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_msdp_packet.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_msdp_packet.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_msdp_packet.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_msdp_packet.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_msdp_packet.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_msdp_packet.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_msdp_packet.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_msdp_socket.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_msdp_socket.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_msdp_socket.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_msdp_socket.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_msdp_socket.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_msdp_socket.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_msdp_socket.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_msdp_socket.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_msdp_socket.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_msdp_socket.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_msdp_socket.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_msdp_socket.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_msdp_socket.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_msdp_socket.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_signals.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_signals.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_signals.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_signals.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_signals.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_signals.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_signals.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_signals.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_signals.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_signals.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_signals.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_signals.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_signals.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_signals.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: pim_zpthread.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: pim_zpthread.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: pim_zpthread.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: pim_zpthread.c:_hook_typecheck_arg_if_add Unexecuted instantiation: pim_zpthread.c:_hook_typecheck_arg_if_del Unexecuted instantiation: pim_zpthread.c:_hook_typecheck_arg_nb_notification_send Unexecuted instantiation: pim_zpthread.c:_hook_typecheck_arg_nb_client_debug_config_write Unexecuted instantiation: pim_zpthread.c:_hook_typecheck_arg_nb_client_debug_set_all Unexecuted instantiation: pim_zpthread.c:_hook_typecheck_arg_frr_early_init Unexecuted instantiation: pim_zpthread.c:_hook_typecheck_arg_frr_late_init Unexecuted instantiation: pim_zpthread.c:_hook_typecheck_arg_frr_config_pre Unexecuted instantiation: pim_zpthread.c:_hook_typecheck_arg_frr_config_post Unexecuted instantiation: pim_zpthread.c:_hook_typecheck_arg_frr_early_fini Unexecuted instantiation: pim_zpthread.c:_hook_typecheck_arg_frr_fini Unexecuted instantiation: frr-pim.yang.c:_hook_typecheck_arg_if_add Unexecuted instantiation: frr-pim.yang.c:_hook_typecheck_arg_if_del Unexecuted instantiation: frr-pim.yang.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: frr-pim.yang.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: frr-pim.yang.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: frr-pim-rp.yang.c:_hook_typecheck_arg_if_add Unexecuted instantiation: frr-pim-rp.yang.c:_hook_typecheck_arg_if_del Unexecuted instantiation: frr-pim-rp.yang.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: frr-pim-rp.yang.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: frr-pim-rp.yang.c:_hook_typecheck_arg_zlog_aux_init Unexecuted instantiation: frr-gmp.yang.c:_hook_typecheck_arg_if_add Unexecuted instantiation: frr-gmp.yang.c:_hook_typecheck_arg_if_del Unexecuted instantiation: frr-gmp.yang.c:_hook_typecheck_arg_zlog_init Unexecuted instantiation: frr-gmp.yang.c:_hook_typecheck_arg_zlog_fini Unexecuted instantiation: frr-gmp.yang.c:_hook_typecheck_arg_zlog_aux_init |
201 | | MACRO_REQUIRE_SEMICOLON() /* end */ |
202 | | |
203 | | #define DECLARE_KOOH(hookname, arglist, passlist) \ |
204 | | DECLARE_HOOK(hookname, arglist, passlist) |
205 | | |
206 | | /* use in source file - contains hook-related definitions. |
207 | | */ |
208 | | #define DEFINE_HOOK_INT(hookname, arglist, passlist, rev) \ |
209 | | struct hook _hook_##hookname = { \ |
210 | | .name = #hookname, .entries = NULL, .reverse = rev, \ |
211 | | }; \ |
212 | | static int hook_call_##hookname HOOK_VOIDIFY arglist \ |
213 | 2.44k | { \ |
214 | 2.44k | int hooksum = 0; \ |
215 | 2.44k | struct hookent *he = _hook_##hookname.entries; \ |
216 | 2.44k | void *hookarg; \ |
217 | 2.44k | union { \ |
218 | 2.44k | void *voidptr; \ |
219 | 2.44k | int(*fptr) HOOK_VOIDIFY arglist; \ |
220 | 2.44k | int(*farg) HOOK_ADDDEF arglist; \ |
221 | 2.44k | } hookp; \ |
222 | 2.45k | for (; he; he = he->next) { \ |
223 | 7 | hookarg = he->hookarg; \ |
224 | 7 | hookp.voidptr = he->hookfn; \ |
225 | 7 | if (!he->has_arg) \ |
226 | 7 | hooksum += hookp.fptr passlist; \ |
227 | 7 | else \ |
228 | 7 | hooksum += hookp.farg HOOK_ADDARG passlist; \ |
229 | 7 | } \ |
230 | 2.44k | return hooksum; \ |
231 | 2.44k | } \ Unexecuted instantiation: ospf_interface.c:hook_call_ospf_vl_add Unexecuted instantiation: ospf_interface.c:hook_call_ospf_vl_delete Unexecuted instantiation: ospf_interface.c:hook_call_ospf_if_update Unexecuted instantiation: ospf_interface.c:hook_call_ospf_if_delete Unexecuted instantiation: ospf_nsm.c:hook_call_ospf_nsm_change Unexecuted instantiation: ospf_ism.c:hook_call_ospf_ism_change Unexecuted instantiation: command.c:hook_call_cmd_execute Unexecuted instantiation: command.c:hook_call_cmd_execute_done Line | Count | Source | 213 | 3 | { \ | 214 | 3 | int hooksum = 0; \ | 215 | 3 | struct hookent *he = _hook_##hookname.entries; \ | 216 | 3 | void *hookarg; \ | 217 | 3 | union { \ | 218 | 3 | void *voidptr; \ | 219 | 3 | int(*fptr) HOOK_VOIDIFY arglist; \ | 220 | 3 | int(*farg) HOOK_ADDDEF arglist; \ | 221 | 3 | } hookp; \ | 222 | 4 | for (; he; he = he->next) { \ | 223 | 1 | hookarg = he->hookarg; \ | 224 | 1 | hookp.voidptr = he->hookfn; \ | 225 | 1 | if (!he->has_arg) \ | 226 | 1 | hooksum += hookp.fptr passlist; \ | 227 | 1 | else \ | 228 | 1 | hooksum += hookp.farg HOOK_ADDARG passlist; \ | 229 | 1 | } \ | 230 | 3 | return hooksum; \ | 231 | 3 | } \ |
Unexecuted instantiation: if.c:hook_call_if_del Unexecuted instantiation: libfrr.c:hook_call_frr_early_init Unexecuted instantiation: libfrr.c:hook_call_frr_late_init Unexecuted instantiation: libfrr.c:hook_call_frr_config_pre Unexecuted instantiation: libfrr.c:hook_call_frr_config_post Unexecuted instantiation: libfrr.c:hook_call_frr_early_fini Unexecuted instantiation: libfrr.c:hook_call_frr_fini Unexecuted instantiation: log_vty.c:hook_call_zlog_rotate Unexecuted instantiation: log_vty.c:hook_call_zlog_cli_show Unexecuted instantiation: northbound.c:hook_call_nb_notification_send Unexecuted instantiation: northbound_cli.c:hook_call_nb_client_debug_set_all Unexecuted instantiation: northbound_cli.c:hook_call_nb_client_debug_config_write Unexecuted instantiation: zlog.c:hook_call_zlog_aux_init zlog.c:hook_call_zlog_init Line | Count | Source | 213 | 3 | { \ | 214 | 3 | int hooksum = 0; \ | 215 | 3 | struct hookent *he = _hook_##hookname.entries; \ | 216 | 3 | void *hookarg; \ | 217 | 3 | union { \ | 218 | 3 | void *voidptr; \ | 219 | 3 | int(*fptr) HOOK_VOIDIFY arglist; \ | 220 | 3 | int(*farg) HOOK_ADDDEF arglist; \ | 221 | 3 | } hookp; \ | 222 | 9 | for (; he; he = he->next) { \ | 223 | 6 | hookarg = he->hookarg; \ | 224 | 6 | hookp.voidptr = he->hookfn; \ | 225 | 6 | if (!he->has_arg) \ | 226 | 6 | hooksum += hookp.fptr passlist; \ | 227 | 6 | else \ | 228 | 6 | hooksum += hookp.farg HOOK_ADDARG passlist; \ | 229 | 6 | } \ | 230 | 3 | return hooksum; \ | 231 | 3 | } \ |
Unexecuted instantiation: zlog.c:hook_call_zlog_fini Unexecuted instantiation: routing_nb_config.c:hook_call_routing_conf_event Unexecuted instantiation: debug.c:hook_call_zebra_debug_show_debugging Unexecuted instantiation: interface.c:hook_call_zebra_if_extra_info Unexecuted instantiation: interface.c:hook_call_zebra_if_config_wr Unexecuted instantiation: label_manager.c:hook_call_lm_client_connect Unexecuted instantiation: label_manager.c:hook_call_lm_get_chunk Unexecuted instantiation: label_manager.c:hook_call_lm_release_chunk Unexecuted instantiation: label_manager.c:hook_call_lm_client_disconnect Unexecuted instantiation: label_manager.c:hook_call_lm_cbs_inited Unexecuted instantiation: zebra_mlag.c:hook_call_zebra_mlag_private_monitor_state Unexecuted instantiation: zebra_mlag.c:hook_call_zebra_mlag_private_open_channel Unexecuted instantiation: zebra_mlag.c:hook_call_zebra_mlag_private_close_channel Unexecuted instantiation: zebra_mlag.c:hook_call_zebra_mlag_private_write_data Unexecuted instantiation: zebra_mlag.c:hook_call_zebra_mlag_private_cleanup_data Unexecuted instantiation: zebra_srv6.c:hook_call_srv6_manager_client_connect Unexecuted instantiation: zebra_srv6.c:hook_call_srv6_manager_get_chunk Unexecuted instantiation: zebra_srv6.c:hook_call_srv6_manager_release_chunk Unexecuted instantiation: zebra_srv6.c:hook_call_srv6_manager_client_disconnect Unexecuted instantiation: zebra_pbr.c:hook_call_zebra_pbr_ipset_update Unexecuted instantiation: zebra_pbr.c:hook_call_zebra_pbr_ipset_entry_update Unexecuted instantiation: zebra_pbr.c:hook_call_zebra_pbr_iptable_update Unexecuted instantiation: zebra_pbr.c:hook_call_zebra_pbr_ipset_entry_get_stat Unexecuted instantiation: zebra_pbr.c:hook_call_zebra_pbr_iptable_get_stat Unexecuted instantiation: zebra_pw.c:hook_call_pw_uninstall Unexecuted instantiation: zebra_pw.c:hook_call_pw_install Unexecuted instantiation: zebra_rib.c:hook_call_rib_update Unexecuted instantiation: zebra_rib.c:hook_call_rib_shutdown Unexecuted instantiation: zebra_vxlan.c:hook_call_zebra_rmac_update Unexecuted instantiation: zserv.c:hook_call_zserv_client_close Unexecuted instantiation: zserv.c:hook_call_zserv_client_connect Unexecuted instantiation: bgp_fsm.c:hook_call_peer_backward_transition Unexecuted instantiation: bgp_fsm.c:hook_call_peer_status_changed Unexecuted instantiation: bgp_packet.c:hook_call_bgp_packet_send bgp_packet.c:hook_call_bgp_packet_dump Line | Count | Source | 213 | 776 | { \ | 214 | 776 | int hooksum = 0; \ | 215 | 776 | struct hookent *he = _hook_##hookname.entries; \ | 216 | 776 | void *hookarg; \ | 217 | 776 | union { \ | 218 | 776 | void *voidptr; \ | 219 | 776 | int(*fptr) HOOK_VOIDIFY arglist; \ | 220 | 776 | int(*farg) HOOK_ADDDEF arglist; \ | 221 | 776 | } hookp; \ | 222 | 776 | for (; he; he = he->next) { \ | 223 | 0 | hookarg = he->hookarg; \ | 224 | 0 | hookp.voidptr = he->hookfn; \ | 225 | 0 | if (!he->has_arg) \ | 226 | 0 | hooksum += hookp.fptr passlist; \ | 227 | 0 | else \ | 228 | 0 | hooksum += hookp.farg HOOK_ADDARG passlist; \ | 229 | 0 | } \ | 230 | 776 | return hooksum; \ | 231 | 776 | } \ |
Unexecuted instantiation: bgp_route.c:hook_call_bgp_snmp_update_stats Unexecuted instantiation: bgp_route.c:hook_call_bgp_rpki_prefix_status bgp_route.c:hook_call_bgp_process Line | Count | Source | 213 | 1.66k | { \ | 214 | 1.66k | int hooksum = 0; \ | 215 | 1.66k | struct hookent *he = _hook_##hookname.entries; \ | 216 | 1.66k | void *hookarg; \ | 217 | 1.66k | union { \ | 218 | 1.66k | void *voidptr; \ | 219 | 1.66k | int(*fptr) HOOK_VOIDIFY arglist; \ | 220 | 1.66k | int(*farg) HOOK_ADDDEF arglist; \ | 221 | 1.66k | } hookp; \ | 222 | 1.66k | for (; he; he = he->next) { \ | 223 | 0 | hookarg = he->hookarg; \ | 224 | 0 | hookp.voidptr = he->hookfn; \ | 225 | 0 | if (!he->has_arg) \ | 226 | 0 | hooksum += hookp.fptr passlist; \ | 227 | 0 | else \ | 228 | 0 | hooksum += hookp.farg HOOK_ADDARG passlist; \ | 229 | 0 | } \ | 230 | 1.66k | return hooksum; \ | 231 | 1.66k | } \ |
Unexecuted instantiation: bgp_vty.c:hook_call_bgp_snmp_update_last_changed Unexecuted instantiation: bgp_vty.c:hook_call_bgp_snmp_init_stats Unexecuted instantiation: bgp_vty.c:hook_call_bgp_inst_config_write Unexecuted instantiation: bgp_vty.c:hook_call_bgp_config_end Unexecuted instantiation: bgp_zebra.c:hook_call_bgp_vrf_status_changed Unexecuted instantiation: bgpd.c:hook_call_bgp_inst_delete |
232 | | MACRO_REQUIRE_SEMICOLON() /* end */ |
233 | | |
234 | | #define DEFINE_HOOK(hookname, arglist, passlist) \ |
235 | | DEFINE_HOOK_INT(hookname, arglist, passlist, false) |
236 | | #define DEFINE_KOOH(hookname, arglist, passlist) \ |
237 | | DEFINE_HOOK_INT(hookname, arglist, passlist, true) |
238 | | |
239 | | #ifdef __cplusplus |
240 | | } |
241 | | #endif |
242 | | |
243 | | #endif /* _FRR_HOOK_H */ |