Go to the source code of this file.
|
int | fioInit (void) |
|
void | fioExit (void) |
|
int | fioOpen (const char *fname, int mode) |
|
int | fioClose (int fd) |
|
int | fioRead (int fd, void *buff, int buff_size) |
|
int | fioWrite (int fd, const void *buff, int buff_size) |
|
int | fioLseek (int fd, int offset, int whence) |
|
int | fioMkdir (const char *dirname) |
|
int | fioPutc (int fd, int c) |
|
int | fioGetc (int fd) |
|
int | fioGets (int fd, char *buff, int n) |
|
void | fioSetBlockMode (int blocking) |
|
int | fioSync (int mode, int *retVal) |
|
int | fioIoctl (int fd, int request, void *data) |
|
int | fioDopen (const char *name) |
|
int | fioDclose (int fd) |
|
int | fioDread (int fd, io_dirent_t *buf) |
|
int | fioGetstat (const char *name, io_stat_t *buf) |
|
int | fioChstat (const char *name, io_stat_t *buf, unsigned int cbit) |
|
int | fioRemove (const char *name) |
|
int | fioFormat (const char *name) |
|
int | fioRmdir (const char *dirname) |
|
EE FILE IO handling
Definition in file fileio.h.
◆ EOF
◆ FIO_COMPLETE
◆ FIO_INCOMPLETE
◆ FIO_NOWAIT
◆ FIO_PATH_MAX
◆ FIO_WAIT
◆ fioChstat()
int fioChstat |
( |
const char * |
name, |
|
|
io_stat_t * |
buf, |
|
|
unsigned int |
cbit |
|
) |
| |
◆ fioClose()
◆ fioDclose()
◆ fioDopen()
int fioDopen |
( |
const char * |
name | ) |
|
◆ fioDread()
◆ fioExit()
◆ fioFormat()
int fioFormat |
( |
const char * |
name | ) |
|
◆ fioGetc()
◆ fioGets()
int fioGets |
( |
int |
fd, |
|
|
char * |
buff, |
|
|
int |
n |
|
) |
| |
◆ fioGetstat()
int fioGetstat |
( |
const char * |
name, |
|
|
io_stat_t * |
buf |
|
) |
| |
◆ fioInit()
◆ fioIoctl()
int fioIoctl |
( |
int |
fd, |
|
|
int |
request, |
|
|
void * |
data |
|
) |
| |
◆ fioLseek()
int fioLseek |
( |
int |
fd, |
|
|
int |
offset, |
|
|
int |
whence |
|
) |
| |
◆ fioMkdir()
int fioMkdir |
( |
const char * |
dirname | ) |
|
◆ fioOpen()
int fioOpen |
( |
const char * |
fname, |
|
|
int |
mode |
|
) |
| |
◆ fioPutc()
int fioPutc |
( |
int |
fd, |
|
|
int |
c |
|
) |
| |
◆ fioRead()
int fioRead |
( |
int |
fd, |
|
|
void * |
buff, |
|
|
int |
buff_size |
|
) |
| |
◆ fioRemove()
int fioRemove |
( |
const char * |
name | ) |
|
◆ fioRmdir()
int fioRmdir |
( |
const char * |
dirname | ) |
|
◆ fioSetBlockMode()
void fioSetBlockMode |
( |
int |
blocking | ) |
|
◆ fioSync()
int fioSync |
( |
int |
mode, |
|
|
int * |
retVal |
|
) |
| |
◆ fioWrite()
int fioWrite |
( |
int |
fd, |
|
|
const void * |
buff, |
|
|
int |
buff_size |
|
) |
| |