Home
last modified time | relevance | path

Searched refs:user (Results 1 – 25 of 39) sorted by relevance

12

/libuv/
H A D.gitignore57 *.vcproj*.user
60 *.vcxproj.user
H A DCONTRIBUTING.md92 $ git config --global user.name "J. Random User"
93 $ git config --global user.email "j.random.user@example.com"
H A D.mailmap9 Bert Belder <bertbelder@gmail.com> <user@ChrUbuntu.(none)>
/libuv/docs/src/
H A Dpoll.rst18 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 Dmigration_010_100.rst18 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 Dsignal.rst14 * 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 Dfs_poll.rst7 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 Dhandle.rst58 :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 Dfs_event.rst7 FS Event handles allow the user to monitor a given path for changes, for example,
124 by the user. Returns 0 on success or an error code < 0 in case of failure.
H A Dprocess.rst7 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 Dasync.rst7 Async handles allow the user to "wakeup" the event loop and get a callback
H A Dmisc.rst126 uv_timeval_t ru_utime; /* user CPU time used */
160 uint64_t user; /* milliseconds */
258 times. If the user changes it they are responsible for making
284 Due to platform differences the user cannot rely on the ordering of the
285 `base` and `len` members of the uv_buf_t struct. The user is responsible for
402 be freed by the user, calling :c:func:`uv_free_interface_addresses`.
524 Gets the current user's home directory. On Windows, `uv_os_homedir()` first
530 user's home directory is stored in `buffer`. When `uv_os_homedir()` is
769 On Windows, setting `PRIORITY_HIGHEST` will only work for elevated user,
H A Derrors.rst364 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 Dthreadpool.rst7 libuv provides a threadpool which can be used to run user code and get notified
H A Drequest.rst30 Space for user-defined arbitrary data. libuv does not use this field.
H A Ddns.rst44 Pointer to a `struct addrinfo` containing the result. Must be freed by the user
H A Dloop.rst41 Space for user-defined arbitrary data. libuv does not use and does not
82 or it will return UV_EBUSY. After this function returns, the user can free
/libuv/docs/src/guide/
H A Deventloops.rst4 libuv provides considerable user control over event loops, and you can achieve
H A Dthreads.rst246 ``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 Ddarwin.c225 cpu_info->cpu_times.user = (uint64_t)(info[i].cpu_ticks[0]) * multiplier; in uv_cpu_info()
H A Dfreebsd.c255 cpu_info->cpu_times.user = (uint64_t)(cp_times[CP_USER+cur]) * multiplier; in uv_cpu_info()
H A Dopenbsd.c225 cpu_info->cpu_times.user = (uint64_t)(info[CP_USER]) * multiplier; in uv_cpu_info()
H A Dnetbsd.c230 cpu_info->cpu_times.user = (uint64_t)(cp_times[CP_USER+cur]) * multiplier; in uv_cpu_info()
/libuv/m4/
H A Dax_pthread.m414 # 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 Dtest-platform-output.c144 (unsigned long long) cpus[i].cpu_times.user); in TEST_IMPL()

Completed in 131 milliseconds

12