HomeSort by relevance Sort by last modified time
    Searched refs:read_page (Results 1 - 25 of 26) sorted by null

1 2

  /external/squashfs-tools/kernel/fs/squashfs/
squashfs_fs_sb.h 59 struct squashfs_cache *read_page; member in struct:squashfs_sb_info
super.c 201 /* Allocate read_page block */
202 msblk->read_page = squashfs_cache_init("data", 1, msblk->block_size);
203 if (msblk->read_page == NULL) {
204 ERROR("Failed to allocate read_page block\n");
282 squashfs_cache_delete(msblk->read_page);
331 squashfs_cache_delete(sbi->read_page);
cache.c 390 return squashfs_cache_get(sb, msblk->read_page, start_block, length);
  /external/squashfs-tools/kernel/include/linux/
squashfs_fs_sb.h 62 char *read_page; member in struct:squashfs_sb_info
  /external/squashfs-tools/kernel-2.4/include/linux/
squashfs_fs_sb.h 59 char *read_page; member in struct:squashfs_sb_info
  /external/u-boot/drivers/mtd/nand/
mxs_nand_spl.c 153 ret = nand_chip.ecc.read_page(mtd, chip, buf, 1, page);
155 printf("read_page failed %d\n", ret);
nand_base.c     [all...]
atmel_nand.c 928 nand->ecc.read_page = NULL;
942 nand->ecc.read_page = atmel_nand_pmecc_read_page;
1155 nand->ecc.read_page = atmel_nand_read_page;
1192 nand->ecc.read_page = NULL;
    [all...]
zynq_nand.c 1160 nand_chip->ecc.read_page = zynq_nand_read_page_raw_nooob;
    [all...]
fsmc_nand.c 488 nand->ecc.read_page = fsmc_read_page_hwecc;
lpc32xx_nand_mlc.c 564 lpc32xx_chip.ecc.read_page = lpc32xx_read_page_hwecc;
lpc32xx_nand_slc.c 558 lpc32xx_chip->ecc.read_page = lpc32xx_read_page_hwecc;
mxs_nand.c 866 * ecc.read_page or ecc.read_page_raw function. Thus, the fact that MTD wants an
    [all...]
omap_gpmc.c 825 nand->ecc.read_page = omap_read_page_bch;
858 nand->ecc.read_page = omap_read_page_bch;
davinci_nand.c 783 nand->ecc.read_page = nand_davinci_read_page_hwecc;
fsl_elbc_nand.c 724 nand->ecc.read_page = fsl_elbc_read_page;
vf610_nfc.c 724 chip->ecc.read_page = vf610_nfc_read_page;
sunxi_nand.c     [all...]
fsl_ifc_nand.c 948 nand->ecc.read_page = fsl_ifc_read_page;
tegra_nand.c 941 nand->ecc.read_page = nand_read_page_hwecc;
arasan_nfc.c     [all...]
denali.c 375 * This is suitable for the return value of the ->read_page() callback.
    [all...]
mxc_nand.c 1186 this->ecc.read_page = mxc_nand_read_page_syndrome;
    [all...]
  /external/squashfs-tools/kernel-2.4/fs/squashfs/
inode.c 1038 /* Allocate read_page block */
1039 if (!(msblk->read_page = kmalloc(sblk->block_size, GFP_KERNEL))) {
1040 ERROR("Failed to allocate read_page block\n");
1113 kfree(msblk->read_page);
    [all...]
  /external/u-boot/include/linux/mtd/
rawnand.h 571 * @read_page: function to read a page according to the ECC generator
575 * returns same as read_page()
605 int (*read_page)(struct mtd_info *mtd, struct nand_chip *chip, member in struct:nand_ecc_ctrl
    [all...]

Completed in 375 milliseconds

1 2