Searched refs:posix_spawn_add_file_action (Results 1 – 1 of 1) sorted by relevance
/bionic/libc/bionic/ |
D | spawn.cpp | 338 static int posix_spawn_add_file_action(posix_spawn_file_actions_t* actions, in posix_spawn_add_file_action() function 378 return posix_spawn_add_file_action(actions, kOpen, -1, fd, path, flags, mode); in posix_spawn_file_actions_addopen() 383 return posix_spawn_add_file_action(actions, kClose, fd, -1, nullptr, 0, 0); in posix_spawn_file_actions_addclose() 388 return posix_spawn_add_file_action(actions, kDup2, fd, new_fd, nullptr, 0, 0); in posix_spawn_file_actions_adddup2() 392 return posix_spawn_add_file_action(actions, kChdir, -1, -1, path, 0, 0); in posix_spawn_file_actions_addchdir_np() 397 return posix_spawn_add_file_action(actions, kFchdir, fd, -1, nullptr, 0, 0); in posix_spawn_file_actions_addfchdir_np()
|