HomeSort by: relevance | last modified time | path
    Searched defs:abspath_size (Results 1 - 3 of 3) sorted by relevancy

  /src/external/mit/libuv/dist/src/unix/
darwin.c 71 size_t abspath_size; local
83 abspath_size = strlen(abspath);
84 if (abspath_size == 0)
88 if (*size > abspath_size)
89 *size = abspath_size;
freebsd.c 67 size_t abspath_size; local
77 abspath_size = sizeof abspath;
78 if (sysctl(mib, ARRAY_SIZE(mib), abspath, &abspath_size, NULL, 0))
81 assert(abspath_size > 0);
82 abspath_size -= 1;
85 if (*size > abspath_size)
86 *size = abspath_size;
core.c 1877 size_t abspath_size; local
1900 abspath_size = strlen(abspath);
1903 if (*buflen > abspath_size)
1904 *buflen = abspath_size;
1930 abspath_size = strlen(abspath);
1933 if (*buflen > abspath_size)
1934 *buflen = abspath_size;

Completed in 18 milliseconds