Searched refs:user (Results 1 – 25 of 39) sorted by relevance
12
/libuv/ |
H A D | .gitignore | 57 *.vcproj*.user 60 *.vcxproj.user
|
H A D | CONTRIBUTING.md | 92 $ git config --global user.name "J. Random User" 93 $ git config --global user.email "j.random.user@example.com"
|
/libuv/docs/src/ |
H A D | poll.rst | 18 readable or writable even when it isn't. The user should therefore always 25 The user should not close a file descriptor while it is being polled by an 97 reported and the user is free to ignore it, but it can help optimize the 101 with one of the `UV_E*` error codes (see :ref:`errors`). The user should 102 not close the socket while the handle is active. If the user does that 105 file handle and no further events will be reported. The user should
|
H A D | migration_010_100.rst | 18 and the user is responsible for allocating the memory and then initializing the loop. 47 would get 0 for success and -1 for failure on libuv 0.10, and the user had to use `uv_last_error` 98 In libuv 1.0 a pointer to a buffer is passed to the callback, which the user 203 In libuv 1.0, `uv_read2_start` was removed, and the user needs to check if there are pending 241 In addition, instead of allocating a full list strings, the user is able to get one
|
H A D | signal.rst | 14 * SIGINT is normally delivered when the user presses CTRL+C. However, like 17 * SIGBREAK is delivered when the user pressed CTRL + BREAK. 19 * SIGHUP is generated when the user closes the console window. On SIGHUP the
|
H A D | fs_poll.rst | 7 FS Poll handles allow the user to monitor a given path for changes. Unlike 64 by the user. Returns 0 on success or an error code < 0 in case of failure.
|
H A D | handle.rst | 58 :c:func:`uv_udp_recv_start`. The user must allocate memory and fill the supplied 63 Each buffer is used only once and the user is responsible for freeing it in the 67 not related in any way to the pending data to be read. The user is free to allocate the amount 101 Space for user-defined arbitrary data. libuv does not use this field. 278 active `and` referenced handles left. The user can force the loop to exit early
|
H A D | fs_event.rst | 7 FS Event handles allow the user to monitor a given path for changes, for example, 127 by the user. Returns 0 on success or an error code < 0 in case of failure.
|
H A D | process.rst | 7 Process handles will spawn a new process and allow the user to control it and 51 * Set the child process' user id. 223 Libuv can change the child process' user/group id. This happens only when
|
H A D | async.rst | 7 Async handles allow the user to "wakeup" the event loop and get a callback
|
H A D | misc.rst | 126 uv_timeval_t ru_utime; /* user CPU time used */ 160 uint64_t user; /* milliseconds */ 270 times. If the user changes it they are responsible for making 296 Due to platform differences the user cannot rely on the ordering of the 297 `base` and `len` members of the uv_buf_t struct. The user is responsible for 414 be freed by the user, calling :c:func:`uv_free_interface_addresses`. 536 Gets the current user's home directory. On Windows, `uv_os_homedir()` first 542 user's home directory is stored in `buffer`. When `uv_os_homedir()` is 810 On Windows, setting `PRIORITY_HIGHEST` will only work for elevated user,
|
H A D | errors.rst | 364 message is stored in the user-supplied buffer `buf` of at most `buflen` bytes. 376 name is stored in the user-supplied buffer `buf` of at most `buflen` bytes.
|
H A D | threadpool.rst | 7 libuv provides a threadpool which can be used to run user code and get notified
|
H A D | request.rst | 50 Space for user-defined arbitrary data. libuv does not use this field.
|
H A D | dns.rst | 44 Pointer to a `struct addrinfo` containing the result. Must be freed by the user
|
H A D | loop.rst | 54 Space for user-defined arbitrary data. libuv does not use and does not 100 or it will return UV_EBUSY. After this function returns, the user can free
|
/libuv/docs/src/guide/ |
H A D | eventloops.rst | 4 libuv provides considerable user control over event loops, and you can achieve
|
H A D | threads.rst | 246 ``uv_cancel()`` is useful to cleanup pending tasks if the user requests 248 be scanned for audio files. If the user terminates the program, it should quit 260 When the user triggers the signal by pressing ``Ctrl+C`` we send 299 informing the user of the status of running downloads.
|
/libuv/src/unix/ |
H A D | darwin.c | 225 cpu_info->cpu_times.user = (uint64_t)(info[i].cpu_ticks[0]) * multiplier; in uv_cpu_info()
|
H A D | freebsd.c | 260 cpu_info->cpu_times.user = (uint64_t)(cp_times[CP_USER+cur]) * multiplier; in uv_cpu_info()
|
H A D | openbsd.c | 225 cpu_info->cpu_times.user = (uint64_t)(info[CP_USER]) * multiplier; in uv_cpu_info()
|
H A D | netbsd.c | 230 cpu_info->cpu_times.user = (uint64_t)(cp_times[CP_USER+cur]) * multiplier; in uv_cpu_info()
|
H A D | sunos.c | 725 cpu_info->cpu_times.user = 0; in uv_cpu_info() 733 cpu_info->cpu_times.user = knp->value.ui64; in uv_cpu_info()
|
/libuv/m4/ |
H A D | ax_pthread.m4 | 14 # flags that are needed. (The user can also force certain compiler 99 # First of all, check if the user has set any of the PTHREAD_LIBS, 174 # enable POSIX threads at all, so give the user a hint if this is 269 # However, older versions of Clang make a point of warning the user
|
/libuv/test/ |
H A D | test-platform-output.c | 144 (unsigned long long) cpus[i].cpu_times.user); in TEST_IMPL()
|
Completed in 32 milliseconds
12