Searched refs:end (Results 1 – 15 of 15) sorted by relevance
/libuv/docs/ |
H A D | make.bat | 41 goto end 47 goto end 69 goto end 77 goto end 85 goto end 93 goto end 101 goto end 110 goto end 122 goto end 130 goto end [all …]
|
/libuv/test/ |
H A D | runner.c | 417 const char* end; in print_lines() local 420 while ((end = memchr(start, '\n', &buffer[size] - start))) { in print_lines() 422 fwrite(start, 1, (int)(end - start), stream); in print_lines() 425 start = end + 1; in print_lines() 428 end = &buffer[size]; in print_lines() 429 if (start < end) { in print_lines() 431 fwrite(start, 1, (int)(end - start), stream); in print_lines()
|
H A D | test-tty-escape-sequence-processing.c | 232 char* end; in make_expect_screen_erase() local 237 end = cs->text + cs->si.length; in make_expect_screen_erase() 240 end = start + cs->si.width; in make_expect_screen_erase() 246 end = start + cursor_position.X; in make_expect_screen_erase() 256 end = cs->text + cs->si.length; in make_expect_screen_erase() 259 end = start + cs->si.width; in make_expect_screen_erase() 264 ASSERT_PTR_LT(start, end); in make_expect_screen_erase() 265 ASSERT_LE(end - cs->text, cs->si.length); in make_expect_screen_erase() 266 for (; start < end; start++) { in make_expect_screen_erase()
|
/libuv/src/unix/ |
H A D | signal.c | 439 size_t bytes, end, i; in uv__signal_event() local 443 end = 0; in uv__signal_event() 470 end = (bytes / sizeof(uv__signal_msg_t)) * sizeof(uv__signal_msg_t); in uv__signal_event() 472 for (i = 0; i < end; i += sizeof(uv__signal_msg_t)) { in uv__signal_event() 487 bytes -= end; in uv__signal_event() 493 memmove(buf, buf + end, bytes); in uv__signal_event() 496 } while (end == sizeof buf); in uv__signal_event()
|
H A D | sunos.c | 901 const char* end; in strnlen() local 902 end = memchr(s, '\0', maxlen); in strnlen() 903 if (end == NULL) in strnlen() 905 return end - s; in strnlen()
|
H A D | core.c | 732 int* end; in uv__recvmsg() 742 end = (int*) ((char*) cmsg + cmsg->cmsg_len); in uv__recvmsg() 743 pfd < end; in uv__recvmsg()
|
/libuv/docs/src/guide/ |
H A D | basics.rst | 31 This event loop is encapsulated by ``uv_run()`` -- the end-all function when using 134 … ``nread``. If ``nread`` is less than 0, there was an error (UV_EOF is the end of file error, whic…
|
H A D | processes.rst | 351 ``queue`` is the pipe connected to the master process on the other end, along
|
/libuv/src/win/ |
H A D | tty.c | 1307 COORD start, end; in uv__tty_clear() local 1357 end = uv__tty_make_real_coord(handle, &info, x2, x2r, y2, y2r); in uv__tty_clear() 1358 count = (end.Y * info.dwSize.X + end.X) - in uv__tty_clear()
|
/libuv/docs/src/ |
H A D | errors.rst | 316 end of file
|
H A D | tcp.rst | 87 at the end of this procedure, then the handle is destroyed with a
|
H A D | design.rst | 111 it will continue from the start if it's still *alive*, otherwise it will also end.
|
H A D | loop.rst | 144 Stop the event loop, causing :c:func:`uv_run` to end as soon as
|
H A D | fs.rst | 568 positioned at the end of the file. 678 Access is intended to be sequential from beginning to end. The system can
|
/libuv/ |
H A D | ChangeLog | 276 * unix,win: fix read past end of pipe name buffer (Ben Noordhuis) 1126 * kqueue: ignore write-end closed notifications (Jameson Nash)
|
Completed in 48 milliseconds