Home
last modified time | relevance | path

Searched refs:fi_memp (Results 1 – 12 of 12) sorted by relevance

/titanic_50/usr/src/common/fs/
H A Dufsops.c112 filep->fi_memp = 0; /* cached read */ in openi()
117 dp = (struct dinode *)filep->fi_memp; in openi()
187 filep->fi_memp = 0; in find()
190 len = strlen(filep->fi_memp); in find()
191 if (filep->fi_memp[0] == '/') in find()
199 bcopy(filep->fi_memp, lpathp, len); in find()
266 filep->fi_memp = 0; in sbmap()
269 bap = (daddr32_t *)filep->fi_memp; in sbmap()
346 filep->fi_memp = 0; in readdir()
351 dp = (struct direct *)(filep->fi_memp + off); in readdir()
[all …]
H A Dhsfs.c168 filep->fi_memp = 0; in opendir()
307 filep->fi_memp = 0; in readdir()
340 filep->fi_memp = 0; in getblock()
347 filep->fi_memp += off; in getblock()
387 bcopy(filep->fi_memp, buf, (uint_t)j); in bhsfs_read()
389 filep->fi_memp += j; in bhsfs_read()
421 head->fi_memp = head->fi_buf; in bhsfs_mountroot()
505 filep->fi_memp = 0; in bhsfs_open()
643 char *bufp = (char *)(filep->fi_memp + offset); in parse_dir()
732 caddr_t save_ma = filep->fi_memp; in parse_dir()
[all …]
H A Ddecompress.c129 filebytes = (unsigned char *)filep->fi_memp; in cf_check_compressed()
234 smemp = filep->fi_memp; in cf_read()
235 filep->fi_memp = NULL; in cf_read()
241 zsp->next_in = (unsigned char *)filep->fi_memp; in cf_read()
243 filep->fi_memp = smemp; in cf_read()
H A Dpcfs.c131 head->fi_memp = (caddr_t)pcfsp->f_sector; in bpcfs_mountroot()
179 head->fi_memp = cluster_cache; in bpcfs_mountroot()
605 head->fi_memp = head->fi_buf; in readblock()
/titanic_50/usr/src/stand/lib/fs/ufs/
H A Dufsops.c130 filep->fi_memp = filep->fi_buf; in openi()
133 if ((filep->fi_memp = get_bcache(filep)) == NULL) { in openi()
140 dp = (struct dinode *)filep->fi_memp; in openi()
211 if ((filep->fi_memp = in find()
217 len = strlen(filep->fi_memp); in find()
218 if (filep->fi_memp[0] == '/') in find()
226 bcopy(filep->fi_memp, lpathp, len); in find()
300 if ((filep->fi_memp = get_bcache(filep)) == NULL) { in sbmap()
305 b.blk[j] = filep->fi_memp; in sbmap()
430 if ((filep->fi_memp = get_bcache(filep)) == NULL) { in readdir()
[all …]
H A Dlufsboot.c414 logfp->fi_memp = logfp->fi_buf; in lufs_read_log()
433 st = (sect_trailer_t *)(logfp->fi_memp + in lufs_read_log()
475 struct fs *sb = (struct fs *)filep->fi_memp; in lufs_boot_init()
506 logfp->fi_memp = logfp->fi_buf; in lufs_boot_init()
519 logfp->fi_memp = (caddr_t)eb; in lufs_boot_init()
533 logfp->fi_memp = (caddr_t)&odi; in lufs_boot_init()
538 logfp->fi_memp = (caddr_t)&odi; in lufs_boot_init()
1050 fp->fi_memp + MAX(l->l_mof - bof, 0), in lufs_merge_deltas()
1060 bzero(fp->fi_memp + MAX(l->l_mof - bof, 0), in lufs_merge_deltas()
/titanic_50/usr/src/stand/lib/fs/hsfs/
H A Dhsfsops.c135 if ((filep->fi_memp = get_bcache(filep)) == NULL) { in opendir()
301 if ((filep->fi_memp = get_bcache(filep)) == 0) in readdir()
330 p = filep->fi_memp; in getblock()
353 filep->fi_memp = filep->fi_buf; in getblock()
361 filep->fi_memp = buf; in getblock()
385 p = &filep->fi_memp[off]; in getblock()
387 filep->fi_memp = p; in getblock()
434 bcopy(filep->fi_memp, buf, (unsigned)j); in boot_hsfs_read()
436 filep->fi_memp += j; in boot_hsfs_read()
496 head->fi_memp = head->fi_buf; in boot_hsfs_mountroot()
[all …]
/titanic_50/usr/src/cmd/boot/installgrub/
H A Dpcfs_glue.c95 if (filep->fi_memp == NULL) { in diskread()
96 filep->fi_memp = malloc(filep->fi_count); in diskread()
98 if (filep->fi_memp == NULL) { in diskread()
103 ret = pread(dev_fd, filep->fi_memp, filep->fi_count, diskloc); in diskread()
/titanic_50/usr/src/uts/common/krtld/
H A Dbootrd.c151 if (filep->fi_memp) { in diskread()
152 bcopy(diskloc, filep->fi_memp, filep->fi_count); in diskread()
155 filep->fi_memp = diskloc; in diskread()
/titanic_50/usr/src/stand/lib/fs/common/
H A Ddiskread.c72 if ((err = prom_read(devp->di_dcookie, filep->fi_memp, filep->fi_count, in diskread()
H A Dcache.c539 if (fp->fi_memp = bkmem_alloc(x_len = fp->fi_count)) { in set_bcache()
549 bkmem_free(fp->fi_memp, x_len); in set_bcache()
562 bcp->bc_hdr.data = (void *)fp->fi_memp; in set_bcache()
/titanic_50/usr/src/uts/common/sys/
H A Dfilep.h69 caddr_t fi_memp; member