Searched refs:clist (Results 1 - 18 of 18) sorted by relevance

/freebsd-10.0-release/share/examples/kld/dyn_sysctl/
H A Ddyn_sysctl.c42 static struct sysctl_ctx_list clist, clist1, clist2; variable in typeref:struct:sysctl_ctx_list
65 sysctl_ctx_init(&clist);
73 a_root = SYSCTL_ADD_NODE(&clist,
85 SYSCTL_ADD_LONG(&clist, SYSCTL_CHILDREN(a_root),
87 SYSCTL_ADD_INT(&clist, SYSCTL_CHILDREN(a_root),
89 a_root1 = SYSCTL_ADD_NODE(&clist, SYSCTL_CHILDREN(a_root),
91 SYSCTL_ADD_STRING(&clist, SYSCTL_CHILDREN(a_root1),
93 printf("1. (%p) / dyn_sysctl\n", &clist);
96 a_root1 = SYSCTL_ADD_NODE(&clist, SYSCTL_STATIC_CHILDREN(_kern),
102 SYSCTL_ADD_PROC(&clist, SYSCTL_CHILDRE
[all...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/DataFormatters/
H A DTypeCategory.cpp22 TypeCategoryImpl::TypeCategoryImpl(IFormatChangeListener* clist, argument
24 m_summary_nav(new SummaryNavigator("summary",clist)),
25 m_regex_summary_nav(new RegexSummaryNavigator("regex-summary",clist)),
26 m_filter_nav(new FilterNavigator("filter",clist)),
27 m_regex_filter_nav(new RegexFilterNavigator("regex-filter",clist)),
29 m_synth_nav(new SynthNavigator("synth",clist)),
30 m_regex_synth_nav(new RegexSynthNavigator("regex-synth",clist)),
33 m_change_listener(clist),
/freebsd-10.0-release/sys/dev/random/
H A Dyarrow.c163 random_yarrow_init_alg(struct sysctl_ctx_list *clist) argument
171 random_yarrow_o = SYSCTL_ADD_NODE(clist,
176 SYSCTL_ADD_PROC(clist,
183 SYSCTL_ADD_PROC(clist,
190 SYSCTL_ADD_PROC(clist,
197 SYSCTL_ADD_PROC(clist,
204 SYSCTL_ADD_PROC(clist,
/freebsd-10.0-release/sys/kern/
H A Dkern_sysctl.c247 sysctl_ctx_free(struct sysctl_ctx_list *clist) argument
260 TAILQ_FOREACH(e, clist, link) {
273 e1 = TAILQ_LAST(clist, sysctl_ctx_list);
283 e = TAILQ_FIRST(clist);
299 sysctl_ctx_entry_add(struct sysctl_ctx_list *clist, struct sysctl_oid *oidp) argument
304 if (clist == NULL || oidp == NULL)
308 TAILQ_INSERT_HEAD(clist, e, link);
314 sysctl_ctx_entry_find(struct sysctl_ctx_list *clist, struct sysctl_oid *oidp) argument
319 if (clist == NULL || oidp == NULL)
321 TAILQ_FOREACH(e, clist, lin
334 sysctl_ctx_entry_del(struct sysctl_ctx_list *clist, struct sysctl_oid *oidp) argument
464 sysctl_add_oid(struct sysctl_ctx_list *clist, struct sysctl_oid_list *parent, int number, const char *name, int kind, void *arg1, intptr_t arg2, int (*handler)(SYSCTL_HANDLER_ARGS), const char *fmt, const char *descr) argument
[all...]
/freebsd-10.0-release/sys/sys/
H A Dsysctl.h654 struct sysctl_oid *sysctl_add_oid(struct sysctl_ctx_list *clist,
664 int sysctl_ctx_init(struct sysctl_ctx_list *clist);
665 int sysctl_ctx_free(struct sysctl_ctx_list *clist);
666 struct sysctl_ctx_entry *sysctl_ctx_entry_add(struct sysctl_ctx_list *clist,
668 struct sysctl_ctx_entry *sysctl_ctx_entry_find(struct sysctl_ctx_list *clist,
670 int sysctl_ctx_entry_del(struct sysctl_ctx_list *clist,
/freebsd-10.0-release/bin/dd/
H A Dargs.c299 } clist[] = { variable in typeref:struct:conv
329 cp = bsearch(&tmp, clist, sizeof(clist) / sizeof(struct conv),
/freebsd-10.0-release/contrib/gdb/gdb/cli/
H A Dcli-decode.c44 struct cmd_list_element *clist,
862 /* Search the input clist for 'command'. Return the command if
867 find_cmd (char *command, int len, struct cmd_list_element *clist,
874 for (c = clist; c; c = c->next)
926 lookup_cmd_1 (char **text, struct cmd_list_element *clist,
973 found = find_cmd (command, len, clist, ignore_help_classes, &nfound);
986 found = find_cmd (command, len, clist, ignore_help_classes, &nfound);
1029 *result_list = clist;
1055 *result_list = clist;
863 find_cmd(char *command, int len, struct cmd_list_element *clist, int ignore_help_classes, int *nfound) argument
922 lookup_cmd_1(char **text, struct cmd_list_element *clist, struct cmd_list_element **result_list, int ignore_help_classes) argument
/freebsd-10.0-release/sys/dev/iscsi_initiator/
H A Disc_sm.c657 sysctl_ctx_init(&sp->clist);
658 sp->oid = SYSCTL_ADD_NODE(&sp->clist,
665 SYSCTL_ADD_PROC(&sp->clist,
673 SYSCTL_ADD_PROC(&sp->clist,
681 SYSCTL_ADD_PROC(&sp->clist,
689 SYSCTL_ADD_INT(&sp->clist,
749 if(sysctl_ctx_free(&sp->clist))
H A Discsi.c233 SYSCTL_ADD_INT(&sp->clist, SYSCTL_CHILDREN(sp->oid),
739 sysctl_ctx_init(&isc->clist);
740 isc->oid = SYSCTL_ADD_NODE(&isc->clist,
748 SYSCTL_ADD_STRING(&isc->clist,
757 SYSCTL_ADD_STRING(&isc->clist,
766 SYSCTL_ADD_INT(&isc->clist,
821 if(sysctl_ctx_free(&isc->clist))
H A Discsivar.h175 struct sysctl_ctx_list clist; member in struct:isc_session
217 struct sysctl_ctx_list clist; member in struct:isc_softc
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/DataFormatters/
H A DTypeCategory.h62 TypeCategoryImpl (IFormatChangeListener* clist,
/freebsd-10.0-release/contrib/ntp/kernel/
H A Dtty_clk.c20 #include "../h/clist.h"
61 struct clist clkbuf;
70 * Routine for flushing the internal clist
/freebsd-10.0-release/contrib/ntp/ntpdc/
H A Dntpdc.c1338 struct xcmd *clist; local
1343 clist = clist1;
1345 clist = clist2;
1350 for (cl = clist; cl->keyword != 0; cl++) {
1373 if (clist == clist1 && clist2 != 0) {
1374 clist = clist2;
H A Dntpdc_ops.c2696 u_long clist[min(MAXARGS, 8)]; local
2705 clist[qitems] = GET_INADDR(pcmd->argval[qitems].netnum);
2709 sizeof(u_int32), (char *)clist, &items,
2867 u_long clist[min(MAXARGS, 8)]; local
2877 clist[qitems] = GET_INADDR(pcmd->argval[qitems].netnum);
2881 sizeof(u_int32), (char *)clist, &items,
/freebsd-10.0-release/contrib/ntp/ntpq/
H A Dntpq.c1575 struct xcmd *clist; local
1580 clist = clist1;
1582 clist = clist2;
1587 for (cl = clist; cl->keyword != 0; cl++) {
1610 if (clist == clist1 && clist2 != 0) {
1611 clist = clist2;
/freebsd-10.0-release/sys/compat/ndis/
H A Dkern_ndis.c417 struct sysctl_ctx_list *clist; local
421 clist = device_get_sysctl_ctx(sc->ndis_dev);
426 sysctl_ctx_entry_del(clist, cfg->ndis_oid);
/freebsd-10.0-release/contrib/amd/libamu/
H A Dwire.c449 #define clist (ifc.ifc_ifcu.ifcu_req) macro
/freebsd-10.0-release/sys/fs/nfsclient/
H A Dnfs_clstate.c3144 int clist, gotseq_ok, i, j, k, op, rcalls; local
3457 clist = fxdr_unsigned(int, *tl);
3458 for (j = 0; j < clist; j++) {

Completed in 171 milliseconds