Home
last modified time | relevance | path

Searched refs:posix_spawn_file_actions_t (Results 1 – 4 of 4) sorted by relevance

/bionic/tests/headers/posix/
Dspawn_h.c35 TYPE(posix_spawn_file_actions_t); in spawn_h()
51 …FUNCTION(posix_spawn, int (*f)(pid_t*, const char*, const posix_spawn_file_actions_t*, const posix… in spawn_h()
52 FUNCTION(posix_spawn_file_actions_addclose, int (*f)(posix_spawn_file_actions_t*, int)); in spawn_h()
53 FUNCTION(posix_spawn_file_actions_adddup2, int (*f)(posix_spawn_file_actions_t*, int, int)); in spawn_h()
54 …FUNCTION(posix_spawn_file_actions_addopen, int (*f)(posix_spawn_file_actions_t*, int, const char*,… in spawn_h()
55 FUNCTION(posix_spawn_file_actions_destroy, int (*f)(posix_spawn_file_actions_t*)); in spawn_h()
56 FUNCTION(posix_spawn_file_actions_init, int (*f)(posix_spawn_file_actions_t*)); in spawn_h()
70 …FUNCTION(posix_spawnp, int (*f)(pid_t*, const char*, const posix_spawn_file_actions_t*, const posi… in spawn_h()
/bionic/libc/include/
Dspawn.h51 typedef struct __posix_spawn_file_actions* posix_spawn_file_actions_t; typedef
53 int posix_spawn(pid_t* __pid, const char* __path, const posix_spawn_file_actions_t* __actions, cons…
54 int posix_spawnp(pid_t* __pid, const char* __file, const posix_spawn_file_actions_t* __actions, con…
81 int posix_spawn_file_actions_init(posix_spawn_file_actions_t* __actions) __INTRODUCED_IN(28);
82 int posix_spawn_file_actions_destroy(posix_spawn_file_actions_t* __actions) __INTRODUCED_IN(28);
84 int posix_spawn_file_actions_addopen(posix_spawn_file_actions_t* __actions, int __fd, const char* _…
85 int posix_spawn_file_actions_addclose(posix_spawn_file_actions_t* __actions, int __fd) __INTRODUCED…
86 int posix_spawn_file_actions_adddup2(posix_spawn_file_actions_t* __actions, int __fd, int __new_fd)…
/bionic/libc/bionic/
Dspawn.cpp138 const posix_spawn_file_actions_t* actions, in posix_spawn()
168 int posix_spawn(pid_t* pid, const char* path, const posix_spawn_file_actions_t* actions, in posix_spawn()
173 int posix_spawnp(pid_t* pid, const char* file, const posix_spawn_file_actions_t* actions, in posix_spawnp()
274 int posix_spawn_file_actions_init(posix_spawn_file_actions_t* actions) { in posix_spawn_file_actions_init()
279 int posix_spawn_file_actions_destroy(posix_spawn_file_actions_t* actions) { in posix_spawn_file_actions_destroy()
292 static int posix_spawn_add_file_action(posix_spawn_file_actions_t* actions, in posix_spawn_add_file_action()
329 int posix_spawn_file_actions_addopen(posix_spawn_file_actions_t* actions, in posix_spawn_file_actions_addopen()
335 int posix_spawn_file_actions_addclose(posix_spawn_file_actions_t* actions, int fd) { in posix_spawn_file_actions_addclose()
340 int posix_spawn_file_actions_adddup2(posix_spawn_file_actions_t* actions, int fd, int new_fd) { in posix_spawn_file_actions_adddup2()
/bionic/tests/
Dspawn_test.cpp236 posix_spawn_file_actions_t fa; in TEST()
272 posix_spawn_file_actions_t fa; in CatFileToString()