Symbol: proc_send
usr.bin/tmux/client.c
383
if (proc_send(client_peer, msg, -1, data, size) != 0) {
usr.bin/tmux/client.c
390
proc_send(client_peer, msg, -1, NULL, 0);
usr.bin/tmux/client.c
446
proc_send(client_peer, MSG_IDENTIFY_LONGFLAGS, -1, &flags, sizeof flags);
usr.bin/tmux/client.c
447
proc_send(client_peer, MSG_IDENTIFY_LONGFLAGS, -1, &client_flags,
usr.bin/tmux/client.c
450
proc_send(client_peer, MSG_IDENTIFY_TERM, -1, termname,
usr.bin/tmux/client.c
452
proc_send(client_peer, MSG_IDENTIFY_FEATURES, -1, &feat, sizeof feat);
usr.bin/tmux/client.c
454
proc_send(client_peer, MSG_IDENTIFY_TTYNAME, -1, ttynam,
usr.bin/tmux/client.c
456
proc_send(client_peer, MSG_IDENTIFY_CWD, -1, cwd, strlen(cwd) + 1);
usr.bin/tmux/client.c
459
proc_send(client_peer, MSG_IDENTIFY_TERMINFO, -1,
usr.bin/tmux/client.c
465
proc_send(client_peer, MSG_IDENTIFY_STDIN, fd, NULL, 0);
usr.bin/tmux/client.c
468
proc_send(client_peer, MSG_IDENTIFY_STDOUT, fd, NULL, 0);
usr.bin/tmux/client.c
471
proc_send(client_peer, MSG_IDENTIFY_CLIENTPID, -1, &pid, sizeof pid);
usr.bin/tmux/client.c
477
proc_send(client_peer, MSG_IDENTIFY_ENVIRON, -1, *ss, sslen);
usr.bin/tmux/client.c
480
proc_send(client_peer, MSG_IDENTIFY_DONE, -1, NULL, 0);
usr.bin/tmux/client.c
533
proc_send(client_peer, MSG_EXITING, -1, NULL, 0);
usr.bin/tmux/client.c
539
proc_send(client_peer, MSG_EXITING, -1, NULL, 0);
usr.bin/tmux/client.c
542
proc_send(client_peer, MSG_RESIZE, -1, NULL, 0);
usr.bin/tmux/client.c
551
proc_send(client_peer, MSG_WAKEUP, -1, NULL, 0);
usr.bin/tmux/client.c
650
proc_send(client_peer, MSG_RESIZE, -1, NULL, 0);
usr.bin/tmux/client.c
678
proc_send(client_peer, MSG_EXITING, -1, NULL, 0);
usr.bin/tmux/client.c
742
proc_send(client_peer, MSG_EXITING, -1, NULL, 0);
usr.bin/tmux/client.c
752
proc_send(client_peer, MSG_EXITING, -1, NULL, 0);
usr.bin/tmux/client.c
758
proc_send(client_peer, MSG_EXITING, -1, NULL, 0);
usr.bin/tmux/client.c
770
proc_send(client_peer, MSG_EXITING, -1, NULL, 0);
usr.bin/tmux/client.c
792
proc_send(client_peer, MSG_UNLOCK, -1, NULL, 0);
usr.bin/tmux/cmd-attach-session.c
165
proc_send(c->peer, MSG_READY, -1, NULL, 0);
usr.bin/tmux/cmd-new-session.c
339
proc_send(c->peer, MSG_READY, -1, NULL, 0);
usr.bin/tmux/file.c
228
proc_send(c->peer, MSG_WRITE_OPEN, -1, &msg, sizeof msg);
usr.bin/tmux/file.c
255
proc_send(c->peer, MSG_WRITE_OPEN, -1, &msg, sizeof msg);
usr.bin/tmux/file.c
285
proc_send(c->peer, MSG_WRITE_OPEN, -1, &msg, sizeof msg);
usr.bin/tmux/file.c
356
if (proc_send(cf->peer, MSG_WRITE_OPEN, -1, msg, msglen) != 0) {
usr.bin/tmux/file.c
434
if (proc_send(cf->peer, MSG_READ_OPEN, -1, msg, msglen) != 0) {
usr.bin/tmux/file.c
462
proc_send(cf->peer, MSG_READ_CANCEL, -1, &msg, sizeof msg);
usr.bin/tmux/file.c
495
if (proc_send(cf->peer, MSG_WRITE, -1, msg, msglen) != 0)
usr.bin/tmux/file.c
507
proc_send(cf->peer, MSG_WRITE_CLOSE, -1, &close, sizeof close);
usr.bin/tmux/file.c
632
proc_send(peer, MSG_WRITE_READY, -1, &reply, sizeof reply);
usr.bin/tmux/file.c
692
proc_send(cf->peer, MSG_READ_DONE, -1, &msg, sizeof msg);
usr.bin/tmux/file.c
725
proc_send(cf->peer, MSG_READ, -1, msg, msglen);
usr.bin/tmux/file.c
793
proc_send(peer, MSG_READ_DONE, -1, &reply, sizeof reply);
usr.bin/tmux/proc.c
139
proc_send(peer, MSG_VERSION, -1, NULL, 0);
usr.bin/tmux/server-client.c
2372
proc_send(c->peer, MSG_EXIT, -1, data, size);
usr.bin/tmux/server-client.c
2376
proc_send(c->peer, MSG_SHUTDOWN, -1, NULL, 0);
usr.bin/tmux/server-client.c
2379
proc_send(c->peer, c->exit_msgtype, -1, name, strlen(name) + 1);
usr.bin/tmux/server-client.c
2667
proc_send(c->peer, MSG_EXITED, -1, NULL, 0);
usr.bin/tmux/server-client.c
2993
proc_send(c->peer, MSG_SHELL, -1, shell, strlen(shell) + 1);
usr.bin/tmux/server-client.c
3075
proc_send(c->peer, MSG_FLAGS, -1, &c->flags, sizeof c->flags);
usr.bin/tmux/server-client.c
607
proc_send(c->peer, MSG_SUSPEND, -1, NULL, 0);
usr.bin/tmux/server-client.c
651
proc_send(c->peer, MSG_EXEC, -1, msg, cmdsize + shellsize);
usr.bin/tmux/server-fn.c
218
proc_send(c->peer, MSG_LOCK, -1, cmd, strlen(cmd) + 1);
usr.bin/tmux/tmux.h
2552
int proc_send(struct tmuxpeer *, enum msgtype, int, const void *, size_t);