/libuv/test/ |
H A D | test-strscpy.c | 30 char d[4]; in TEST_IMPL() local 35 memset(d, 0, sizeof(d)); in TEST_IMPL() 36 ASSERT_EQ(1, uv__strscpy(d, "x", sizeof(d))); in TEST_IMPL() 37 ASSERT_OK(memcmp(d, "x\0\0", sizeof(d))); in TEST_IMPL() 39 memset(d, 0, sizeof(d)); in TEST_IMPL() 40 ASSERT_EQ(2, uv__strscpy(d, "xy", sizeof(d))); in TEST_IMPL() 41 ASSERT_OK(memcmp(d, "xy\0", sizeof(d))); in TEST_IMPL() 43 ASSERT_EQ(3, uv__strscpy(d, "xyz", sizeof(d))); in TEST_IMPL() 44 ASSERT_OK(memcmp(d, "xyz", sizeof(d))); in TEST_IMPL() 47 ASSERT_OK(memcmp(d, "xyz", sizeof(d))); in TEST_IMPL() [all …]
|
H A D | test-idna.c | 129 char d[256] = {0}; \ 131 ASSERT_EQ(err, uv__idna_toascii(s, s + sizeof(s) - 1, d, d + sizeof(d))); \
|
H A D | runner.c | 40 char* fmt(char (*buf)[32], double d) { in fmt() argument 45 v = (uint64_t) d; in fmt()
|
H A D | task.h | 278 char* fmt(char (*buf)[32], double d);
|
H A D | test-fs.c | 3038 uv_dirent_t d; in TEST_IMPL() local 3042 ASSERT_NE(UV_EOF, uv_fs_scandir_next(&req, &d)); in TEST_IMPL() 3046 ASSERT_NE(UV_EOF, uv_fs_scandir_next(&req, &d)); in TEST_IMPL()
|
/libuv/src/ |
H A D | idna.c | 76 unsigned d; in uv__utf8_decode1_slow() local 122 d &= 63; in uv__utf8_decode1_slow() 191 if (*d < de) *(*d)++ = 'x'; in uv__idna_toascii_label() 192 if (*d < de) *(*d)++ = 'n'; in uv__idna_toascii_label() 193 if (*d < de) *(*d)++ = '-'; in uv__idna_toascii_label() 194 if (*d < de) *(*d)++ = '-'; in uv__idna_toascii_label() 207 if (*d < de) in uv__idna_toascii_label() 328 ds = d; in uv__idna_toascii() 349 if (d < de) in uv__idna_toascii() 362 if (d >= de) in uv__idna_toascii() [all …]
|
H A D | strscpy.c | 25 ssize_t uv__strscpy(char* d, const char* s, size_t n) { in uv__strscpy() argument 29 if ('\0' == (d[i] = s[i])) in uv__strscpy() 35 d[--i] = '\0'; in uv__strscpy()
|
H A D | strscpy.h | 37 ssize_t uv__strscpy(char* d, const char* s, size_t n);
|
H A D | idna.h | 29 ssize_t uv__idna_toascii(const char* s, const char* se, char* d, char* de);
|
/libuv/src/win/ |
H A D | tty.c | 1956 int x, y, d; local 2031 d = handle->tty.wr.ansi_csi_argc 2033 if (d >= 0 && d <= 2) { 2034 uv__tty_clear(handle, d, 1, error); 2041 d = handle->tty.wr.ansi_csi_argc 2043 if (d >= 0 && d <= 2) { 2044 uv__tty_clear(handle, d, 0, error);
|
/libuv/.github/workflows/ |
H A D | CI-unix.yml | 40 …GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules 173 … DEB=`curl -s $QEMU_SRC/ | grep -o -E 'href="([^"#]+)"' | cut -d'"' -f2 | grep $QEMU_VER | tail -1`
|
/libuv/docs/ |
H A D | make.bat | 10 set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% %SRCDIR% 45 for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i
|
/libuv/ |
H A D | LICENSE-docs | 93 d. Effective Technological Measures means those measures that, in the 338 d. Sections 1, 5, 6, 7, and 8 survive termination of this Public 370 d. Nothing in this Public License constitutes or may be interpreted
|
H A D | CMakeLists.txt | 790 set(CMAKE_DEBUG_POSTFIX d)
|
H A D | ChangeLog | 488 * src: don't run timers if loop is stopped/unref'd (Trevor Norris)
|
/libuv/docs/src/ |
H A D | design.rst | 69 when is a loop considered to be *alive*? If a loop has active and ref'd handles, active
|
H A D | fs.rst | 481 - Resolved path bypasses subst'd drives.
|
/libuv/m4/ |
H A D | libuv-check-flags.m4 | 260 [struct astructure { char a; int b; long c; void *d; } __attribute__((packed));],
|
/libuv/src/unix/ |
H A D | core.c | 82 # define uv__accept4(a, b, c, d) paccept((a), (b), (c), NULL, (d)) argument
|
/libuv/docs/src/guide/ |
H A D | processes.rst | 175 file, but ignore ``stdout``. For this you'd like to have ``stderr`` of the
|