Home
last modified time | relevance | path

Searched refs:bufszp (Results 1 – 2 of 2) sorted by relevance

/xnu-12377.41.6/bsd/sys/
H A Dimageboot.h46 int imageboot_read_file_pageable(const char *path, void **bufp, size_t *bufszp, bool no_softlim…
47 int imageboot_read_file(const char *path, void **bufp, size_t *bufszp, off_t *fsizep);
48 int imageboot_read_file_from_offset(const char *path, off_t offset, void **bufp, size_t *bufszp
/xnu-12377.41.6/bsd/kern/
H A Dimageboot.c577 …har *path, const off_t offset, const bool pageable, void **bufp, size_t *bufszp, off_t *fsizep, bo… in imageboot_read_file_internal() argument
634 maxsize = *bufszp; in imageboot_read_file_internal()
747 *bufszp = (size_t)fsize; in imageboot_read_file_internal()
754 imageboot_read_file_pageable(const char *path, void **bufp, size_t *bufszp, bool no_softlimit) in imageboot_read_file_pageable() argument
756 return imageboot_read_file_internal(path, 0, true, bufp, bufszp, NULL, no_softlimit); in imageboot_read_file_pageable()
760 imageboot_read_file_from_offset(const char *path, const off_t offset, void **bufp, size_t *bufszp) in imageboot_read_file_from_offset() argument
762 …return imageboot_read_file_internal(path, offset, false, bufp, bufszp, NULL, /* no_softlimit */ fa… in imageboot_read_file_from_offset()
766 imageboot_read_file(const char *path, void **bufp, size_t *bufszp, off_t *fsizep) in imageboot_read_file() argument
768 …return imageboot_read_file_internal(path, 0, false, bufp, bufszp, fsizep, /* no_softlimit */ false… in imageboot_read_file()