Searched refs:current (Results 1 – 18 of 18) sorted by relevance
/libuv/test/ |
H A D | test-mutexes.c | 99 int current; in synchronize() local 103 for (current = step; current == step; uv_cond_wait(&condvar, &mutex)); in synchronize() 104 ASSERT_EQ(step, current + 1); in synchronize()
|
H A D | runner.c | 67 int current; in run_tests() local 90 current = 1; in run_tests() 96 test_result = run_test(task->task_name, benchmark_output, current); in run_tests() 102 current++; in run_tests()
|
H A D | test-tty-escape-sequence-processing.c | 305 int current = 0; in compare_screen() local 319 while (current < actual->si.length) { in compare_screen() 320 if (*(actual->text + current) != *(expect->text + current)) { in compare_screen() 321 line = current / actual->si.width + 1; in compare_screen() 327 *(expect->text + current), in compare_screen() 328 *(actual->text + current)); in compare_screen() 331 if (*(actual->attributes + current) != *(expect->attributes + current)) { in compare_screen() 332 line = current / actual->si.width + 1; in compare_screen() 338 *(expect->attributes + current), in compare_screen() 339 *(actual->attributes + current)); in compare_screen() [all …]
|
/libuv/src/win/ |
H A D | req-inl.h | 97 uv_req_t* current = loop->pending_reqs_tail; in uv__insert_pending_req() local 99 assert(req != current); in uv__insert_pending_req() 100 current = current->next_req; in uv__insert_pending_req() 101 } while(current != loop->pending_reqs_tail); in uv__insert_pending_req()
|
/libuv/docs/src/ |
H A D | misc.rst | 315 Gets the title of the current process. You *must* call `uv_setup_args` 334 Sets the current process title. You *must* call `uv_setup_args` before 349 Gets the resident set size (RSS) for the current process. 357 Gets the resource usage measures for the current process. 365 Returns the current process ID. 406 or `UV_ENOTSUP` if affinities are not supported on the current platform. 516 Gets the current working directory, and stores it in `buffer`. If the 517 current working directory is too large to fit in `buffer`, this function 532 Changes the current working directory. 536 Gets the current user's home directory. On Windows, `uv_os_homedir()` first [all …]
|
H A D | tty.rst | 116 Gets the current Window size. On success it returns 0. 134 Get the current state of whether console virtual terminal sequences are
|
H A D | metrics.rst | 69 Copy the current set of event loop metrics to the ``metrics`` pointer.
|
H A D | loop.rst | 174 Return the current timestamp in milliseconds. The timestamp is cached at 187 Update the event loop's concept of "now". Libuv caches the current time
|
H A D | handle.rst | 196 If `*value` == 0, then it will set `*value` to the current send buffer size. 213 If `*value` == 0, then it will set `*value` to the current receive buffer size.
|
H A D | tcp.rst | 137 Get the current address to which the handle is bound. `name` must point to
|
H A D | design.rst | 127 so the current approach is to run blocking file I/O operations in a thread pool.
|
H A D | threading.rst | 223 absolute system time at which the wait expires. If the current system clock time
|
H A D | fs.rst | 243 the current file offset is used and updated. 257 the current file offset is used and updated.
|
H A D | udp.rst | 457 allocated for the current handle/platform.
|
/libuv/src/unix/ |
H A D | linux.c | 2221 uint64_t current; in uv__get_cgroup1_current_memory() local 2230 current = uv__read_uint64(filename); in uv__get_cgroup1_current_memory() 2235 if (current != 0) in uv__get_cgroup1_current_memory() 2236 return current; in uv__get_cgroup1_current_memory() 2260 uint64_t current; in uv_get_available_memory() local 2276 current = uv__get_cgroup1_current_memory(buf); in uv_get_available_memory() 2278 current = uv__get_cgroup2_current_memory(buf); in uv_get_available_memory() 2281 if (constrained < current) in uv_get_available_memory() 2284 return constrained - current; in uv_get_available_memory()
|
/libuv/docs/src/guide/ |
H A D | eventloops.rst | 42 Here is a simple example that stops the loop and demonstrates how the current
|
/libuv/m4/ |
H A D | libuv-check-flags.m4 | 122 dnl the current linker to avoid undefined references in a shared object.
|
/libuv/ |
H A D | ChangeLog | 4814 * doc: update references to current stable branch (Zachary Newman) 6271 This is the first versioned release from the current unstable libuv branch.
|
Completed in 41 milliseconds