Home
last modified time | relevance | path

Searched defs:arg (Results 1 – 25 of 2602) sorted by relevance

12345678910>>...105

/freebsd-13-stable/bin/dd/
HDargs.c79 static const struct arg { struct
83 } args[] = { argument
113 char *arg; in jcl() local
188 f_bs(char *arg) in f_bs()
199 f_cbs(char *arg) in f_cbs()
210 f_count(char *arg) in f_count()
224 f_files(char *arg) in f_files()
233 f_fillchar(char *arg) in f_fillchar()
243 f_ibs(char *arg) in f_ibs()
257 f_if(char *arg) in f_if()
[all …]
/freebsd-13-stable/sbin/ipf/iplang/
HDiplang_y.y589 struct in_addr getipv4addr(arg) in getipv4addr() argument
616 struct ether_addr *geteaddr(char *arg, struct ether_addr *buf) in geteaddr()
707 void set_datalen(char **arg) in set_datalen()
718 void set_data(char **arg) in set_data()
788 void set_datafile(char **arg) in set_datafile()
836 void set_ipv4proto(arg) in set_ipv4proto() argument
851 void set_ipv4src(char **arg) in set_ipv4src()
859 void set_ipv4dst(char **arg) in set_ipv4dst()
867 void set_ipv4off(char **arg) in set_ipv4off()
875 void set_ipv4v(char **arg) in set_ipv4v()
[all …]
/freebsd-13-stable/sys/contrib/ncsw/inc/
HDtypes_freebsd.h54 #define GET_UINT32(arg) in32(&(arg)) argument
55 #define GET_UINT64(arg) in64(&(arg)) argument
57 #define _WRITE_UINT32(arg, data) out32(&(arg), (data)) argument
58 #define _WRITE_UINT64(arg, data) out64(&(arg), (data)) argument
62 #define GET_UINT8(arg) in8(&(arg)) argument
63 #define GET_UINT16(arg) in16(&(arg)) argument
65 #define _WRITE_UINT8(arg, data) out8(&(arg), (data)) argument
66 #define _WRITE_UINT16(arg, data) out16(&(arg), (data)) argument
74 #define GET_UINT8(arg) (uint8_t)(in32(QE_32_BIT_ADDR(arg)) >> QE_32_BIT_SHIFT8(arg)) argument
75 #define GET_UINT16(arg) (uint16_t)(in32(QE_32_BIT_ADDR(arg)) >> QE_32_BIT_SHIFT16(arg)) argument
[all …]
/freebsd-13-stable/contrib/ntp/sntp/libevent/test/
HDregress_http.c121 https_bev(struct event_base *base, void *arg) in https_bev()
256 http_readcb(struct bufferevent *bev, void *arg) in http_readcb()
294 http_writecb(struct bufferevent *bev, void *arg) in http_writecb()
304 http_errorcb(struct bufferevent *bev, short what, void *arg) in http_errorcb()
317 http_basic_cb(struct evhttp_request *req, void *arg) in http_basic_cb()
381 static void http_timeout_reply_cb(evutil_socket_t fd, short events, void *arg) in http_timeout_reply_cb()
388 http_timeout_cb(struct evhttp_request *req, void *arg) in http_timeout_cb()
396 http_large_cb(struct evhttp_request *req, void *arg) in http_large_cb()
421 http_chunked_trickle_cb(evutil_socket_t fd, short events, void *arg) in http_chunked_trickle_cb()
441 http_chunked_cb(struct evhttp_request *req, void *arg) in http_chunked_cb()
[all …]
HDregress_finalize.c42 timer_callback(evutil_socket_t fd, short what, void *arg) in timer_callback()
50 simple_callback(struct event_callback *evcb, void *arg) in simple_callback()
57 event_finalize_callback_1(struct event *ev, void *arg) in event_finalize_callback_1()
64 callback_finalize_callback_1(struct event_callback *evcb, void *arg) in callback_finalize_callback_1()
73 test_fin_cb_invoked(void *arg) in test_fin_cb_invoked()
189 test_fin_free_finalize(void *arg) in test_fin_free_finalize()
237 event_finalize_callback_2(struct event *ev, void *arg) in event_finalize_callback_2()
244 timer_callback_2(evutil_socket_t fd, short what, void *arg) in timer_callback_2()
255 test_fin_within_cb(void *arg) in test_fin_within_cb()
294 event_finalize_callback_free(struct event *ev, void *arg) in event_finalize_callback_free()
[all …]
HDregress_thread.c75 wake_all_timeout(evutil_socket_t fd, short what, void *arg) in wake_all_timeout()
85 wake_one_timeout(evutil_socket_t fd, short what, void *arg) in wake_one_timeout()
99 basic_thread(void *arg) in basic_thread()
147 sigchld_cb(evutil_socket_t fd, short event, void *arg) in sigchld_cb()
160 notify_fd_cb(evutil_socket_t fd, short event, void *arg) in notify_fd_cb()
167 thread_basic(void *arg) in thread_basic()
268 wait_for_condition(void *arg) in wait_for_condition()
290 thread_conditions_simple(void *arg) in thread_conditions_simple()
413 deferred_callback(struct event_callback *cb, void *arg) in deferred_callback()
420 load_deferred_queue(void *arg) in load_deferred_queue()
[all …]
/freebsd-13-stable/contrib/libevent/test/
HDregress_http.c121 https_bev(struct event_base *base, void *arg) in https_bev()
256 http_readcb(struct bufferevent *bev, void *arg) in http_readcb()
294 http_writecb(struct bufferevent *bev, void *arg) in http_writecb()
304 http_errorcb(struct bufferevent *bev, short what, void *arg) in http_errorcb()
317 http_basic_cb(struct evhttp_request *req, void *arg) in http_basic_cb()
381 static void http_timeout_reply_cb(evutil_socket_t fd, short events, void *arg) in http_timeout_reply_cb()
388 http_timeout_cb(struct evhttp_request *req, void *arg) in http_timeout_cb()
396 http_large_cb(struct evhttp_request *req, void *arg) in http_large_cb()
421 http_chunked_trickle_cb(evutil_socket_t fd, short events, void *arg) in http_chunked_trickle_cb()
441 http_chunked_cb(struct evhttp_request *req, void *arg) in http_chunked_cb()
[all …]
HDregress_finalize.c42 timer_callback(evutil_socket_t fd, short what, void *arg) in timer_callback()
50 simple_callback(struct event_callback *evcb, void *arg) in simple_callback()
57 event_finalize_callback_1(struct event *ev, void *arg) in event_finalize_callback_1()
64 callback_finalize_callback_1(struct event_callback *evcb, void *arg) in callback_finalize_callback_1()
73 test_fin_cb_invoked(void *arg) in test_fin_cb_invoked()
189 test_fin_free_finalize(void *arg) in test_fin_free_finalize()
237 event_finalize_callback_2(struct event *ev, void *arg) in event_finalize_callback_2()
244 timer_callback_2(evutil_socket_t fd, short what, void *arg) in timer_callback_2()
255 test_fin_within_cb(void *arg) in test_fin_within_cb()
294 event_finalize_callback_free(struct event *ev, void *arg) in event_finalize_callback_free()
[all …]
HDregress_thread.c75 wake_all_timeout(evutil_socket_t fd, short what, void *arg) in wake_all_timeout()
85 wake_one_timeout(evutil_socket_t fd, short what, void *arg) in wake_one_timeout()
99 basic_thread(void *arg) in basic_thread()
147 sigchld_cb(evutil_socket_t fd, short event, void *arg) in sigchld_cb()
160 notify_fd_cb(evutil_socket_t fd, short event, void *arg) in notify_fd_cb()
167 thread_basic(void *arg) in thread_basic()
268 wait_for_condition(void *arg) in wait_for_condition()
290 thread_conditions_simple(void *arg) in thread_conditions_simple()
413 deferred_callback(struct event_callback *cb, void *arg) in deferred_callback()
420 load_deferred_queue(void *arg) in load_deferred_queue()
[all …]
/freebsd-13-stable/contrib/llvm-project/lld/COFF/
HDDriver.cpp83 auto *arg = args.getLastArg(id); in getOldNewOptions() local
403 for (auto *arg : directives.args) { in parseDirectives() local
801 for (auto *arg : args) { in createResponseFile() local
888 auto *arg = args.getLastArg(os, osFile); in getMapFile() local
1070 void LinkerDriver::parseOrderFile(StringRef arg) { in parseOrderFile()
1097 for (StringRef arg : args::getLines(mb->getMemBufferRef())) { in parseOrderFile() local
1339 for (auto *arg : args.filtered(OPT_wholearchive_file)) in maybeExportMinGWSymbols() local
1343 for (auto *arg : args.filtered(OPT_exclude_symbols)) { in maybeExportMinGWSymbols() local
1379 if (auto *arg = args.getLastArg(OPT_reproduce)) in getReproduceFile() local
1382 if (auto *arg = args.getLastArg(OPT_linkrepro)) { in getReproduceFile() local
[all …]
/freebsd-13-stable/stand/userboot/test/
HDtest.c64 test_putc(void *arg, int ch) in test_putc()
72 test_getc(void *arg) in test_getc()
82 test_poll(void *arg) in test_poll()
106 test_open(void *arg, const char *filename, void **h_return) in test_open()
149 test_close(void *arg, void *h) in test_close()
163 test_isdir(void *arg, void *h) in test_isdir()
171 test_read(void *arg, void *h, void *dst, size_t size, size_t *resid_return) in test_read()
186 test_readdir(void *arg, void *h, uint32_t *fileno_return, uint8_t *type_return, in test_readdir()
213 test_seek(void *arg, void *h, uint64_t offset, int whence) in test_seek()
225 test_stat(void *arg, void *h, struct stat *stp) in test_stat()
[all …]
/freebsd-13-stable/usr.sbin/rpc.lockd/
HDlock_proc.c383 nlmtonlm4(struct nlm_lock *arg, struct nlm4_lock *arg4) in nlmtonlm4()
426 nlm_test_1_svc(nlm_testargs *arg, struct svc_req *rqstp) in nlm_test_1_svc()
458 nlm_test_msg_1_svc(nlm_testargs *arg, struct svc_req *rqstp) in nlm_test_msg_1_svc()
513 nlm_lock_1_svc(nlm_lockargs *arg, struct svc_req *rqstp) in nlm_lock_1_svc()
535 nlm_lock_msg_1_svc(nlm_lockargs *arg, struct svc_req *rqstp) in nlm_lock_msg_1_svc()
564 nlm_cancel_1_svc(nlm_cancargs *arg, struct svc_req *rqstp) in nlm_cancel_1_svc()
586 nlm_cancel_msg_1_svc(nlm_cancargs *arg, struct svc_req *rqstp) in nlm_cancel_msg_1_svc()
615 nlm_unlock_1_svc(nlm_unlockargs *arg, struct svc_req *rqstp) in nlm_unlock_1_svc()
632 nlm_unlock_msg_1_svc(nlm_unlockargs *arg, struct svc_req *rqstp) in nlm_unlock_msg_1_svc()
668 nlm_granted_1_svc(nlm_testargs *arg, struct svc_req *rqstp) in nlm_granted_1_svc()
[all …]
/freebsd-13-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
HDdt_options.c48 dt_opt_agg(dtrace_hdl_t *dtp, const char *arg, uintptr_t option) in dt_opt_agg()
61 dt_opt_amin(dtrace_hdl_t *dtp, const char *arg, uintptr_t option) in dt_opt_amin()
108 dt_opt_core(dtrace_hdl_t *dtp, const char *arg, uintptr_t option) in dt_opt_core()
123 dt_opt_cpp_hdrs(dtrace_hdl_t *dtp, const char *arg, uintptr_t option) in dt_opt_cpp_hdrs()
139 dt_opt_cpp_path(dtrace_hdl_t *dtp, const char *arg, uintptr_t option) in dt_opt_cpp_path()
160 dt_opt_cpp_opts(dtrace_hdl_t *dtp, const char *arg, uintptr_t option) in dt_opt_cpp_opts()
200 dt_opt_ctypes(dtrace_hdl_t *dtp, const char *arg, uintptr_t option) in dt_opt_ctypes()
217 dt_opt_droptags(dtrace_hdl_t *dtp, const char *arg, uintptr_t option) in dt_opt_droptags()
225 dt_opt_dtypes(dtrace_hdl_t *dtp, const char *arg, uintptr_t option) in dt_opt_dtypes()
242 dt_opt_debug(dtrace_hdl_t *dtp, const char *arg, uintptr_t option) in dt_opt_debug()
[all …]
/freebsd-13-stable/contrib/unbound/smallapp/
HDworker_cb.c55 int ATTR_UNUSED(error), void* ATTR_UNUSED(arg)) in worker_handle_control_cmd()
61 void* ATTR_UNUSED(arg), int ATTR_UNUSED(error), in worker_handle_request()
69 void* ATTR_UNUSED(arg), int ATTR_UNUSED(error), in worker_handle_service_reply()
77 void* ATTR_UNUSED(arg), int ATTR_UNUSED(error), in remote_accept_callback()
85 void* ATTR_UNUSED(arg), int ATTR_UNUSED(error), in remote_control_callback()
92 void worker_sighandler(int ATTR_UNUSED(sig), void* ATTR_UNUSED(arg)) in worker_sighandler()
114 ATTR_UNUSED(arg)) { in worker_win_stop_cb()
119 wsvc_cron_cb(void* ATTR_UNUSED(arg)) in wsvc_cron_cb()
126 worker_alloc_cleanup(void* ATTR_UNUSED(arg)) in worker_alloc_cleanup()
146 void* ATTR_UNUSED(arg), int ATTR_UNUSED(error), in libworker_handle_service_reply()
[all …]
/freebsd-13-stable/sys/dev/ocs_fc/
HDocs_fabric.c76 __ocs_fabric_init(ocs_sm_ctx_t *ctx, ocs_sm_event_t evt, void *arg) in __ocs_fabric_init()
158 __ocs_fabric_flogi_wait_rsp(ocs_sm_ctx_t *ctx, ocs_sm_event_t evt, void *arg) in __ocs_fabric_flogi_wait_rsp()
267 __ocs_vport_fabric_init(ocs_sm_ctx_t *ctx, ocs_sm_event_t evt, void *arg) in __ocs_vport_fabric_init()
302 __ocs_fabric_fdisc_wait_rsp(ocs_sm_ctx_t *ctx, ocs_sm_event_t evt, void *arg) in __ocs_fabric_fdisc_wait_rsp()
362 __ocs_fabric_wait_domain_attach(ocs_sm_ctx_t *ctx, ocs_sm_event_t evt, void *arg) in __ocs_fabric_wait_domain_attach()
416 __ocs_fabric_idle(ocs_sm_ctx_t *ctx, ocs_sm_event_t evt, void *arg) in __ocs_fabric_idle()
447 __ocs_ns_init(ocs_sm_ctx_t *ctx, ocs_sm_event_t evt, void *arg) in __ocs_ns_init()
482 __ocs_ns_plogi_wait_rsp(ocs_sm_ctx_t *ctx, ocs_sm_event_t evt, void *arg) in __ocs_ns_plogi_wait_rsp()
532 __ocs_ns_wait_node_attach(ocs_sm_ctx_t *ctx, ocs_sm_event_t evt, void *arg) in __ocs_ns_wait_node_attach()
598 __ocs_fabric_wait_attach_evt_shutdown(ocs_sm_ctx_t *ctx, ocs_sm_event_t evt, void *arg) in __ocs_fabric_wait_attach_evt_shutdown()
[all …]
HDocs_device.c109 __ocs_d_initiate_shutdown(ocs_sm_ctx_t *ctx, ocs_sm_event_t evt, void *arg) in __ocs_d_initiate_shutdown()
236 __ocs_d_common(const char *funcname, ocs_sm_ctx_t *ctx, ocs_sm_event_t evt, void *arg) in __ocs_d_common()
287 __ocs_d_wait_loop(ocs_sm_ctx_t *ctx, ocs_sm_event_t evt, void *arg) in __ocs_d_wait_loop()
330 __ocs_d_wait_del_ini_tgt(ocs_sm_ctx_t *ctx, ocs_sm_event_t evt, void *arg) in __ocs_d_wait_del_ini_tgt()
396 __ocs_d_wait_del_node(ocs_sm_ctx_t *ctx, ocs_sm_event_t evt, void *arg) in __ocs_d_wait_del_node()
582 __ocs_d_wait_plogi_acc_cmpl(ocs_sm_ctx_t *ctx, ocs_sm_event_t evt, void *arg) in __ocs_d_wait_plogi_acc_cmpl()
630 __ocs_d_wait_logo_rsp(ocs_sm_ctx_t *ctx, ocs_sm_event_t evt, void *arg) in __ocs_d_wait_logo_rsp()
682 __ocs_d_wait_prlo_rsp(ocs_sm_ctx_t *ctx, ocs_sm_event_t evt, void *arg) in __ocs_d_wait_prlo_rsp()
759 __ocs_d_init(ocs_sm_ctx_t *ctx, ocs_sm_event_t evt, void *arg) in __ocs_d_init()
950 __ocs_d_wait_plogi_rsp(ocs_sm_ctx_t *ctx, ocs_sm_event_t evt, void *arg) in __ocs_d_wait_plogi_rsp()
[all …]
/freebsd-13-stable/sys/dev/ice/
HDice_iflib_recovery_txrx.c84 ice_recovery_txd_encap(void __unused *arg, if_pkt_info_t __unused pi) in ice_recovery_txd_encap()
99 ice_recovery_txd_flush(void __unused *arg, uint16_t __unused txqid, in ice_recovery_txd_flush()
117 ice_recovery_txd_credits_update(void __unused *arg, uint16_t __unused txqid, in ice_recovery_txd_credits_update()
136 ice_recovery_rxd_available(void __unused *arg, uint16_t __unused rxqid, in ice_recovery_rxd_available()
153 ice_recovery_rxd_pkt_get(void __unused *arg, if_rxd_info_t __unused ri) in ice_recovery_rxd_pkt_get()
167 ice_recovery_rxd_refill(void __unused *arg, if_rxd_update_t __unused iru) in ice_recovery_rxd_refill()
183 ice_recovery_rxd_flush(void __unused *arg, uint16_t __unused rxqid, in ice_recovery_rxd_flush()
/freebsd-13-stable/sys/dev/terasic/de4led/
HDterasic_de4led.c68 led_0(void *arg, int onoff) in led_0()
75 led_1(void *arg, int onoff) in led_1()
82 led_2(void *arg, int onoff) in led_2()
89 led_3(void *arg, int onoff) in led_3()
96 led_4(void *arg, int onoff) in led_4()
103 led_5(void *arg, int onoff) in led_5()
110 led_6(void *arg, int onoff) in led_6()
117 led_7(void *arg, int onoff) in led_7()
/freebsd-13-stable/usr.sbin/ppp/
HDcommand.c211 HelpCommand(struct cmdargs const *arg) in HelpCommand()
264 IdentCommand(struct cmdargs const *arg) in IdentCommand()
273 SendIdentification(struct cmdargs const *arg) in SendIdentification()
283 CloneCommand(struct cmdargs const *arg) in CloneCommand()
303 RemoveCommand(struct cmdargs const *arg) in RemoveCommand()
318 RenameCommand(struct cmdargs const *arg) in RenameCommand()
332 LoadCommand(struct cmdargs const *arg) in LoadCommand()
364 LogCommand(struct cmdargs const *arg) in LogCommand()
394 DialCommand(struct cmdargs const *arg) in DialCommand()
524 int arg, secs; in command_Expand() local
[all …]
/freebsd-13-stable/sys/contrib/ngatm/netnatm/sig/
HDsig_coord.c767 struct uniapi_proceeding_request *arg = in uni_sig_coord() local
783 struct uniapi_alerting_request *arg = in uni_sig_coord() local
799 struct uniapi_setup_response *arg = in uni_sig_coord() local
815 struct uniapi_setup_complete_request *arg = in uni_sig_coord() local
832 struct uniapi_release_request *arg = in uni_sig_coord() local
848 struct uniapi_release_response *arg = in uni_sig_coord() local
864 struct uniapi_notify_request *arg = in uni_sig_coord() local
880 struct uniapi_status_enquiry_request *arg = in uni_sig_coord() local
896 struct uniapi_add_party_request *arg = in uni_sig_coord() local
917 struct uniapi_party_alerting_request *arg = in uni_sig_coord() local
[all …]
/freebsd-13-stable/contrib/netbsd-tests/lib/libpthread_dbg/
HDh_common.h53 dummy_proc_read(void *arg, caddr_t addr, void *buf, size_t size) in dummy_proc_read()
59 dummy_proc_write(void *arg, caddr_t addr, void *buf, size_t size) in dummy_proc_write()
65 dummy_proc_lookup(void *arg, const char *sym, caddr_t *addr) in dummy_proc_lookup()
71 dummy_proc_regsize(void *arg, int regset, size_t *size) in dummy_proc_regsize()
77 dummy_proc_getregs(void *arg, int regset, int lwp, void *buf) in dummy_proc_getregs()
83 dummy_proc_setregs(void *arg, int regset, int lwp, void *buf) in dummy_proc_setregs()
91 basic_proc_read(void *arg, caddr_t addr, void *buf, size_t size) in basic_proc_read()
99 basic_proc_write(void *arg, caddr_t addr, void *buf, size_t size) in basic_proc_write()
107 basic_proc_lookup(void *arg, const char *sym, caddr_t *addr) in basic_proc_lookup()
/freebsd-13-stable/sys/netpfil/ipfilter/netinet/
HDip_htable.c162 ipf_htable_soft_destroy(ipf_main_softc_t *softc, void *arg) in ipf_htable_soft_destroy()
179 ipf_htable_soft_init(softc, arg) in ipf_htable_soft_init() argument
203 ipf_htable_soft_fini(ipf_main_softc_t *softc, void *arg) in ipf_htable_soft_fini()
227 ipf_htable_stats_get(ipf_main_softc_t *softc, void *arg, iplookupop_t *op) in ipf_htable_stats_get()
263 ipf_htable_create(ipf_main_softc_t *softc, void *arg, iplookupop_t *op) in ipf_htable_create()
372 ipf_htable_table_del(ipf_main_softc_t *softc, void *arg, iplookupop_t *op) in ipf_htable_table_del()
391 ipf_htable_destroy(ipf_main_softc_t *softc, void *arg, int unit, char *name) in ipf_htable_destroy()
429 ipf_htable_clear(ipf_main_softc_t *softc, void *arg, iphtable_t *iph) in ipf_htable_clear()
448 ipf_htable_free(void *arg, iphtable_t *iph) in ipf_htable_free()
477 ipf_htable_remove(ipf_main_softc_t *softc, void *arg, iphtable_t *iph) in ipf_htable_remove()
[all …]
/freebsd-13-stable/contrib/tcpdump/missing/
HDsnprintf.c195 unsigned char *arg, in append_string()
226 unsigned char arg, in append_char()
247 #define PARSE_INT_FORMAT(res, arg, unsig) \ argument
346 long arg; in xyzprintf() local
364 unsigned long arg; in xyzprintf() local
374 unsigned long arg; in xyzprintf() local
384 unsigned long arg; in xyzprintf() local
394 unsigned long arg; in xyzprintf() local
404 unsigned long arg = (unsigned long)va_arg(ap, void*); in xyzprintf() local
412 int *arg = va_arg(ap, int *); in xyzprintf() local
/freebsd-13-stable/contrib/llvm-project/lld/MachO/
HDDriver.cpp202 for (const Arg *arg : args.filtered(OPT_syslibroot)) in getSystemLibraryRoots() local
233 for (const Arg *arg : in getLTOCachePolicy() local
531 StringRef arg = argv[i]; in parseLCLinkerOption() local
552 StringRef arg = LCLinkerOptions[i]; in resolveLCLinkerOptions() local
706 static PlatformVersion parsePlatformVersion(const Arg *arg) { in parsePlatformVersion()
748 for (const Arg *arg : args.filtered(OPT_platform_version)) { in setPlatformVersions() local
861 const Arg *arg = args.getLastArg(OPT_objc_stubs_fast, OPT_objc_stubs_small); in getObjCStubsMode() local
912 if (const Arg *arg = args.getLastArg(OPT_reproduce)) in getReproduceOption() local
920 auto *arg = args.getLastArg(id); in getOldNewOptions() local
951 const Arg *arg = args.getLastArg(id); in parseDylibVersion() local
[all …]
/freebsd-13-stable/sys/net/
HDvnet.h194 #define CURVNET_SET_QUIET(arg) \ argument
203 #define CURVNET_SET_VERBOSE(arg) \ argument
208 #define CURVNET_SET(arg) CURVNET_SET_VERBOSE(arg) argument
219 #define CURVNET_SET_QUIET(arg) \ argument
226 #define CURVNET_SET_VERBOSE(arg) \ argument
229 #define CURVNET_SET(arg) CURVNET_SET_VERBOSE(arg) argument
244 #define IS_DEFAULT_VNET(arg) ((arg) == vnet0) argument
268 #define VNET_ITERATOR_DECL(arg) struct vnet *arg argument
269 #define VNET_FOREACH(arg) LIST_FOREACH((arg), &vnet_head, vnet_le) argument
328 const void *arg; member
[all …]

12345678910>>...105