Searched refs:cwd (Results 1 – 10 of 10) sorted by relevance
/libuv/src/win/ |
H A D | process.c | 193 wcsncpy(result_pos, cwd, cwd_len); in search_path_join_test() 333 WCHAR *cwd, in search_path() argument 345 size_t cwd_len = wcslen(cwd); in search_path() 375 cwd, cwd_len, in search_path() 898 *env = NULL, *cwd = NULL; in uv_spawn() local 944 if (options->cwd) { in uv_spawn() 946 err = uv__utf8_to_utf16_alloc(options->cwd, &cwd); in uv_spawn() 961 if (cwd == NULL) { in uv_spawn() 1000 cwd, in uv_spawn() 1064 cwd, in uv_spawn() [all …]
|
/libuv/src/unix/ |
H A D | process.c | 369 if (options->cwd != NULL && chdir(options->cwd)) in uv__process_child_init() 546 if (options->cwd != NULL) { in uv__spawn_set_posix_spawn_file_actions() 552 err = posix_spawn_fncs->file_actions.addchdir_np(actions, options->cwd); in uv__spawn_set_posix_spawn_file_actions()
|
H A D | aix.c | 789 char cwd[PATH_MAX]; in uv_fs_event_start() local 807 snprintf(cwd, sizeof(cwd), "/proc/%lu/cwd", (unsigned long) getpid()); in uv_fs_event_start() 808 rc = readlink(cwd, readlink_cwd, sizeof(readlink_cwd) - 1); in uv_fs_event_start()
|
/libuv/docs/src/ |
H A D | process.rst | 29 const char* cwd; 199 .. c:member:: const char* uv_process_options_t.cwd
|
/libuv/ |
H A D | Makefile.am | 168 test/test-cwd-and-chdir.c \
|
H A D | CMakeLists.txt | 542 test/test-cwd-and-chdir.c
|
H A D | ChangeLog | 868 * macos: avoid posix_spawnp() cwd bug (Jameson Nash) 3049 * win,build: keep cwd when setting build environment (darobs) 4624 * test: fix test-cwd-and-chdir (Bert Belder) 5559 * include: make uv_process_options_t.cwd const (Ben Noordhuis)
|
/libuv/docs/src/guide/ |
H A D | processes.rst | 76 Set ``uv_process_options_t.cwd`` to the corresponding directory.
|
/libuv/include/ |
H A D | uv.h | 1066 const char* cwd; member
|
/libuv/test/ |
H A D | test-spawn.c | 2103 options.cwd = exepath; in TEST_IMPL()
|
Completed in 55 milliseconds