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

/illumos-gate/usr/src/uts/common/avs/ns/rdc/
H A Drdc_svc.c609 rdc_net_dataitem_t *ditem; local
676 ditem = kmem_alloc(sizeof (rdc_net_dataitem_t), KM_NOSLEEP);
677 if (ditem == NULL) {
685 * just point the ditem data pointer to the
688 ditem->next = NULL;
690 ditem->dptr = diskio.data.data_val;
695 ditem->len = diskio.data.data_len;
696 ditem->mlen = RDC_MAXDATA;
702 ditem->dptr = kmem_alloc(FBA_SIZE(diskio.len),
704 if (ditem
816 rdc_net_dataitem_t *ditem; local
2681 rdc_net_dataitem_t *ditem; local
2723 rdc_net_dataitem_t *ditem; local
[all...]
H A Drdc_io.c6528 rdc_net_dataitem_t *ditem; local
6531 ditem = dset->head;
6533 while (ditem) {
6534 nitem = ditem->next;
6535 kmem_free(ditem->dptr, ditem->mlen);
6536 RDC_DSMEMUSE(-ditem->mlen);
6538 kmem_free(ditem, sizeof (*ditem));
6539 RDC_DSMEMUSE(-sizeof (*ditem));
[all...]
/illumos-gate/usr/src/cmd/ls/
H A Dls.c131 struct ditem { struct
134 struct ditem *parent; /* dir items ptr to its parent's info */
204 struct ditem *ancinfo; /* maintains ancestor info */
215 struct ditem *myancinfo; /* this directory's ancestry info */
238 static struct lbuf *gstat(char *, int, struct ditem *);
247 static void rddir(char *, struct ditem *);
250 static void pdirectory(char *, int, int, int, struct ditem *);
259 int, struct ditem *);
418 struct ditem *myinfo = NULL;
1064 if ((myinfo = (struct ditem *)mallo
[all...]

Completed in 62 milliseconds