OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:UV_FS_O_RDONLY
(Results
1 - 6
of
6
) sorted by relevancy
/src/external/mit/libuv/dist/test/
test-fs-open-flags.c
181
r = uv_fs_open(NULL, &open_req, file,
UV_FS_O_RDONLY
, S_IWUSR | S_IRUSR, NULL);
277
flags = add_flags |
UV_FS_O_RDONLY
;
287
flags = add_flags |
UV_FS_O_RDONLY
| UV_FS_O_SYNC;
test-fs.c
737
r = uv_fs_open(NULL, &req, "does_not_exist",
UV_FS_O_RDONLY
, 0, NULL);
742
r = uv_fs_open(loop, &req, "does_not_exist",
UV_FS_O_RDONLY
, 0,
766
r = uv_fs_open(NULL, &req, name,
UV_FS_O_RDONLY
, 0, NULL);
771
r = uv_fs_open(loop, &req, name,
UV_FS_O_RDONLY
, 0, open_nametoolong_cb);
806
r = uv_fs_open(NULL, &req, "test_symlink",
UV_FS_O_RDONLY
, 0, NULL);
811
r = uv_fs_open(loop, &req, "test_symlink",
UV_FS_O_RDONLY
, 0, open_loop_cb);
997
r = uv_fs_open(loop, &open_req1, "test_file2",
UV_FS_O_RDONLY
, 0, open_cb);
1074
r = uv_fs_open(NULL, &open_req1, "test_file2",
UV_FS_O_RDONLY
| add_flags, 0,
1460
fd = uv_fs_open(NULL, &req, mkstemp_req1.path,
UV_FS_O_RDONLY
, 0, NULL);
3243
r = uv_fs_open(NULL, &req, path,
UV_FS_O_RDONLY
, 0, NULL)
[
all
...]
test-poll.c
646
fd[0] = _open("test/fixtures/empty_file",
UV_FS_O_RDONLY
);
648
fd[0] = open(".",
UV_FS_O_RDONLY
);
658
fd[0] = open("test/fixtures/empty_file",
UV_FS_O_RDONLY
);
/src/external/mit/libuv/dist/include/uv/
unix.h
475
# define
UV_FS_O_RDONLY
O_RDONLY
477
# define
UV_FS_O_RDONLY
0
win.h
680
#define
UV_FS_O_RDONLY
_O_RDONLY
/src/external/mit/libuv/dist/src/win/
fs.c
429
if ((flags & (
UV_FS_O_RDONLY
| UV_FS_O_WRONLY | UV_FS_O_RDWR)) ==
438
flags &= ~(
UV_FS_O_RDONLY
| UV_FS_O_WRONLY | UV_FS_O_RDWR);
449
switch (flags & (
UV_FS_O_RDONLY
| UV_FS_O_WRONLY | UV_FS_O_RDWR)) {
450
case
UV_FS_O_RDONLY
:
642
DWORD flProtect = (fd_info.flags & (
UV_FS_O_RDONLY
| UV_FS_O_WRONLY |
643
UV_FS_O_RDWR)) ==
UV_FS_O_RDONLY
? PAGE_READONLY : PAGE_READWRITE;
721
(
UV_FS_O_RDONLY
| UV_FS_O_WRONLY | UV_FS_O_RDWR);
902
(
UV_FS_O_RDONLY
| UV_FS_O_WRONLY | UV_FS_O_RDWR);
911
if (rw_flags ==
UV_FS_O_RDONLY
) {
2353
DWORD flProtect = (fd_info.flags & (
UV_FS_O_RDONLY
| UV_FS_O_WRONLY
[
all
...]
Completed in 57 milliseconds
Indexes created Mon Aug 31 00:24:02 UTC 2026