Searched refs:tmp (Results 1 – 9 of 9) sorted by relevance
/libuv/include/uv/ |
H A D | tree.h | 95 #define RB_ROTATE_LEFT(head, elm, tmp, field) do { \ argument 169 if (tmp && RB_COLOR(tmp, field) == RB_RED) { \ 185 if (tmp && RB_COLOR(tmp, field) == RB_RED) { \ 362 tmp = RB_LEFT(tmp, field); \ 364 tmp = RB_RIGHT(tmp, field); \ 390 tmp = RB_LEFT(tmp, field); \ 392 tmp = RB_RIGHT(tmp, field); \ 410 tmp = RB_LEFT(tmp, field); \ 413 tmp = RB_RIGHT(tmp, field); \ 472 tmp = RB_LEFT(tmp, field); \ [all …]
|
/libuv/src/ |
H A D | strtok.c | 27 char* tmp; in uv__strtok() local 31 start = tmp = *itr; in uv__strtok() 33 start = tmp = str; in uv__strtok() 35 if (tmp == NULL) in uv__strtok() 38 while (*tmp != '\0') { in uv__strtok() 41 if (*tmp == *sep_itr) { in uv__strtok() 42 *itr = tmp + 1; in uv__strtok() 43 *tmp = '\0'; in uv__strtok() 48 tmp++; in uv__strtok()
|
H A D | inet.c | 50 char tmp[UV__INET_ADDRSTRLEN]; in inet_ntop4() local 53 l = snprintf(tmp, sizeof(tmp), fmt, src[0], src[1], src[2], src[3]); in inet_ntop4() 57 uv__strscpy(dst, tmp, size); in inet_ntop4() 111 tp = tmp; in inet_ntop6() 127 int err = inet_ntop4(src+12, tp, sizeof tmp - (tp - tmp)); in inet_ntop6() 133 tp += snprintf(tp, sizeof tmp - (tp - tmp), "%x", words[i]); in inet_ntop6() 159 s = tmp; in uv_inet_pton() 182 *(tp = tmp) = 0; in inet_pton4() 222 memset((tp = tmp), '\0', sizeof tmp); in inet_pton6() 223 endp = tp + sizeof tmp; in inet_pton6() [all …]
|
/libuv/src/unix/ |
H A D | tty.c | 282 struct termios tmp; in uv_tty_set_mode() local 312 tmp = tty->orig_termios; in uv_tty_set_mode() 317 tmp.c_iflag &= ~(BRKINT | ICRNL | INPCK | ISTRIP | IXON); in uv_tty_set_mode() 318 tmp.c_oflag |= (ONLCR); in uv_tty_set_mode() 319 tmp.c_cflag |= (CS8); in uv_tty_set_mode() 320 tmp.c_lflag &= ~(ECHO | ICANON | IEXTEN | ISIG); in uv_tty_set_mode() 321 tmp.c_cc[VMIN] = 1; in uv_tty_set_mode() 322 tmp.c_cc[VTIME] = 0; in uv_tty_set_mode() 325 uv__tty_make_raw(&tmp); in uv_tty_set_mode() 330 rc = uv__tcsetattr(fd, TCSADRAIN, &tmp); in uv_tty_set_mode()
|
H A D | aix.c | 509 char tmp[256]; in uv__makedir_p() local 515 uv__strscpy(tmp, dir, sizeof(tmp)); in uv__makedir_p() 516 len = strlen(tmp); in uv__makedir_p() 517 if (tmp[len - 1] == '/') in uv__makedir_p() 518 tmp[len - 1] = 0; in uv__makedir_p() 519 for (p = tmp + 1; *p; p++) { in uv__makedir_p() 522 err = mkdir(tmp, S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH); in uv__makedir_p() 528 return mkdir(tmp, S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH); in uv__makedir_p()
|
H A D | fs.c | 801 char* tmp; in uv__fs_realpath() local 804 tmp = realpath(req->path, NULL); in uv__fs_realpath() 805 if (tmp == NULL) in uv__fs_realpath() 807 buf = uv__strdup(tmp); in uv__fs_realpath() 808 free(tmp); /* _Not_ uv__free. */ in uv__fs_realpath() 816 (void)tmp; in uv__fs_realpath()
|
/libuv/.github/workflows/ |
H A D | CI-unix.yml | 69 adb push build /data/local/tmp 70 adb shell mkdir /data/local/tmp/build/test 71 adb push test/fixtures /data/local/tmp/build/test 76 … adb shell "cd /data/local/tmp/build && env UV_TEST_TIMEOUT_MULTIPLIER=5 ./uv_run_tests_a"
|
/libuv/docs/src/ |
H A D | misc.rst | 557 If none of these are found, the path `"/tmp"` is used, or, on Android, 558 `"/data/local/tmp"` is used. The temp directory is stored in `buffer`. When
|
/libuv/docs/src/guide/ |
H A D | processes.rst | 322 point to a valid file (e.g. ``/tmp/echo.sock``). On Windows, ``name`` follows a
|
Completed in 26 milliseconds