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

/freebsd-10.1-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.1-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.1-release/contrib/llvm/tools/lldb/include/lldb/DataFormatters/
H A DTypeCategory.h43 IFormatChangeListener* clist) :
44 m_exact_sp(new ExactMatchContainer(std::string(exact_name),clist)),
45 m_regex_sp(new RegexMatchContainer(std::string(regex_name),clist))
97 TypeCategoryImpl (IFormatChangeListener* clist,
41 FormatterContainerPair(const char* exact_name, const char* regex_name, IFormatChangeListener* clist) argument
/freebsd-10.1-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.1-release/contrib/llvm/tools/lldb/source/DataFormatters/
H A DTypeCategory.cpp22 TypeCategoryImpl::TypeCategoryImpl(IFormatChangeListener* clist, argument
24 m_format_cont("format","regex-format",clist),
25 m_summary_cont("summary","regex-summary",clist),
26 m_filter_cont("filter","regex-filter",clist),
28 m_synth_cont("synth","regex-synth",clist),
31 m_change_listener(clist),
/freebsd-10.1-release/bin/dd/
H A Dargs.c313 } clist[] = { variable in typeref:struct:conv
343 cp = bsearch(&tmp, clist, sizeof(clist) / sizeof(struct conv),
/freebsd-10.1-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.1-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.1-release/sys/sys/
H A Dsysctl.h690 struct sysctl_oid *sysctl_add_oid(struct sysctl_ctx_list *clist,
700 int sysctl_ctx_init(struct sysctl_ctx_list *clist);
701 int sysctl_ctx_free(struct sysctl_ctx_list *clist);
702 struct sysctl_ctx_entry *sysctl_ctx_entry_add(struct sysctl_ctx_list *clist,
704 struct sysctl_ctx_entry *sysctl_ctx_entry_find(struct sysctl_ctx_list *clist,
706 int sysctl_ctx_entry_del(struct sysctl_ctx_list *clist,
/freebsd-10.1-release/contrib/ntp/ntpdc/
H A Dntpdc.c1298 struct xcmd *clist; local
1303 clist = clist1;
1305 clist = clist2;
1310 for (cl = clist; cl->keyword != 0; cl++) {
1333 if (clist == clist1 && clist2 != 0) {
1334 clist = clist2;
H A Dntpdc_ops.c2650 u_long clist[min(MAXARGS, 8)]; local
2659 qitemlim = min(pcmd->nargs, COUNTOF(clist));
2661 clist[qitems] = NSRCADR(&pcmd->argval[qitems].netnum);
2665 sizeof(u_int32), (char *)clist, &items,
2823 u_long clist[min(MAXARGS, 8)]; local
2833 qitemlim = min(pcmd->nargs, COUNTOF(clist));
2835 clist[qitems] = NSRCADR(&pcmd->argval[qitems].netnum);
2839 sizeof(u_int32), (char *)clist, &items,
/freebsd-10.1-release/contrib/ntp/ntpq/
H A Dntpq.c1805 struct xcmd *clist; local
1810 clist = clist1;
1812 clist = clist2;
1817 for (cl = clist; cl->keyword != 0; cl++) {
1840 if (clist == clist1 && clist2 != 0) {
1841 clist = clist2;
/freebsd-10.1-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.1-release/contrib/amd/libamu/
H A Dwire.c449 #define clist (ifc.ifc_ifcu.ifcu_req) macro
/freebsd-10.1-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 237 milliseconds