fileio::file is only used within OpenOCD.
 
Symbols
loading...
Files
loading...

fileio::file field

Syntax

FILE *file;

References

LocationReferrerText
fileio.c:28
FILE *file;
fileio.c:33fileio_close_local()
int retval = fclose(fileio->file);
fileio.c:78fileio_open_local()
fileio->file = open_file_from_path(fileio->url, file_access);
fileio.c:79fileio_open_local()
if (!fileio->file) {
fileio.c:92fileio_open_local()
result = fseek(fileio->file, 0, SEEK_END);
fileio.c:94fileio_open_local()
file_size = ftell(fileio->file);
fileio.c:96fileio_open_local()
result2 = fseek(fileio->file, 0, SEEK_SET);
fileio.c:148fileio_feof()
return feof(fileio->file);
fileio.c:155fileio_seek()
retval = fseek(fileio->file, position, SEEK_SET);
fileio.c:170fileio_local_read()
retval = fread(buffer, 1, size, fileio->file);
fileio.c:200fileio_local_fgets()
if (!fgets(buffer, size, fileio->file))
fileio.c:216fileio_local_write()
retval = fwrite(buffer, 1, size, fileio->file);

Data Use

Functions writing fileio::file
Functions reading fileio::file
all items filtered out
fileio::file
Type of fileio::file
fileio::file
_iobuf
all items filtered out