Home
last modified time | relevance | path

Searched refs:readfunc (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A Dembedded_interpreter.py56 def readfunc(prompt):
91 readfunc=readfunc_stdio,
102 readfunc=readfunc_stdio,
109 readfunc=readfunc,
54 def readfunc(prompt): global() function
/freebsd/sys/ufs/ffs/
H A Dffs_subr.c154 int (*readfunc)(void *devfd, off_t loc, void **bufp, int size)) in ffs_sbget()
168 flags | UFS_ALTSBLK, readfunc)) != 0) { in ffs_sbget()
176 flags, readfunc)) == 0) { in ffs_sbget()
219 error = (*readfunc)(devfd, in ffs_sbget()
252 int (*readfunc)(void *devfd, off_t loc, void **bufp, int size)) in readsuper()
258 error = (*readfunc)(devfd, sblockloc, (void **)fsp, SBLOCKSIZE); in readsuper()
801 int (*readfunc)(void *devfd, off_t loc, void **bufp, int size)) in ffs_sbsearch()
820 error = ffs_sbget(devfd, fsp, UFS_STDSB, flags, filltype, readfunc); in ffs_sbsearch()
836 if (ffs_sbget(devfd, fsp, UFS_STDSB, flags, filltype, readfunc) == 0) in ffs_sbsearch()
846 readfunc) == 0) { in ffs_sbsearch()
[all …]
/freebsd/stand/libsa/geli/
H A Dgeliboot.h79 struct geli_dev *geli_taste(geli_readfunc readfunc, void *readpriv,
H A Dgeliboot.c125 geli_taste(geli_readfunc readfunc, void *readpriv, daddr_t lastsector, in geli_taste() argument
159 error = readfunc(NULL, readpriv, alignsector, buf, DEV_GELIBOOT_BSIZE); in geli_taste()
/freebsd/stand/libsa/
H A Dufs.c150 int (*readfunc)(void *devfd, off_t loc, void **bufp, int size));