Searched refs:nbyte (Results 1 – 1 of 1) sorted by relevance
/device/linaro/bootloader/edk2/StdLib/LibC/Uefi/ |
D | SysCalls.c | 1184 read (int fildes, void *buf, size_t nbyte) in read() argument 1190 BufSize = (ssize_t)nbyte; in read() 1197 BufSize = IIO->Read(filp, nbyte, buf); in read() 1200 BufSize = filp->f_ops->fo_read(filp, &filp->f_offset, nbyte, buf); in read() 1248 write (int fd, const void *buf, size_t nbyte) in write() argument 1254 BufSize = (ssize_t)nbyte; in write() 1264 BufSize = IIO->Write(filp, buf, nbyte); in write() 1268 BufSize = filp->f_ops->fo_write(filp, &filp->f_offset, nbyte, buf); in write()
|