Home
last modified time | relevance | path

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

12

/third_party/musl/porting/liteos_m_iccarm/kernel/include/
Dspawn.h40 } posix_spawn_file_actions_t; typedef
42 int posix_spawn(pid_t *__restrict, const char *__restrict, const posix_spawn_file_actions_t *,
44 int posix_spawnp(pid_t *__restrict, const char *__restrict, const posix_spawn_file_actions_t *,
67 int posix_spawn_file_actions_init(posix_spawn_file_actions_t *);
68 int posix_spawn_file_actions_destroy(posix_spawn_file_actions_t *);
70 int posix_spawn_file_actions_addopen(posix_spawn_file_actions_t *__restrict, int, const char *__res…
71 int posix_spawn_file_actions_addclose(posix_spawn_file_actions_t *, int);
72 int posix_spawn_file_actions_adddup2(posix_spawn_file_actions_t *, int, int);
75 int posix_spawn_file_actions_addchdir_np(posix_spawn_file_actions_t *__restrict, const char *__rest…
76 int posix_spawn_file_actions_addfchdir_np(posix_spawn_file_actions_t *, int);
/third_party/musl/porting/uniproton/kernel/include/
Dspawn.h40 } posix_spawn_file_actions_t; typedef
42 int posix_spawn(pid_t *__restrict, const char *__restrict, const posix_spawn_file_actions_t *,
44 int posix_spawnp(pid_t *__restrict, const char *__restrict, const posix_spawn_file_actions_t *,
67 int posix_spawn_file_actions_init(posix_spawn_file_actions_t *);
68 int posix_spawn_file_actions_destroy(posix_spawn_file_actions_t *);
70 int posix_spawn_file_actions_addopen(posix_spawn_file_actions_t *__restrict, int, const char *__res…
71 int posix_spawn_file_actions_addclose(posix_spawn_file_actions_t *, int);
72 int posix_spawn_file_actions_adddup2(posix_spawn_file_actions_t *, int, int);
75 int posix_spawn_file_actions_addchdir_np(posix_spawn_file_actions_t *__restrict, const char *__rest…
76 int posix_spawn_file_actions_addfchdir_np(posix_spawn_file_actions_t *, int);
/third_party/musl/include/
Dspawn.h40 } posix_spawn_file_actions_t; typedef
42 int posix_spawn(pid_t *__restrict, const char *__restrict, const posix_spawn_file_actions_t *,
44 int posix_spawnp(pid_t *__restrict, const char *__restrict, const posix_spawn_file_actions_t *,
67 int posix_spawn_file_actions_init(posix_spawn_file_actions_t *);
68 int posix_spawn_file_actions_destroy(posix_spawn_file_actions_t *);
70 int posix_spawn_file_actions_addopen(posix_spawn_file_actions_t *__restrict, int, const char *__res…
71 int posix_spawn_file_actions_addclose(posix_spawn_file_actions_t *, int);
72 int posix_spawn_file_actions_adddup2(posix_spawn_file_actions_t *, int, int);
75 int posix_spawn_file_actions_addchdir_np(posix_spawn_file_actions_t *__restrict, const char *__rest…
76 int posix_spawn_file_actions_addfchdir_np(posix_spawn_file_actions_t *, int);
/third_party/musl/porting/liteos_m/kernel/include/
Dspawn.h40 } posix_spawn_file_actions_t; typedef
42 int posix_spawn(pid_t *__restrict, const char *__restrict, const posix_spawn_file_actions_t *,
44 int posix_spawnp(pid_t *__restrict, const char *__restrict, const posix_spawn_file_actions_t *,
67 int posix_spawn_file_actions_init(posix_spawn_file_actions_t *);
68 int posix_spawn_file_actions_destroy(posix_spawn_file_actions_t *);
70 int posix_spawn_file_actions_addopen(posix_spawn_file_actions_t *__restrict, int, const char *__res…
71 int posix_spawn_file_actions_addclose(posix_spawn_file_actions_t *, int);
72 int posix_spawn_file_actions_adddup2(posix_spawn_file_actions_t *, int, int);
75 int posix_spawn_file_actions_addchdir_np(posix_spawn_file_actions_t *__restrict, const char *__rest…
76 int posix_spawn_file_actions_addfchdir_np(posix_spawn_file_actions_t *, int);
/third_party/musl/ndk_musl_include/
Dspawn.h40 } posix_spawn_file_actions_t; typedef
42 int posix_spawn(pid_t *__restrict, const char *__restrict, const posix_spawn_file_actions_t *,
44 int posix_spawnp(pid_t *__restrict, const char *__restrict, const posix_spawn_file_actions_t *,
67 int posix_spawn_file_actions_init(posix_spawn_file_actions_t *);
68 int posix_spawn_file_actions_destroy(posix_spawn_file_actions_t *);
70 int posix_spawn_file_actions_addopen(posix_spawn_file_actions_t *__restrict, int, const char *__res…
71 int posix_spawn_file_actions_addclose(posix_spawn_file_actions_t *, int);
72 int posix_spawn_file_actions_adddup2(posix_spawn_file_actions_t *, int, int);
/third_party/musl/libc-test/src/api/
Dspawn.c8 T(posix_spawn_file_actions_t) in f()
21 {int(*p)(pid_t*restrict,const char*restrict,const posix_spawn_file_actions_t*,const posix_spawnattr… in f()
22 {int(*p)(posix_spawn_file_actions_t*,int) = posix_spawn_file_actions_addclose;} in f()
23 {int(*p)(posix_spawn_file_actions_t*,int,int) = posix_spawn_file_actions_adddup2;} in f()
24 {int(*p)(posix_spawn_file_actions_t*restrict,int,const char*restrict,int,mode_t) = posix_spawn_file… in f()
25 {int(*p)(posix_spawn_file_actions_t*) = posix_spawn_file_actions_destroy;} in f()
26 {int(*p)(posix_spawn_file_actions_t*) = posix_spawn_file_actions_init;} in f()
33 {int(*p)(pid_t*restrict,const char*restrict,const posix_spawn_file_actions_t*,const posix_spawnattr… in f()
/third_party/musl/libc-test/src/functionalext/supplement/process/
Dposix_spawn_file_actions_addopen.c30 posix_spawn_file_actions_t fa; in posix_spawn_file_actions_addopen_0100()
57 posix_spawn_file_actions_t fa; in posix_spawn_file_actions_addopen_0200()
82 posix_spawn_file_actions_t fa; in posix_spawn_file_actions_addopen_0300()
/third_party/musl/src/process/
Dposix_spawn.c16 const posix_spawn_file_actions_t *fa;
36 const posix_spawn_file_actions_t *fa = args->fa; in child()
164 const posix_spawn_file_actions_t *fa, in posix_spawn()
Dposix_spawn_file_actions_init.c3 int posix_spawn_file_actions_init(posix_spawn_file_actions_t *fa) in posix_spawn_file_actions_init()
Dposix_spawn_file_actions_destroy.c5 int posix_spawn_file_actions_destroy(posix_spawn_file_actions_t *fa) in posix_spawn_file_actions_destroy()
Dposix_spawnp.c5 const posix_spawn_file_actions_t *fa, in posix_spawnp()
Dposix_spawn_file_actions_addclose.c6 int posix_spawn_file_actions_addclose(posix_spawn_file_actions_t *fa, int fd) in posix_spawn_file_actions_addclose()
Dposix_spawn_file_actions_addfchdir.c7 int posix_spawn_file_actions_addfchdir_np(posix_spawn_file_actions_t *fa, int fd) in posix_spawn_file_actions_addfchdir_np()
Dposix_spawn_file_actions_adddup2.c6 int posix_spawn_file_actions_adddup2(posix_spawn_file_actions_t *fa, int srcfd, int fd) in posix_spawn_file_actions_adddup2()
Dposix_spawn_file_actions_addchdir.c7 int posix_spawn_file_actions_addchdir_np(posix_spawn_file_actions_t *restrict fa, const char *restr… in posix_spawn_file_actions_addchdir_np()
Dposix_spawn_file_actions_addopen.c7 int posix_spawn_file_actions_addopen(posix_spawn_file_actions_t *restrict fa, int fd, const char *r… in posix_spawn_file_actions_addopen()
/third_party/musl/porting/liteos_a/user/src/process/
Dposix_spawn.c17 const posix_spawn_file_actions_t *fa;
37 const posix_spawn_file_actions_t *fa = args->fa; in child()
165 const posix_spawn_file_actions_t *fa, in posix_spawn()
Dposix_spawnp.c6 const posix_spawn_file_actions_t *fa, in posix_spawnp()
Dposix_spawn_file_actions_addclose.c7 int posix_spawn_file_actions_addclose(posix_spawn_file_actions_t *fa, int fd) in posix_spawn_file_actions_addclose()
Dposix_spawn_file_actions_adddup2.c7 int posix_spawn_file_actions_adddup2(posix_spawn_file_actions_t *fa, int srcfd, int fd) in posix_spawn_file_actions_adddup2()
Dposix_spawn_file_actions_addopen.c8 int posix_spawn_file_actions_addopen(posix_spawn_file_actions_t *restrict fa, int fd, const char *r… in posix_spawn_file_actions_addopen()
/third_party/musl/libc-test/src/functional/
Dspawn.c28 posix_spawn_file_actions_t fa; in main()
/third_party/musl/src/stdio/
Dpopen.c16 posix_spawn_file_actions_t fa; in popen()
/third_party/musl/porting/liteos_a/user/src/stdio/
Dpopen.c17 posix_spawn_file_actions_t fa; in popen()
/third_party/libuv/src/unix/
Dprocess.c393 int (*addchdir_np)(const posix_spawn_file_actions_t *, const char *);
512 posix_spawn_file_actions_t* actions, in uv__spawn_set_posix_spawn_file_actions()
650 posix_spawn_file_actions_t* actions, in uv__spawn_resolve_and_spawn()
758 posix_spawn_file_actions_t actions; in uv__spawn_and_init_child_posix_spawn()

12