Lines Matching refs:n
257 ssize_t n; in uv__write_int() local
260 n = write(fd, &val, sizeof(val)); in uv__write_int()
261 while (n == -1 && errno == EINTR); in uv__write_int()
282 int n; in uv__process_child_init() local
289 for (n = 1; n < 32; n += 1) { in uv__process_child_init()
290 if (n == SIGKILL || n == SIGSTOP) in uv__process_child_init()
294 if (n == SIGKILLTHR) in uv__process_child_init()
298 if (SIG_ERR != signal(n, SIG_DFL)) in uv__process_child_init()
323 n = uv__cloexec(pipes[fd][1], 1); in uv__process_child_init()
324 if (n) in uv__process_child_init()
325 uv__write_int(error_fd, n); in uv__process_child_init()
350 n = uv__cloexec(use_fd, 0); in uv__process_child_init()
351 if (n) in uv__process_child_init()
352 uv__write_int(error_fd, n); in uv__process_child_init()