Searched refs:posix_spawnattr_t (Results 1 – 5 of 5) sorted by relevance
/bionic/libc/include/ |
D | spawn.h | 50 typedef struct __posix_spawnattr* posix_spawnattr_t; typedef 53 …st char* __path, const posix_spawn_file_actions_t* __actions, const posix_spawnattr_t* __attr, cha… 54 …st char* __file, const posix_spawn_file_actions_t* __actions, const posix_spawnattr_t* __attr, cha… 56 int posix_spawnattr_init(posix_spawnattr_t* __attr) __INTRODUCED_IN(28); 57 int posix_spawnattr_destroy(posix_spawnattr_t* __attr) __INTRODUCED_IN(28); 59 int posix_spawnattr_setflags(posix_spawnattr_t* __attr, short __flags) __INTRODUCED_IN(28); 60 int posix_spawnattr_getflags(const posix_spawnattr_t* __attr, short* __flags) __INTRODUCED_IN(28); 62 int posix_spawnattr_setpgroup(posix_spawnattr_t* __attr, pid_t __pgroup) __INTRODUCED_IN(28); 63 int posix_spawnattr_getpgroup(const posix_spawnattr_t* __attr, pid_t* __pgroup) __INTRODUCED_IN(28); 65 int posix_spawnattr_setsigmask(posix_spawnattr_t* __attr, const sigset_t* __mask) __INTRODUCED_IN(2… [all …]
|
/bionic/tests/headers/posix/ |
D | spawn_h.c | 34 TYPE(posix_spawnattr_t); in spawn_h() 51 … (*f)(pid_t*, const char*, const posix_spawn_file_actions_t*, const posix_spawnattr_t*, char* cons… in spawn_h() 57 FUNCTION(posix_spawnattr_destroy, int (*f)(posix_spawnattr_t*)); in spawn_h() 58 FUNCTION(posix_spawnattr_getflags, int (*f)(const posix_spawnattr_t*, short*)); in spawn_h() 59 FUNCTION(posix_spawnattr_getpgroup, int (*f)(const posix_spawnattr_t*, pid_t*)); in spawn_h() 60 FUNCTION(posix_spawnattr_getschedparam, int (*f)(const posix_spawnattr_t*, struct sched_param*)); in spawn_h() 61 FUNCTION(posix_spawnattr_getschedpolicy, int (*f)(const posix_spawnattr_t*, int*)); in spawn_h() 62 FUNCTION(posix_spawnattr_getsigdefault, int (*f)(const posix_spawnattr_t*, sigset_t*)); in spawn_h() 63 FUNCTION(posix_spawnattr_getsigmask, int (*f)(const posix_spawnattr_t*, sigset_t*)); in spawn_h() 64 FUNCTION(posix_spawnattr_init, int (*f)(posix_spawnattr_t*)); in spawn_h() [all …]
|
/bionic/libc/bionic/ |
D | spawn.cpp | 97 static void ApplyAttrs(short flags, const posix_spawnattr_t* attr) { in ApplyAttrs() 139 const posix_spawnattr_t* attr, in posix_spawn() 169 const posix_spawnattr_t* attr, char* const argv[], char* const env[]) { in posix_spawn() 174 const posix_spawnattr_t* attr, char* const argv[], char* const env[]) { in posix_spawnp() 178 int posix_spawnattr_init(posix_spawnattr_t* attr) { in posix_spawnattr_init() 183 int posix_spawnattr_destroy(posix_spawnattr_t* attr) { in posix_spawnattr_destroy() 189 int posix_spawnattr_setflags(posix_spawnattr_t* attr, short flags) { in posix_spawnattr_setflags() 199 int posix_spawnattr_getflags(const posix_spawnattr_t* attr, short* flags) { in posix_spawnattr_getflags() 204 int posix_spawnattr_setpgroup(posix_spawnattr_t* attr, pid_t pgroup) { in posix_spawnattr_setpgroup() 209 int posix_spawnattr_getpgroup(const posix_spawnattr_t* attr, pid_t* pgroup) { in posix_spawnattr_getpgroup() [all …]
|
D | system.cpp | 53 posix_spawnattr_t attributes; in system()
|
/bionic/tests/ |
D | spawn_test.cpp | 37 posix_spawnattr_t sa; in TEST() 43 posix_spawnattr_t sa; in TEST() 50 posix_spawnattr_t sa; in TEST() 69 posix_spawnattr_t sa; in TEST() 81 posix_spawnattr_t sa; in TEST() 100 posix_spawnattr_t sa; in TEST() 119 posix_spawnattr_t sa; in TEST() 138 posix_spawnattr_t sa; in TEST() 157 posix_spawnattr_t sa; in TEST() 174 posix_spawnattr_t sa; in TEST() [all …]
|