Home | History | Annotate | Download | only in include

Lines Matching refs:filename

19 /* Read data from [filename].  Store the size of returned data in [size].
23 uint8_t* ReadFile(const char* filename, uint64_t* size);
26 * filename to read.
29 char* ReadFileString(char* dest, int size, const char* filename);
34 int ReadFileInt(const char* filename, unsigned* value);
39 int ReadFileBit(const char* filename, int bitmask);
41 /* Writes [size] bytes of [data] to [filename].
44 int WriteFile(const char* filename, const void *data, uint64_t size);
49 * @param filename Name of file to read from
56 int vb2_read_file(const char *filename, uint8_t **data_ptr, uint32_t *size_ptr);
61 * @param filename Name of file to write to
66 int vb2_write_file(const char *filename, const void *buf, uint32_t size);
73 * @param filename Name of file to write to
77 int vb2_write_object(const char *filename, const void *buf);