Home
last modified time | relevance | path

Searched refs:fs_open (Results 1 – 6 of 6) sorted by relevance

/reactos/sdk/lib/fslib/vfatlib/check/
H A Dio.h35 void fs_open(char *path, int rw);
37 NTSTATUS fs_open(PUNICODE_STRING DriveRoot, int read_write);
H A Dio.c163 void fs_open(char *path, int rw) in fs_open() function
173 NTSTATUS fs_open(PUNICODE_STRING DriveRoot, int read_write) in fs_open() function
/reactos/drivers/network/tcpip/lwip/src/include/lwip/apps/
H A Dfs.h89 err_t fs_open(struct fs_file *file, const char *name);
/reactos/drivers/network/tcpip/lwip/src/apps/http/
H A Dfs.c43 fs_open(struct fs_file *file, const char *name) in fs_open() function
H A Dhttpd.c1672 if (fs_open(&hs->file_handle, uri1) == ERR_OK) {
1674 } else if (fs_open(&hs->file_handle, uri2) == ERR_OK) {
1676 } else if (fs_open(&hs->file_handle, uri3) == ERR_OK) {
1702 err = fs_open(&hs->file_handle, *uri);
1706 err = fs_open(&hs->file_handle, *uri);
1710 err = fs_open(&hs->file_handle, *uri);
2248 err = fs_open(&hs->file_handle, file_name);
2291 err = fs_open(&hs->file_handle, uri);
/reactos/sdk/lib/fslib/vfatlib/
H A Dvfatlib.c417 Status = fs_open(DriveRoot, FsCheckFlags & FSCHECK_READ_WRITE); in VfatChkdsk()