Home
last modified time | relevance | path

Searched refs:dchain (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/lib/libbsm/common/
H A Dau_open.c164 if (dchain == (token_t *)&au_d) { in au_close()
172 while (dchain != (token_t *)0) { in au_close()
173 record = dchain; in au_close()
174 dchain = dchain->tt_next; in au_close()
227 record = dchain; in au_close()
228 dchain = dchain->tt_next; in au_close()
258 while (dchain != (token_t *)0) { in au_close()
259 (void) memcpy(adr.adr_now, dchain->tt_data, dchain->tt_size); in au_close()
260 adr.adr_now += dchain->tt_size; in au_close()
261 record = dchain; in au_close()
[all …]
/illumos-gate/usr/src/uts/common/c2/
H A Daudit_io.c114 if ((dchain = (token_t *)*d) == (token_t *)NULL) in au_close()
125 au_close_defer(dchain, flag, e_type, e_mod, e_time); in au_close()
128 au_close_time(kctx, dchain, flag, e_type, e_mod, e_time); in au_close()
147 au_toss_token(dchain); in au_close_defer()
154 au_toss_token(dchain); in au_close_defer()
159 attr->audi_ad = dchain; in au_close_defer()
242 ASSERT(dchain != NULL); in au_close_time()
246 au_toss_token(dchain); in au_close_time()
263 au_toss_token(dchain); in au_close_time()
269 byte_count = au_token_size(dchain); in au_close_time()
[all …]
/illumos-gate/usr/src/cmd/ls/
H A Dls.c213 struct dchain { struct
217 struct dchain *dc_next; /* next directory in the chain */ argument
220 static struct dchain *dfirst; /* start of the dir chain */
221 static struct dchain *cdfirst; /* start of the current dir chain */
222 static struct dchain *dtemp; /* temporary - used for linking */
1136 struct dchain *dp; in pdirectory()
1176 dp = malloc(sizeof (struct dchain)); in pdirectory()