HomeSort by: relevance | last modified time | path
    Searched refs:exepath (Results 1 - 14 of 14) sorted by relevancy

  /src/external/mit/libuv/dist/test/
test-process-title.c 90 char exepath[1024]; local
99 exepath_size = sizeof(exepath) - 1;
100 ASSERT_OK(uv_exepath(exepath, &exepath_size));
101 exepath[exepath_size] = '\0';
109 args[0] = exepath;
116 options.file = exepath;
benchmark-spawn.c 34 static char exepath[1024]; variable
110 args[0] = exepath;
113 options.file = exepath;
143 r = uv_exepath(exepath, &exepath_size);
145 exepath[exepath_size] = '\0';
test-stdio-over-pipes.c 29 static char exepath[1024]; variable
64 int r = uv_exepath(exepath, &exepath_size);
66 exepath[exepath_size] = '\0';
67 args[0] = exepath;
70 options.file = exepath;
test-spawn.c 49 static char exepath[1024]; variable
161 int r = uv_exepath(exepath, &exepath_size);
163 exepath[exepath_size] = '\0';
164 args[0] = exepath;
169 options.file = exepath;
1407 exepath);
1435 for (len = strlen(exepath), file_len = 0;
1436 exepath[len - 1] != '/' && exepath[len - 1] != '\\';
1440 exepath + len)
    [all...]
test-ref.c 405 char exepath[256]; local
410 exepath_size = sizeof(exepath);
412 r = uv_exepath(exepath, &exepath_size);
415 argv[0] = exepath;
416 options.file = exepath;
test-ipc.c 285 char exepath[1024]; local
294 exepath_size = sizeof(exepath);
295 r = uv_exepath(exepath, &exepath_size);
298 exepath[exepath_size] = '\0';
299 args[0] = exepath;
304 options.file = exepath;
  /src/external/mit/libuv/dist/src/unix/
hurd.c 42 string_t exepath; local
51 err = proc_get_exe(getproc(), getpid(), exepath);
57 copied = uv__strscpy(buffer, exepath, *size);
darwin.c 67 /* realpath(exepath) may be > PATH_MAX so double it to be on the safe side. */
69 char exepath[PATH_MAX + 1]; local
76 exepath_size = sizeof(exepath);
77 if (_NSGetExecutablePath(exepath, &exepath_size))
80 if (realpath(exepath, abspath) != abspath)
ibmi.c 514 char exepath[UV__PATH_MAX]; local
520 size = sizeof(exepath);
521 if (uv__search_path(argv[0], exepath, &size) == 0) {
524 original_exepath = uv__strdup(exepath);
aix.c 889 char exepath[UV__PATH_MAX]; local
906 size = sizeof(exepath);
907 if (uv__search_path(argv[0], exepath, &size) == 0) {
910 original_exepath = uv__strdup(exepath);
  /src/external/bsd/file/dist/src/
magic.c 145 char exepath[MAX_PATH]; local
146 GetModuleFileNameA(NULL, exepath, MAX_PATH);
147 PathRemoveFileSpecA(exepath);
148 if (stricmp(exepath, dllpath) == 0)
  /src/external/apache2/mDNSResponder/dist/ServiceRegistration/
ioloop.c 1607 ioloop_subproc(const char *exepath, char **argv, int argc, subproc_callback_t callback,
1650 subproc->argv[0] = strdup(exepath);
1676 rv = posix_spawn(&subproc->pid, exepath, &actions, &attrs, subproc->argv, environ);
ioloop.h 352 subproc_t *NULLABLE ioloop_subproc(const char *NONNULL exepath, char *NULLABLE *NONNULL argv, int argc,
macos-ioloop.c 1858 ioloop_subproc(const char *exepath, char *NULLABLE *argv, int argc,
1900 subproc->argv[0] = strdup(exepath);
1926 rv = posix_spawn(&subproc->pid, exepath, &actions, &attrs, subproc->argv, environ);

Completed in 45 milliseconds