Searched refs:ce_list (Results 1 - 3 of 3) sorted by relevance

/darwin-on-arm/xnu/bsd/hfs/
H A Dhfs_attrlist.c115 struct cat_entrylist *ce_list = NULL; local
214 MALLOC(ce_list, struct cat_entrylist *, CE_LIST_SIZE(maxentries), M_TEMP, M_WAITOK);
215 if (ce_list == NULL) {
219 bzero(ce_list, CE_LIST_SIZE(maxentries));
220 ce_list->maxentries = maxentries;
223 * Populate the ce_list from the catalog file.
227 error = cat_getentriesattr(hfsmp, dirhint, ce_list);
250 for (i = 0; i < (int)ce_list->realentries; ++i) {
260 cdescp = &ce_list->entry[i].ce_desc;
261 cattrp = &ce_list
[all...]
H A Dhfs_catalog.h213 sizeof (*ce_list) + (((entries) - 1) * sizeof (struct cat_entry))
311 struct cat_entrylist *ce_list);
H A Dhfs_catalog.c2598 cat_getentriesattr(struct hfsmount *hfsmp, directoryhint_t *dirhint, struct cat_entrylist *ce_list) argument
2611 ce_list->realentries = 0;
2618 state.list = ce_list;
2686 else if (ce_list->realentries == 0)
2697 for (i = 0; i < (int)ce_list->realentries; ++i) {
2704 cep = &ce_list->entry[i];

Completed in 70 milliseconds