Home
last modified time | relevance | path

Searched refs:access (Results 1 – 14 of 14) sorted by relevance

/libuv/src/win/
H A Dprocess-stdio.c145 DWORD access) { in uv__create_nul_handle() argument
154 access, in uv__create_nul_handle()
219 DWORD access = (i == 0) ? FILE_GENERIC_READ : in uv__stdio_create() local
222 err = uv__create_nul_handle(&nul, access); in uv__stdio_create()
H A Dfs.c401 DWORD access; in fs__open() local
438 access = FILE_GENERIC_READ; in fs__open()
441 access = FILE_GENERIC_WRITE; in fs__open()
451 access &= ~FILE_WRITE_DATA; in fs__open()
452 access |= FILE_APPEND_DATA; in fs__open()
503 access |= DELETE; in fs__open()
544 if (access & FILE_APPEND_DATA) { in fs__open()
545 if (access & FILE_WRITE_DATA) { in fs__open()
546 access &= ~FILE_APPEND_DATA; in fs__open()
569 access, in fs__open()
[all …]
H A Dpipe.c210 HANDLE* pipeHandle_ptr, DWORD access, in uv__pipe_server() argument
219 access | FILE_FLAG_FIRST_PIPE_INSTANCE, in uv__pipe_server()
2424 FILE_ACCESS_INFORMATION access; in uv_pipe_open() local
2462 &access, in uv_pipe_open()
2463 sizeof(access), in uv_pipe_open()
2469 if (!(access.AccessFlags & FILE_WRITE_DATA) || in uv_pipe_open()
2470 !(access.AccessFlags & FILE_READ_DATA)) { in uv_pipe_open()
2475 if (access.AccessFlags & FILE_WRITE_DATA) in uv_pipe_open()
2477 if (access.AccessFlags & FILE_READ_DATA) in uv_pipe_open()
H A Dutil.c1381 static int uv__get_handle(uv_pid_t pid, int access, HANDLE* handle) { in uv__get_handle() argument
1387 *handle = OpenProcess(access, FALSE, pid); in uv__get_handle()
H A Dwinapi.h4539 # define CTL_CODE(device_type, function, method, access) \ argument
4540 (((device_type) << 16) | ((access) << 14) | ((function) << 2) | (method))
/libuv/docs/src/
H A Dfs.rst403 could access the file.
420 Equivalent to :man:`access(2)` on Unix. Windows uses ``GetFileAttributesW()``.
623 Use a memory file mapping to access the file. When using this flag, the
631 Do not update the file access time when the file is read.
670 Open the file for read-only access.
674 Open the file for read-write access.
717 successfully for write access, its length shall be truncated to zero.
721 Open the file for write-only access.
H A Dmigration_010_100.rst225 order to get access to the file descriptor of a TCP handle, for example.
/libuv/docs/src/guide/
H A Dutilities.rst198 to access the underlying file descriptors and provide functions that process
200 will not allow such access, providing only a standard blocking function which
348 ``libhello.dylib``. Then we get access to the ``initialize`` function using
H A Dthreads.rst121 Read-write locks are a more granular access mechanism. Two readers can access
H A Dbasics.rst7 networking support, asynchronous file system access, child processes and more.
/libuv/
H A DLICENSE-docs120 public may access the material from a place and at a time
H A DChangeLog457 * unix,fs: make no_pwritev access thread-safe (Santiago Gimeno)
1412 * win,fs: avoid implicit access to _doserrno (Jameson Nash)
2979 * pipe: allow access from other users (Bartosz Sosnowski)
3584 * test: fix OOB buffer access (Saúl Ibarra Corretgé)
5372 * fsevents: fix invalid memory access (huxingyi)
5395 * fs-event: fix invalid memory access (huxingyi)
5540 * unix: fix non-synchronized access in signal.c (Ben Noordhuis)
5585 * unix: fix non-synchronized access in signal.c (Ben Noordhuis)
/libuv/src/unix/
H A Dcore.c1860 if (access(abspath, X_OK) == 0) { in uv__search_path()
H A Dfs.c1708 X(ACCESS, access(req->path, req->flags)); in uv__fs_work()

Completed in 111 milliseconds