Searched defs:cfc (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/lib/libtecla/common/
H A Dcplmatch.c126 static void cpl_init_FileConf(CplFileConf *cfc);
821 * cfc CplFileConf * The configuration object of the
824 static void cpl_init_FileConf(CplFileConf *cfc) argument
826 if(cfc) {
827 cfc->id = CFC_ID_CODE;
828 cfc->escaped = 1;
829 cfc->file_start = -1;
830 cfc->chk_fn = 0;
831 cfc->chk_data = NULL;
848 CplFileConf *cfc; /* Th
873 del_CplFileConf(CplFileConf *cfc) argument
899 cfc_literal_escapes(CplFileConf *cfc, int literal) argument
920 cfc_file_start(CplFileConf *cfc, int start_index) argument
943 cfc_set_check_fn(CplFileConf *cfc, CplCheckFn *chk_fn, void *chk_data) argument
[all...]
H A Dpcache.c162 CplFileConf *cfc; /* Configuration parameters to pass to */ member in struct:PathCache
292 pc->cfc = NULL;
341 pc->cfc = new_CplFileConf();
342 if(!pc->cfc)
348 cfc_set_check_fn(pc->cfc, pc->check_fn, pc->data);
401 pc->cfc = del_CplFileConf(pc->cfc);
451 cfc_set_check_fn(pc->cfc, check_fn, data);
1282 cfc_file_start(pc->cfc, word_start);
1283 return cpl_file_completions(cpl, pc->cfc, lin
[all...]
/illumos-gate/usr/src/cmd/svc/svccfg/
H A Dsvccfg_engine.c173 CplFileConf *cfc; local
179 cfc = new_CplFileConf();
180 if (cfc == NULL) {
185 cfc_set_check_fn(cfc, check_xml, NULL);
187 ret = cpl_file_completions(cpl, cfc, line, word_end);
189 (void) del_CplFileConf(cfc);

Completed in 92 milliseconds