Lines Matching refs:s
402 char* s; in UV_UNUSED() local
404 s = strrchr(path, '/'); in UV_UNUSED()
405 if (s == NULL) in UV_UNUSED()
408 return s + 1; in UV_UNUSED()
411 UV_UNUSED(static int uv__fstat(int fd, struct stat* s)) { in UV_UNUSED() argument
414 rc = fstat(fd, s); in UV_UNUSED()
416 uv__msan_unpoison(s, sizeof(*s)); in UV_UNUSED()
421 UV_UNUSED(static int uv__lstat(const char* path, struct stat* s)) { in UV_UNUSED() argument
424 rc = lstat(path, s); in UV_UNUSED()
426 uv__msan_unpoison(s, sizeof(*s)); in UV_UNUSED()
431 UV_UNUSED(static int uv__stat(const char* path, struct stat* s)) { in UV_UNUSED() argument
434 rc = stat(path, s); in UV_UNUSED()
436 uv__msan_unpoison(s, sizeof(*s)); in UV_UNUSED()
469 size_t strnlen(const char* s, size_t maxlen);