Home
last modified time | relevance | path

Searched refs:infop (Results 1 - 25 of 28) sorted by relevance

12

/third_party/ltp/testcases/kernel/syscalls/waitid/
H A Dwaitid08.c17 static siginfo_t *infop; variable
32 memset(infop, 0, sizeof(*infop)); in run()
33 TST_EXP_PASS(waitid(P_PID, pid_child, infop, WSTOPPED)); in run()
35 TST_EXP_EQ_LI(infop->si_pid, pid_child); in run()
36 TST_EXP_EQ_LI(infop->si_status, SIGSTOP); in run()
37 TST_EXP_EQ_LI(infop->si_signo, SIGCHLD); in run()
38 TST_EXP_EQ_LI(infop->si_code, CLD_STOPPED); in run()
44 memset(infop, 0, sizeof(*infop)); in run()
[all...]
H A Dwaitid05.c21 static siginfo_t *infop; variable
34 TST_EXP_FAIL(waitid(P_PGID, pid_group+1, infop, WEXITED), ECHILD); in run()
36 memset(infop, 0, sizeof(*infop)); in run()
37 TST_EXP_PASS(waitid(P_PGID, pid_group, infop, WEXITED)); in run()
39 TST_EXP_EQ_LI(infop->si_pid, pid_child); in run()
40 TST_EXP_EQ_LI(infop->si_status, 0); in run()
41 TST_EXP_EQ_LI(infop->si_signo, SIGCHLD); in run()
42 TST_EXP_EQ_LI(infop->si_code, CLD_EXITED); in run()
49 {&infop,
[all...]
H A Dwaitid06.c21 static siginfo_t *infop; variable
31 TST_EXP_FAIL(waitid(P_PID, pid_child+1, infop, WEXITED), ECHILD); in run()
33 memset(infop, 0, sizeof(*infop)); in run()
34 TST_EXP_PASS(waitid(P_PID, pid_child, infop, WEXITED)); in run()
36 TST_EXP_EQ_LI(infop->si_pid, pid_child); in run()
37 TST_EXP_EQ_LI(infop->si_status, 0); in run()
38 TST_EXP_EQ_LI(infop->si_signo, SIGCHLD); in run()
39 TST_EXP_EQ_LI(infop->si_code, CLD_EXITED); in run()
46 {&infop,
[all...]
H A Dwaitid07.c17 static siginfo_t *infop; variable
30 memset(infop, 0, sizeof(*infop)); in run()
31 TST_EXP_PASS(waitid(P_PID, pid_child, infop, WSTOPPED | WNOWAIT)); in run()
33 TST_EXP_EQ_LI(infop->si_pid, pid_child); in run()
34 TST_EXP_EQ_LI(infop->si_status, SIGSTOP); in run()
35 TST_EXP_EQ_LI(infop->si_signo, SIGCHLD); in run()
36 TST_EXP_EQ_LI(infop->si_code, CLD_STOPPED); in run()
48 {&infop, .size = sizeof(*infop)},
[all...]
H A Dwaitid01.c18 static siginfo_t *infop; variable
28 TST_EXP_PASS(waitid(P_ALL, 0, infop, WEXITED)); in run()
29 TST_EXP_EQ_LI(infop->si_pid, pidchild); in run()
30 TST_EXP_EQ_LI(infop->si_status, 123); in run()
31 TST_EXP_EQ_LI(infop->si_signo, SIGCHLD); in run()
32 TST_EXP_EQ_LI(infop->si_code, CLD_EXITED); in run()
39 {&infop, .size = sizeof(*infop)},
H A Dwaitid11.c19 static siginfo_t *infop; variable
33 TST_EXP_PASS(waitid(P_ALL, 0, infop, WEXITED)); in run()
34 TST_EXP_EQ_LI(infop->si_pid, pidchild); in run()
35 TST_EXP_EQ_LI(infop->si_status, SIGKILL); in run()
36 TST_EXP_EQ_LI(infop->si_signo, SIGCHLD); in run()
37 TST_EXP_EQ_LI(infop->si_code, CLD_KILLED); in run()
44 {&infop, .size = sizeof(*infop)},
H A Dwaitid10.c19 static siginfo_t *infop; variable
36 TST_EXP_PASS(waitid(P_ALL, 0, infop, WEXITED)); in run()
37 TST_EXP_EQ_LI(infop->si_pid, pidchild); in run()
38 TST_EXP_EQ_LI(infop->si_status, SIGFPE); in run()
39 TST_EXP_EQ_LI(infop->si_signo, SIGCHLD); in run()
42 TST_EXP_EQ_LI(infop->si_code, CLD_DUMPED); in run()
44 TST_EXP_EQ_LI(infop->si_code, CLD_KILLED); in run()
76 {&infop, .size = sizeof(*infop)},
H A Dwaitid04.c18 static siginfo_t *infop; variable
30 memset(infop, 0, sizeof(*infop)); in run()
31 TST_EXP_PASS(waitid(P_ALL, pid_child, infop, WNOHANG | WEXITED)); in run()
33 TST_EXP_EQ_LI(infop->si_pid, 0); in run()
43 {&infop, .size = sizeof(*infop)},
H A Dwaitid03.c18 static siginfo_t *infop; variable
22 TST_EXP_FAIL(waitid(P_ALL, 0, infop, WNOHANG | WEXITED), ECHILD); in run()
28 {&infop, .size = sizeof(*infop)},
H A Dwaitid02.c17 static siginfo_t *infop; variable
21 TST_EXP_FAIL(waitid(P_ALL, 0, infop, WNOHANG), EINVAL); in run()
27 {&infop, .size = sizeof(*infop)},
H A Dwaitid09.c20 static siginfo_t *infop; variable
27 TST_EXP_FAIL(waitid(P_PID, 1, infop, WEXITED), ECHILD); in run()
34 {&infop, .size = sizeof(*infop)},
/third_party/curl/lib/
H A Dftplistparser.c308 struct fileinfo *infop) in ftp_pl_insert_finfo()
316 struct curl_fileinfo *finfo = &infop->info; in ftp_pl_insert_finfo()
319 char *str = Curl_dyn_ptr(&infop->buf); in ftp_pl_insert_finfo()
352 Curl_llist_insert_next(llist, llist->tail, finfo, &infop->list); in ftp_pl_insert_finfo()
355 Curl_fileinfo_cleanup(infop); in ftp_pl_insert_finfo()
394 struct fileinfo *infop; in Curl_ftp_parselist() local
407 infop = parser->file_data; in Curl_ftp_parselist()
408 finfo = &infop->info; in Curl_ftp_parselist()
410 if(Curl_dyn_addn(&infop->buf, &c, 1)) { in Curl_ftp_parselist()
414 len = Curl_dyn_len(&infop in Curl_ftp_parselist()
307 ftp_pl_insert_finfo(struct Curl_easy *data, struct fileinfo *infop) ftp_pl_insert_finfo() argument
[all...]
H A Dmprintf.c1048 struct nsprintf *infop = f; in addbyter() local
1049 if(infop->length < infop->max) { in addbyter()
1051 *infop->buffer++ = outc; /* store */ in addbyter()
1052 infop->length++; /* we are now one byte larger */ in addbyter()
1096 struct asprintf *infop = f; in alloc_addbyter() local
1097 CURLcode result = Curl_dyn_addn(infop->b, &outc, 1); in alloc_addbyter()
1099 infop->merr = result == CURLE_TOO_LARGE ? MERR_TOO_LARGE : MERR_MEM; in alloc_addbyter()
/third_party/elfutils/libdw/
H A Ddwarf_getpubnames.c113 unsigned char *infop in get_offsets() local
116 if (read_4ubyte_unaligned_noncvt (infop) == DWARF3_LENGTH_64_BIT) in get_offsets()
/third_party/backends/backend/
H A Dhp-option.h275 void * valp, SANE_Int *infop, HpScsi scsi,
H A Dhp-option.c627 SANE_Action action, void * valp, SANE_Int *infop, in hp_option_imm_control()
639 return hp_option_imm_set(optset, this, data, valp, infop, scsi); in hp_option_imm_control()
648 SANE_Action action, void * valp, SANE_Int *infop) in hp_option_control()
659 return hp_option_set(this, data, valp, infop); in hp_option_control()
3960 void * valp, SANE_Int *infop, HpScsi scsi, in sanei_hp_optset_control()
3968 if (infop) in sanei_hp_optset_control()
3969 *infop = 0; in sanei_hp_optset_control()
3971 infop = &my_info; in sanei_hp_optset_control()
3994 RETURN_IF_FAIL( hp_option_imm_control(this, opt, data, action, valp, infop, in sanei_hp_optset_control()
3997 RETURN_IF_FAIL( hp_option_control(opt, data, action, valp, infop ) ); in sanei_hp_optset_control()
626 hp_option_imm_control(HpOptSet optset, HpOption this, HpData data, SANE_Action action, void * valp, SANE_Int *infop, HpScsi scsi) hp_option_imm_control() argument
647 hp_option_control(HpOption this, HpData data, SANE_Action action, void * valp, SANE_Int *infop) hp_option_control() argument
3958 sanei_hp_optset_control(HpOptSet this, HpData data, int optnum, SANE_Action action, void * valp, SANE_Int *infop, HpScsi scsi, hp_bool_t immediate) sanei_hp_optset_control() argument
[all...]
/third_party/node/deps/uv/src/unix/
H A Dprocess.c1069 siginfo_t infop; in uv_kill() local
1071 waitid(P_PID, pid, &infop, WNOHANG | WNOWAIT | WEXITED) == 0) in uv_kill()
/third_party/libuv/src/unix/
H A Dprocess.c1095 siginfo_t infop; in uv_kill() local
1097 waitid(P_PID, pid, &infop, WNOHANG | WNOWAIT | WEXITED) == 0) in uv_kill()
/third_party/rust/crates/libc/src/unix/solarish/
H A Dmod.rs2807 pub fn waitid(idtype: idtype_t, id: id_t, infop: *mut ::siginfo_t, options: ::c_int) in waitid()
3134 pub fn processor_info(processorid: ::processorid_t, infop: *mut processor_info_t) -> ::c_int; in processor_info()
/third_party/rust/crates/libc/src/unix/linux_like/
H A Dmod.rs1762 pub fn waitid(idtype: idtype_t, id: id_t, infop: *mut ::siginfo_t, options: ::c_int) in waitid()
/third_party/rust/crates/libc/src/unix/bsd/freebsdlike/dragonfly/
H A Dmod.rs1616 infop: *mut ::siginfo_t, in waitid()
/third_party/rust/crates/libc/src/unix/haiku/
H A Dmod.rs1703 pub fn waitid(idtype: idtype_t, id: id_t, infop: *mut ::siginfo_t, options: ::c_int) in waitid()
/third_party/rust/crates/libc/src/unix/bsd/netbsdlike/netbsd/
H A Dmod.rs2687 infop: *mut ::siginfo_t, in waitid()
/third_party/rust/crates/libc/src/unix/nto/
H A Dmod.rs2706 pub fn waitid(idtype: idtype_t, id: id_t, infop: *mut ::siginfo_t, options: ::c_int) in waitid()
/third_party/rust/crates/libc/src/fuchsia/
H A Dmod.rs3916 pub fn waitid(idtype: idtype_t, id: id_t, infop: *mut ::siginfo_t, options: ::c_int) in waitid()

Completed in 57 milliseconds

12