Home
last modified time | relevance | path

Searched refs:tmp (Results 1 – 8 of 8) sorted by relevance

/libuv/include/uv/
H A Dtree.h88 #define SPLAY_ROTATE_RIGHT(head, tmp, field) do { \ argument
416 if (tmp && RB_COLOR(tmp, field) == RB_RED) { \
432 if (tmp && RB_COLOR(tmp, field) == RB_RED) { \
609 tmp = RB_LEFT(tmp, field); \
611 tmp = RB_RIGHT(tmp, field); \
637 tmp = RB_LEFT(tmp, field); \
639 tmp = RB_RIGHT(tmp, field); \
657 tmp = RB_LEFT(tmp, field); \
660 tmp = RB_RIGHT(tmp, field); \
719 tmp = RB_LEFT(tmp, field); \
[all …]
/libuv/src/
H A Dstrtok.c27 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 Dinet.c50 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 Dtty.c282 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 Daix.c509 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 Dfs.c793 char* tmp; in uv__fs_realpath() local
796 tmp = realpath(req->path, NULL); in uv__fs_realpath()
797 if (tmp == NULL) in uv__fs_realpath()
799 buf = uv__strdup(tmp); in uv__fs_realpath()
800 free(tmp); /* _Not_ uv__free. */ in uv__fs_realpath()
808 (void)tmp; in uv__fs_realpath()
/libuv/docs/src/
H A Dmisc.rst557 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 Dprocesses.rst322 point to a valid file (e.g. ``/tmp/echo.sock``). On Windows, ``name`` follows a

Completed in 30 milliseconds