Searched refs:fs_file (Results 1 - 5 of 5) sorted by relevance

/barrelfish-master/include/lwip2/lwip/apps/
H A Dfs.h56 struct fs_file { struct
78 err_t fs_open(struct fs_file *file, const char *name);
79 void fs_close(struct fs_file *file);
82 int fs_read_async(struct fs_file *file, char *buffer, int count, fs_wait_cb callback_fn, void *callback_arg);
84 int fs_read(struct fs_file *file, char *buffer, int count);
88 int fs_is_file_ready(struct fs_file *file, fs_wait_cb callback_fn, void *callback_arg);
90 int fs_bytes_left(struct fs_file *file);
94 void *fs_state_init(struct fs_file *file, const char *name);
96 void fs_state_free(struct fs_file *file, void *state);
/barrelfish-master/lib/lwip2/src/apps/httpd/
H A Dfs.c49 int fs_open_custom(struct fs_file *file, const char *name);
50 void fs_close_custom(struct fs_file *file);
52 u8_t fs_canread_custom(struct fs_file *file);
53 u8_t fs_wait_read_custom(struct fs_file *file, fs_wait_cb callback_fn, void *callback_arg);
54 int fs_read_async_custom(struct fs_file *file, char *buffer, int count, fs_wait_cb callback_fn, void *callback_arg);
56 int fs_read_custom(struct fs_file *file, char *buffer, int count);
62 fs_open(struct fs_file *file, const char *name)
101 fs_close(struct fs_file *file)
117 fs_read_async(struct fs_file *file, char *buffer, int count, fs_wait_cb callback_fn, void *callback_arg)
120 fs_read(struct fs_file *fil
[all...]
H A Dhttpd.c234 struct fs_file file_handle;
235 struct fs_file *handle;
300 static err_t http_init_file(struct http_state *hs, struct fs_file *file, int is_09, const char *uri, u8_t tag_check, char* params);
1626 static struct fs_file *
2085 struct fs_file *file = NULL;
2228 http_init_file(struct http_state *hs, struct fs_file *file, int is_09, const char *uri,
/barrelfish-master/include/
H A Dfstab.h44 * if type is "rq", then use concatenation of fs_file and "quotas" to locate
58 char *fs_file; /* file system path prefix */ member in struct:fstab
/barrelfish-master/lib/libc/gen/
H A Dfstab.c95 if (_fs_fstab.fs_file != NULL && strcmp(_fs_fstab.fs_file, "/") != 0)
129 _fs_fstab.fs_file = strsep(&p, ":\n");
159 _fs_fstab.fs_file = cp;
160 if (_fs_fstab.fs_file == NULL)
162 if (strunvis(_fs_fstab.fs_file, _fs_fstab.fs_file) < 0)
249 if (!strcmp(_fs_fstab.fs_file, name))

Completed in 60 milliseconds