Home
last modified time | relevance | path

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

/third_party/libuv/test/
Dtest-process-title.c89 size_t exepath_size; in TEST_IMPL() local
99 exepath_size = sizeof(exepath) - 1; in TEST_IMPL()
100 ASSERT(0 == uv_exepath(exepath, &exepath_size)); in TEST_IMPL()
101 exepath[exepath_size] = '\0'; in TEST_IMPL()
Dbenchmark-spawn.c35 static size_t exepath_size = 1024; variable
143 r = uv_exepath(exepath, &exepath_size); in BENCHMARK_IMPL()
145 exepath[exepath_size] = '\0'; in BENCHMARK_IMPL()
Dtest-stdio-over-pipes.c30 static size_t exepath_size = 1024; variable
64 int r = uv_exepath(exepath, &exepath_size); in init_process_options()
66 exepath[exepath_size] = '\0'; in init_process_options()
Dtest-ref.c404 size_t exepath_size; in TEST_IMPL() local
410 exepath_size = sizeof(exepath); in TEST_IMPL()
412 r = uv_exepath(exepath, &exepath_size); in TEST_IMPL()
Dtest-ipc.c284 size_t exepath_size; in spawn_helper() local
294 exepath_size = sizeof(exepath); in spawn_helper()
295 r = uv_exepath(exepath, &exepath_size); in spawn_helper()
298 exepath[exepath_size] = '\0'; in spawn_helper()
Dtest-spawn.c47 static size_t exepath_size = 1024; variable
158 int r = uv_exepath(exepath, &exepath_size); in init_process_options()
160 exepath[exepath_size] = '\0'; in init_process_options()
/third_party/libuv/src/unix/
Dopenbsd.c65 size_t exepath_size; in uv_exepath() local
98 exepath_size = strlen(argsbuf[0]); in uv_exepath()
99 if (*size > exepath_size) in uv_exepath()
100 *size = exepath_size; in uv_exepath()
Ddarwin.c79 uint32_t exepath_size; in uv_exepath() local
85 exepath_size = sizeof(exepath); in uv_exepath()
86 if (_NSGetExecutablePath(exepath, &exepath_size)) in uv_exepath()