Lines Matching refs:names
1 /* killall.c - Send signal (default: TERM) to all processes with given names.
15 Send a signal (default: TERM) to all processes with the given names.
33 char **names;
58 if (TT.names[offset] == name) {
75 TT.names = toys.optargs;
83 if (TT.s || (*TT.names && **TT.names == '-')) {
84 if (0 > (TT.signum = sig_to_num(TT.s ? TT.s : (*TT.names)+1))) {
89 TT.names++;
100 names_to_pid(TT.names, kill_process, 1);
105 perror_msg_raw(TT.names[i]);