HomeSort by: relevance | last modified time | path
    Searched refs:UV_FS_O_WRONLY (Results 1 - 9 of 9) sorted by relevancy

  /src/external/mit/libuv/dist/test/
test-fs-open-flags.c 91 UV_FS_O_TRUNC | UV_FS_O_CREAT | UV_FS_O_WRONLY, S_IWUSR | S_IRUSR, NULL);
105 UV_FS_O_TRUNC | UV_FS_O_CREAT | UV_FS_O_WRONLY, S_IWUSR | S_IRUSR, NULL);
317 flags = add_flags | UV_FS_O_TRUNC | UV_FS_O_CREAT | UV_FS_O_WRONLY;
327 flags = add_flags | UV_FS_O_TRUNC | UV_FS_O_CREAT | UV_FS_O_WRONLY |
355 flags = add_flags | UV_FS_O_APPEND | UV_FS_O_CREAT | UV_FS_O_WRONLY;
366 flags = add_flags | UV_FS_O_APPEND | UV_FS_O_CREAT | UV_FS_O_WRONLY |
375 flags = add_flags | UV_FS_O_APPEND | UV_FS_O_CREAT | UV_FS_O_WRONLY |
test-metrics.c 220 UV_FS_O_WRONLY | UV_FS_O_CREAT, S_IRUSR | S_IWUSR,
332 &open_req, "test_file", UV_FS_O_WRONLY | UV_FS_O_CREAT,
test-fs-readdir.c 363 UV_FS_O_WRONLY | UV_FS_O_CREAT, S_IWUSR | S_IRUSR,
377 UV_FS_O_WRONLY | UV_FS_O_CREAT, S_IWUSR | S_IRUSR,
test-fs-copyfile.c 84 UV_FS_O_WRONLY | UV_FS_O_CREAT | UV_FS_O_TRUNC,
test-fs.c 965 r = uv_fs_open(loop, &open_req1, "test_file", UV_FS_O_WRONLY | UV_FS_O_CREAT,
1029 UV_FS_O_WRONLY | UV_FS_O_CREAT | add_flags, S_IWUSR | S_IRUSR,
1120 r = uv_fs_open(NULL, &open_req_noclose, "test_dir/file", UV_FS_O_WRONLY | UV_FS_O_CREAT, S_IWUSR | S_IRUSR, NULL);
1164 UV_FS_O_WRONLY | UV_FS_O_CREAT | add_flags, S_IWUSR | S_IRUSR,
1211 UV_FS_O_WRONLY | UV_FS_O_CREAT,
1220 UV_FS_O_WRONLY | UV_FS_O_CREAT,
1301 f = open("test_file", UV_FS_O_WRONLY | UV_FS_O_CREAT, S_IWUSR | S_IRUSR);
1316 r = uv_fs_open(NULL, &open_req2, "test_file2", UV_FS_O_WRONLY | UV_FS_O_CREAT,
2529 UV_FS_O_WRONLY | UV_FS_O_CREAT,
2538 UV_FS_O_WRONLY | UV_FS_O_CREAT
    [all...]
test-fs-event.c 73 r = uv_fs_open(NULL, &req, name, UV_FS_O_WRONLY | UV_FS_O_CREAT,
  /src/external/mit/libuv/dist/include/uv/
unix.h 500 # define UV_FS_O_WRONLY O_WRONLY
502 # define UV_FS_O_WRONLY 0
win.h 686 #define UV_FS_O_WRONLY _O_WRONLY
  /src/external/mit/libuv/dist/src/win/
fs.c 429 if ((flags & (UV_FS_O_RDONLY | UV_FS_O_WRONLY | UV_FS_O_RDWR)) ==
430 UV_FS_O_WRONLY) {
432 flags = (flags & ~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)) {
453 case UV_FS_O_WRONLY:
642 DWORD flProtect = (fd_info.flags & (UV_FS_O_RDONLY | UV_FS_O_WRONLY |
721 (UV_FS_O_RDONLY | UV_FS_O_WRONLY | UV_FS_O_RDWR);
729 if (rw_flags == UV_FS_O_WRONLY) {
902 (UV_FS_O_RDONLY | UV_FS_O_WRONLY | UV_FS_O_RDWR)
    [all...]

Completed in 20 milliseconds