Home
last modified time | relevance | path

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

/illumos-gate/usr/src/common/fs/
H A Dufsops.c191 filep->fi_memp = 0; in find()
270 filep->fi_memp = 0; in sbmap()
350 filep->fi_memp = 0; in readdir()
380 p = filep->fi_memp; in getblock()
410 filep->fi_memp = buf; in getblock()
423 p = &filep->fi_memp[off]; in getblock()
425 filep->fi_memp = p; in getblock()
445 p = filep->fi_memp; in getblock_noopt()
468 filep->fi_memp = NULL; in getblock_noopt()
478 filep->fi_memp = p; in getblock_noopt()
[all …]
H A Dhsfs.c166 filep->fi_memp = 0; in opendir()
306 filep->fi_memp = 0; in readdir()
339 filep->fi_memp = 0; in getblock()
346 filep->fi_memp += off; in getblock()
386 bcopy(filep->fi_memp, buf, (uint_t)j); in bhsfs_read()
388 filep->fi_memp += j; in bhsfs_read()
420 head->fi_memp = head->fi_buf; in bhsfs_mountroot()
504 filep->fi_memp = 0; in bhsfs_open()
731 caddr_t save_ma = filep->fi_memp; in parse_dir()
737 filep->fi_memp = 0; 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.c129 head->fi_memp = (caddr_t)pcfsp->f_sector; in bpcfs_mountroot()
177 head->fi_memp = cluster_cache; in bpcfs_mountroot()
603 head->fi_memp = head->fi_buf; in readblock()
/illumos-gate/usr/src/stand/lib/fs/ufs/
H A Dufsops.c131 filep->fi_memp = filep->fi_buf; in openi()
212 if ((filep->fi_memp = in find()
218 len = strlen(filep->fi_memp); in find()
219 if (filep->fi_memp[0] == '/') in find()
306 b.blk[j] = filep->fi_memp; in sbmap()
461 p = filep->fi_memp; in getblock()
500 filep->fi_memp = buf; in getblock()
531 p = &filep->fi_memp[off]; in getblock()
533 filep->fi_memp = p; in getblock()
579 filep->fi_memp += j; in boot_ufs_read()
[all …]
H A Dlufsboot.c412 logfp->fi_memp = logfp->fi_buf; in lufs_read_log()
431 st = (sect_trailer_t *)(logfp->fi_memp + in lufs_read_log()
473 struct fs *sb = (struct fs *)filep->fi_memp; in lufs_boot_init()
504 logfp->fi_memp = logfp->fi_buf; in lufs_boot_init()
517 logfp->fi_memp = (caddr_t)eb; in lufs_boot_init()
531 logfp->fi_memp = (caddr_t)&odi; in lufs_boot_init()
536 logfp->fi_memp = (caddr_t)&odi; in lufs_boot_init()
1048 fp->fi_memp + MAX(l->l_mof - bof, 0), in lufs_merge_deltas()
1058 bzero(fp->fi_memp + MAX(l->l_mof - bof, 0), in lufs_merge_deltas()
/illumos-gate/usr/src/stand/lib/fs/hsfs/
H A Dhsfsops.c330 p = filep->fi_memp; in getblock()
361 filep->fi_memp = buf; in getblock()
385 p = &filep->fi_memp[off]; in getblock()
387 filep->fi_memp = p; in getblock()
436 filep->fi_memp += j; in boot_hsfs_read()
496 head->fi_memp = head->fi_buf; in boot_hsfs_mountroot()
505 bufp = head->fi_memp; in boot_hsfs_mountroot()
685 filep->fi_memp = (caddr_t)0; in boot_hsfs_close()
836 filep->fi_memp = save_memp; in parse_dir()
846 filep->fi_memp = save_memp; in parse_dir()
[all …]
/illumos-gate/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()
/illumos-gate/usr/src/uts/common/krtld/
H A Dbootrd.c154 if (filep->fi_memp) { in diskread()
155 bcopy(diskloc, filep->fi_memp, filep->fi_count); in diskread()
158 filep->fi_memp = diskloc; in diskread()
H A Dbootrd_cpio.c197 tmpfile.fi_memp = NULL; in read_ramdisk()
202 return (tmpfile.fi_memp + first_block_offset); in read_ramdisk()
/illumos-gate/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()
/illumos-gate/usr/src/uts/common/sys/
H A Dfilep.h67 caddr_t fi_memp; member