Symbol: proc_send
usr.bin/tmux/client.c
384
if (proc_send(client_peer, msg, -1, data, size) != 0) {
usr.bin/tmux/client.c
391
proc_send(client_peer, msg, -1, NULL, 0);
usr.bin/tmux/client.c
453
proc_send(client_peer, MSG_IDENTIFY_LONGFLAGS, -1, &flags, sizeof flags);
usr.bin/tmux/client.c
454
proc_send(client_peer, MSG_IDENTIFY_LONGFLAGS, -1, &client_flags,
usr.bin/tmux/client.c
457
proc_send(client_peer, MSG_IDENTIFY_TERM, -1, termname,
usr.bin/tmux/client.c
459
proc_send(client_peer, MSG_IDENTIFY_FEATURES, -1, &feat, sizeof feat);
usr.bin/tmux/client.c
461
proc_send(client_peer, MSG_IDENTIFY_TTYNAME, -1, ttynam,
usr.bin/tmux/client.c
463
proc_send(client_peer, MSG_IDENTIFY_CWD, -1, cwd, strlen(cwd) + 1);
usr.bin/tmux/client.c
466
proc_send(client_peer, MSG_IDENTIFY_TERMINFO, -1,
usr.bin/tmux/client.c
472
proc_send(client_peer, MSG_IDENTIFY_STDIN, fd, NULL, 0);
usr.bin/tmux/client.c
475
proc_send(client_peer, MSG_IDENTIFY_STDOUT, fd, NULL, 0);
usr.bin/tmux/client.c
478
proc_send(client_peer, MSG_IDENTIFY_CLIENTPID, -1, &pid, sizeof pid);
usr.bin/tmux/client.c
484
proc_send(client_peer, MSG_IDENTIFY_ENVIRON, -1, *ss, sslen);
usr.bin/tmux/client.c
487
proc_send(client_peer, MSG_IDENTIFY_DONE, -1, NULL, 0);
usr.bin/tmux/client.c
540
proc_send(client_peer, MSG_EXITING, -1, NULL, 0);
usr.bin/tmux/client.c
546
proc_send(client_peer, MSG_EXITING, -1, NULL, 0);
usr.bin/tmux/client.c
549
proc_send(client_peer, MSG_RESIZE, -1, NULL, 0);
usr.bin/tmux/client.c
558
proc_send(client_peer, MSG_WAKEUP, -1, NULL, 0);
usr.bin/tmux/client.c
657
proc_send(client_peer, MSG_RESIZE, -1, NULL, 0);
usr.bin/tmux/client.c
685
proc_send(client_peer, MSG_EXITING, -1, NULL, 0);
usr.bin/tmux/client.c
749
proc_send(client_peer, MSG_EXITING, -1, NULL, 0);
usr.bin/tmux/client.c
759
proc_send(client_peer, MSG_EXITING, -1, NULL, 0);
usr.bin/tmux/client.c
765
proc_send(client_peer, MSG_EXITING, -1, NULL, 0);
usr.bin/tmux/client.c
777
proc_send(client_peer, MSG_EXITING, -1, NULL, 0);
usr.bin/tmux/client.c
799
proc_send(client_peer, MSG_UNLOCK, -1, NULL, 0);
usr.bin/tmux/cmd-attach-session.c
156
proc_send(c->peer, MSG_READY, -1, NULL, 0);
usr.bin/tmux/cmd-new-session.c
329
proc_send(c->peer, MSG_READY, -1, NULL, 0);
usr.bin/tmux/file.c
227
proc_send(c->peer, MSG_WRITE_OPEN, -1, &msg, sizeof msg);
usr.bin/tmux/file.c
254
proc_send(c->peer, MSG_WRITE_OPEN, -1, &msg, sizeof msg);
usr.bin/tmux/file.c
284
proc_send(c->peer, MSG_WRITE_OPEN, -1, &msg, sizeof msg);
usr.bin/tmux/file.c
355
if (proc_send(cf->peer, MSG_WRITE_OPEN, -1, msg, msglen) != 0) {
usr.bin/tmux/file.c
429
if (proc_send(cf->peer, MSG_READ_OPEN, -1, msg, msglen) != 0) {
usr.bin/tmux/file.c
457
proc_send(cf->peer, MSG_READ_CANCEL, -1, &msg, sizeof msg);
usr.bin/tmux/file.c
490
if (proc_send(cf->peer, MSG_WRITE, -1, msg, msglen) != 0)
usr.bin/tmux/file.c
502
proc_send(cf->peer, MSG_WRITE_CLOSE, -1, &close, sizeof close);
usr.bin/tmux/file.c
627
proc_send(peer, MSG_WRITE_READY, -1, &reply, sizeof reply);
usr.bin/tmux/file.c
687
proc_send(cf->peer, MSG_READ_DONE, -1, &msg, sizeof msg);
usr.bin/tmux/file.c
720
proc_send(cf->peer, MSG_READ, -1, msg, msglen);
usr.bin/tmux/file.c
788
proc_send(peer, MSG_READ_DONE, -1, &reply, sizeof reply);
usr.bin/tmux/proc.c
138
proc_send(peer, MSG_VERSION, -1, NULL, 0);
usr.bin/tmux/server-client.c
1886
proc_send(c->peer, MSG_EXIT, -1, data, size);
usr.bin/tmux/server-client.c
1890
proc_send(c->peer, MSG_SHUTDOWN, -1, NULL, 0);
usr.bin/tmux/server-client.c
1893
proc_send(c->peer, c->exit_msgtype, -1, name, strlen(name) + 1);
usr.bin/tmux/server-client.c
2191
proc_send(c->peer, MSG_EXITED, -1, NULL, 0);
usr.bin/tmux/server-client.c
2505
proc_send(c->peer, MSG_SHELL, -1, shell, strlen(shell) + 1);
usr.bin/tmux/server-client.c
2589
proc_send(c->peer, MSG_FLAGS, -1, &c->flags, sizeof c->flags);
usr.bin/tmux/server-client.c
556
proc_send(c->peer, MSG_SUSPEND, -1, NULL, 0);
usr.bin/tmux/server-client.c
600
proc_send(c->peer, MSG_EXEC, -1, msg, cmdsize + shellsize);
usr.bin/tmux/server-fn.c
180
proc_send(c->peer, MSG_LOCK, -1, cmd, strlen(cmd) + 1);
usr.bin/tmux/tmux.h
2335
int proc_send(struct tmuxpeer *, enum msgtype, int, const void *, size_t);