/third_party/musl/porting/uniproton/kernel/include/ |
H A D | spawn.h | 34 } posix_spawnattr_t; typedef 43 const posix_spawnattr_t *__restrict, char *const *__restrict, char *const *__restrict); 45 const posix_spawnattr_t *__restrict, char *const *__restrict, char *const *__restrict); 47 int posix_spawnattr_init(posix_spawnattr_t *); 48 int posix_spawnattr_destroy(posix_spawnattr_t *); 50 int posix_spawnattr_setflags(posix_spawnattr_t *, short); 51 int posix_spawnattr_getflags(const posix_spawnattr_t *__restrict, short *__restrict); 53 int posix_spawnattr_setpgroup(posix_spawnattr_t *, pid_t); 54 int posix_spawnattr_getpgroup(const posix_spawnattr_t *__restrict, pid_t *__restrict); 56 int posix_spawnattr_setsigmask(posix_spawnattr_t *__restric [all...] |
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
H A D | spawn.h | 34 } posix_spawnattr_t; typedef 43 const posix_spawnattr_t *__restrict, char *const *__restrict, char *const *__restrict); 45 const posix_spawnattr_t *__restrict, char *const *__restrict, char *const *__restrict); 47 int posix_spawnattr_init(posix_spawnattr_t *); 48 int posix_spawnattr_destroy(posix_spawnattr_t *); 50 int posix_spawnattr_setflags(posix_spawnattr_t *, short); 51 int posix_spawnattr_getflags(const posix_spawnattr_t *__restrict, short *__restrict); 53 int posix_spawnattr_setpgroup(posix_spawnattr_t *, pid_t); 54 int posix_spawnattr_getpgroup(const posix_spawnattr_t *__restrict, pid_t *__restrict); 56 int posix_spawnattr_setsigmask(posix_spawnattr_t *__restric [all...] |
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | spawn.h | 34 } posix_spawnattr_t; typedef 43 const posix_spawnattr_t *__restrict, char *const *__restrict, char *const *__restrict); 45 const posix_spawnattr_t *__restrict, char *const *__restrict, char *const *__restrict); 47 int posix_spawnattr_init(posix_spawnattr_t *); 48 int posix_spawnattr_destroy(posix_spawnattr_t *); 50 int posix_spawnattr_setflags(posix_spawnattr_t *, short); 51 int posix_spawnattr_getflags(const posix_spawnattr_t *__restrict, short *__restrict); 53 int posix_spawnattr_setpgroup(posix_spawnattr_t *, pid_t); 54 int posix_spawnattr_getpgroup(const posix_spawnattr_t *__restrict, pid_t *__restrict); 56 int posix_spawnattr_setsigmask(posix_spawnattr_t *__restric [all...] |
/third_party/musl/include/ |
H A D | spawn.h | 34 } posix_spawnattr_t; typedef 43 const posix_spawnattr_t *__restrict, char *const *__restrict, char *const *__restrict); 45 const posix_spawnattr_t *__restrict, char *const *__restrict, char *const *__restrict); 47 int posix_spawnattr_init(posix_spawnattr_t *); 48 int posix_spawnattr_destroy(posix_spawnattr_t *); 50 int posix_spawnattr_setflags(posix_spawnattr_t *, short); 51 int posix_spawnattr_getflags(const posix_spawnattr_t *__restrict, short *__restrict); 53 int posix_spawnattr_setpgroup(posix_spawnattr_t *, pid_t); 54 int posix_spawnattr_getpgroup(const posix_spawnattr_t *__restrict, pid_t *__restrict); 56 int posix_spawnattr_setsigmask(posix_spawnattr_t *__restric [all...] |
/third_party/musl/libc-test/src/api/ |
H A D | spawn.c | 7 T(posix_spawnattr_t) in f() 21 {int(*p)(pid_t*restrict,const char*restrict,const posix_spawn_file_actions_t*,const posix_spawnattr_t*restrict,char*const[restrict],char*const[restrict]) = posix_spawn;} in f() 27 {int(*p)(posix_spawnattr_t*) = posix_spawnattr_destroy;} in f() 28 {int(*p)(const posix_spawnattr_t*restrict,short*restrict) = posix_spawnattr_getflags;} in f() 29 {int(*p)(const posix_spawnattr_t*restrict,pid_t*restrict) = posix_spawnattr_getpgroup;} in f() 30 {int(*p)(posix_spawnattr_t*) = posix_spawnattr_init;} in f() 31 {int(*p)(posix_spawnattr_t*,short) = posix_spawnattr_setflags;} in f() 32 {int(*p)(posix_spawnattr_t*,pid_t) = posix_spawnattr_setpgroup;} in f() 33 {int(*p)(pid_t*restrict,const char*restrict,const posix_spawn_file_actions_t*,const posix_spawnattr_t*restrict,char*const[restrict],char*const[restrict]) = posix_spawnp;} in f() 38 {int(*p)(const posix_spawnattr_t*restric in g() [all...] |
/third_party/musl/porting/liteos_a/user/src/process/ |
H A D | posix_spawnattr_sched.c | 6 int posix_spawnattr_getschedparam(const posix_spawnattr_t *restrict attr, in posix_spawnattr_getschedparam() 13 int posix_spawnattr_setschedparam(posix_spawnattr_t *restrict attr, in posix_spawnattr_setschedparam() 20 int posix_spawnattr_getschedpolicy(const posix_spawnattr_t *restrict attr, int *restrict policy) in posix_spawnattr_getschedpolicy() 26 int posix_spawnattr_setschedpolicy(posix_spawnattr_t *attr, int policy) in posix_spawnattr_setschedpolicy()
|
H A D | posix_spawnattr_init.c | 4 int posix_spawnattr_init(posix_spawnattr_t *attr) in posix_spawnattr_init() 7 *attr = (posix_spawnattr_t){ 0 }; in posix_spawnattr_init()
|
H A D | posix_spawnp.c | 7 const posix_spawnattr_t *restrict attr, in posix_spawnp() 10 posix_spawnattr_t spawnp_attr = { 0 }; in posix_spawnp()
|
H A D | posix_spawn.c | 19 const posix_spawnattr_t *restrict attr; 39 const posix_spawnattr_t *restrict attr = args->attr; in child() 167 const posix_spawnattr_t *restrict attr, in posix_spawn() 181 args.attr = attr ? attr : &(const posix_spawnattr_t){0}; in posix_spawn()
|
H A D | posix_spawnattr_destroy.c | 4 int posix_spawnattr_destroy(posix_spawnattr_t *attr) in posix_spawnattr_destroy()
|
H A D | posix_spawnattr_setsigdefault.c | 4 int posix_spawnattr_setsigdefault(posix_spawnattr_t *restrict attr, const sigset_t *restrict def) in posix_spawnattr_setsigdefault()
|
H A D | posix_spawnattr_getsigdefault.c | 4 int posix_spawnattr_getsigdefault(const posix_spawnattr_t *restrict attr, sigset_t *restrict def) in posix_spawnattr_getsigdefault()
|
H A D | posix_spawnattr_setsigmask.c | 4 int posix_spawnattr_setsigmask(posix_spawnattr_t *restrict attr, const sigset_t *restrict mask) in posix_spawnattr_setsigmask()
|
H A D | posix_spawnattr_getsigmask.c | 4 int posix_spawnattr_getsigmask(const posix_spawnattr_t *restrict attr, sigset_t *restrict mask) in posix_spawnattr_getsigmask()
|
H A D | posix_spawnattr_getpgroup.c | 4 int posix_spawnattr_getpgroup(const posix_spawnattr_t *restrict attr, pid_t *restrict pgrp) in posix_spawnattr_getpgroup()
|
H A D | posix_spawnattr_setpgroup.c | 4 int posix_spawnattr_setpgroup(posix_spawnattr_t *attr, pid_t pgrp) in posix_spawnattr_setpgroup()
|
/third_party/musl/src/process/ |
H A D | posix_spawnattr_sched.c | 6 int posix_spawnattr_getschedparam(const posix_spawnattr_t *restrict attr, in posix_spawnattr_getschedparam() 13 int posix_spawnattr_setschedparam(posix_spawnattr_t *restrict attr, in posix_spawnattr_setschedparam() 20 int posix_spawnattr_getschedpolicy(const posix_spawnattr_t *restrict attr, int *restrict policy) in posix_spawnattr_getschedpolicy() 26 int posix_spawnattr_setschedpolicy(posix_spawnattr_t *attr, int policy) in posix_spawnattr_setschedpolicy()
|
H A D | posix_spawnattr_init.c | 4 int posix_spawnattr_init(posix_spawnattr_t *attr) in posix_spawnattr_init() 7 *attr = (posix_spawnattr_t){ 0 }; in posix_spawnattr_init()
|
H A D | posix_spawnp.c | 7 const posix_spawnattr_t *restrict attr, in posix_spawnp() 10 posix_spawnattr_t spawnp_attr = { 0 }; in posix_spawnp()
|
H A D | posix_spawn.c | 20 const posix_spawnattr_t *restrict attr; 40 const posix_spawnattr_t *restrict attr = args->attr; in child() 172 const posix_spawnattr_t *restrict attr, in posix_spawn() 185 args.attr = attr ? attr : &(const posix_spawnattr_t){0}; in posix_spawn()
|
H A D | posix_spawnattr_destroy.c | 4 int posix_spawnattr_destroy(posix_spawnattr_t *attr) in posix_spawnattr_destroy()
|
/third_party/musl/libc-test/src/functionalext/supplement/process/ |
H A D | posix_spawnattr_setflags.c | 29 posix_spawnattr_t spawnattr; in posix_spawnattr_setflags_0100() 62 posix_spawnattr_t spawnattr; in posix_spawnattr_setflags_0200()
|
H A D | posix_spawn.c | 52 posix_spawnattr_t attr; in posix_spawn_0200() 87 posix_spawnattr_t attr; in posix_spawn_0300()
|
H A D | posix_spawnp.c | 52 posix_spawnattr_t attr; in posix_spawnp_0200() 87 posix_spawnattr_t attr; in posix_spawnp_0300()
|
/third_party/python/Mac/Tools/ |
H A D | pythonw.c | 92 setup_spawnattr(posix_spawnattr_t* spawnattr) in setup_spawnattr() 228 posix_spawnattr_t spawnattr = NULL; in main()
|