Searched refs:access (Results 1 – 14 of 14) sorted by relevance
/libuv/src/win/ |
H A D | process-stdio.c | 145 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 D | fs.c | 401 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 D | pipe.c | 210 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 D | util.c | 1381 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 D | winapi.h | 4546 # define CTL_CODE(device_type, function, method, access) \ argument 4547 (((device_type) << 16) | ((access) << 14) | ((function) << 2) | (method))
|
/libuv/docs/src/ |
H A D | fs.rst | 403 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 D | migration_010_100.rst | 225 order to get access to the file descriptor of a TCP handle, for example.
|
/libuv/docs/src/guide/ |
H A D | utilities.rst | 198 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 D | threads.rst | 121 Read-write locks are a more granular access mechanism. Two readers can access
|
H A D | basics.rst | 7 networking support, asynchronous file system access, child processes and more.
|
/libuv/ |
H A D | LICENSE-docs | 120 public may access the material from a place and at a time
|
H A D | ChangeLog | 506 * unix,fs: make no_pwritev access thread-safe (Santiago Gimeno) 1461 * win,fs: avoid implicit access to _doserrno (Jameson Nash) 3028 * pipe: allow access from other users (Bartosz Sosnowski) 3633 * test: fix OOB buffer access (Saúl Ibarra Corretgé) 5421 * fsevents: fix invalid memory access (huxingyi) 5444 * fs-event: fix invalid memory access (huxingyi) 5589 * unix: fix non-synchronized access in signal.c (Ben Noordhuis) 5634 * unix: fix non-synchronized access in signal.c (Ben Noordhuis)
|
/libuv/src/unix/ |
H A D | core.c | 1860 if (access(abspath, X_OK) == 0) { in uv__search_path()
|
H A D | fs.c | 1713 X(ACCESS, access(req->path, req->flags)); in uv__fs_work()
|
Completed in 67 milliseconds