Searched refs:found (Results 1 – 15 of 15) sorted by relevance
/libuv/test/ |
H A D | test-env-vars.c | 33 int i, r, envcount, found, found_win_special; in TEST_IMPL() local 121 found = 0; in TEST_IMPL() 127 found++; in TEST_IMPL() 130 found++; in TEST_IMPL() 137 ASSERT_EQ(2, found); in TEST_IMPL()
|
H A D | test-tty-duplicate-key.c | 48 const char* found, ssize_t found_len) { in print_err_msg() argument 52 dump_str(found, found_len); in print_err_msg()
|
H A D | test-spawn.c | 1312 int found = 0; in TEST_IMPL() local 1317 for (i = 0; i < ARRAY_SIZE(wenvironment) && !found; i++) { in TEST_IMPL() 1321 found = 1; in TEST_IMPL() 1324 for (i = 0; i < ARRAY_SIZE(expected) && !found; i++) { in TEST_IMPL() 1328 found = 1; in TEST_IMPL() 1336 ASSERT(found); /* verify that we expected this variable */ in TEST_IMPL()
|
/libuv/docs/src/ |
H A D | dll.rst | 40 to map to NULL. Returns 0 on success and -1 if the symbol was not found.
|
H A D | index.rst | 61 Installation instructions can be found in `the README <https://github.com/libuv/libuv/blob/master/R…
|
H A D | fs.rst | 273 …Equivalent to :man:`mkdtemp(3)`. The result can be found as a null terminated string at `req->path… 277 …Equivalent to :man:`mkstemp(3)`. The created file path can be found as a null terminated string at… 278 The file descriptor can be found as an integer at `req->result`. 474 found while resolving the given path. This limit is hardcoded and cannot be sidestepped.
|
H A D | misc.rst | 556 variable found in the ordered list `TMPDIR`, `TMP`, `TEMP`, and `TEMPDIR`. 557 If none of these are found, the path `"/tmp"` is used, or, on Android,
|
/libuv/ |
H A D | SECURITY.md | 13 If you believe you have found a security vulnerability in `libuv`, please use the [GitHub's private…
|
/libuv/m4/ |
H A D | libuv-check-flags.m4 | 66 dnl CC_CHECK_CFLAG_APPEND(FLAG, [action-if-found], [action-if-not-found]) 80 dnl CC_CHECK_CFLAGS_APPEND([FLAG1 FLAG2], [action-if-found], [action-if-not])
|
H A D | ax_pthread.m4 | 36 # Also HAVE_PTHREAD_PRIO_INHERIT is defined if pthread is found and the 41 # is found, and ACTION-IF-NOT-FOUND is a list of commands to run it if it 42 # is not found. If ACTION-IF-FOUND is not specified, the default action
|
/libuv/src/unix/ |
H A D | linux.c | 1755 int found; in uv_cpu_info() local 1824 found = 0; in uv_cpu_info() 1825 while (!found && fgets(buf, sizeof(buf), fp)) in uv_cpu_info() 1826 found = !strncmp(buf, model_marker, sizeof(model_marker) - 1); in uv_cpu_info() 1828 if (!found) in uv_cpu_info() 1844 found = 0; in uv_cpu_info() 1845 for (model = models; !found && model < ARRAY_END(models); model++) in uv_cpu_info() 1846 found = !strncmp(p, *model, strlen(*model)); in uv_cpu_info() 1848 if (!found) in uv_cpu_info()
|
/libuv/docs/ |
H A D | Makefile | 14 $(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set t…
|
H A D | make.bat | 54 echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
|
/libuv/docs/src/guide/ |
H A D | introduction.rst | 22 services and clients. You have found that the event loop approach is well
|
H A D | networking.rst | 70 be found in the code. Just remember to call ``uv_close`` when the socket isn't
|
Completed in 39 milliseconds