Symbol: client
regress/sys/kern/getpeereid/getpeereid_test.c
47
client(struct sockaddr_un *sun)
usr.bin/tmux/tmux.h
1910
typedef void (*client_file_cb) (struct client *, const char *, int, int,
usr.bin/tmux/tmux.h
1947
typedef int (*prompt_input_cb)(struct client *, void *, const char *, int);
usr.bin/tmux/tmux.h
1949
typedef struct visible_ranges *(*overlay_check_cb)(struct client*, void *,
usr.bin/tmux/tmux.h
1951
typedef struct screen *(*overlay_mode_cb)(struct client *, void *, u_int *,
usr.bin/tmux/tmux.h
1953
typedef void (*overlay_draw_cb)(struct client *, void *,
usr.bin/tmux/tmux.h
1955
typedef int (*overlay_key_cb)(struct client *, void *, struct key_event *);
usr.bin/tmux/tmux.h
1956
typedef void (*overlay_free_cb)(struct client *, void *);
usr.bin/tmux/tmux.h
1957
typedef void (*overlay_resize_cb)(struct client *, void *);
usr.bin/tmux/tmux.h
2146
TAILQ_HEAD(clients, client);
usr.bin/tmux/tmux.h
2358
int load_cfg(const char *, struct client *, struct cmdq_item *,
usr.bin/tmux/tmux.h
2361
struct client *, struct cmdq_item *, struct cmd_find_state *,
usr.bin/tmux/tmux.h
2420
struct format_tree *format_create(struct client *, struct cmdq_item *, int,
usr.bin/tmux/tmux.h
2437
struct client *, struct session *, struct winlink *,
usr.bin/tmux/tmux.h
2440
struct client *, struct cmd_find_state *);
usr.bin/tmux/tmux.h
2442
struct format_tree *format_create_defaults(struct cmdq_item *, struct client *,
usr.bin/tmux/tmux.h
2445
struct client *, struct cmd_find_state *);
usr.bin/tmux/tmux.h
2447
void format_defaults(struct format_tree *, struct client *,
usr.bin/tmux/tmux.h
2454
void format_lost_client(struct client *);
usr.bin/tmux/tmux.h
2470
void notify_client(const char *, struct client *);
usr.bin/tmux/tmux.h
2588
void tty_update_client_offset(struct client *);
usr.bin/tmux/tmux.h
2613
int tty_init(struct tty *, struct client *);
usr.bin/tmux/tmux.h
2779
int cmd_find_from_client(struct cmd_find_state *, struct client *,
usr.bin/tmux/tmux.h
2839
struct cmd_parse_input *, struct client *,
usr.bin/tmux/tmux.h
2873
struct cmdq_item *cmdq_append(struct client *, struct cmdq_item *);
usr.bin/tmux/tmux.h
2877
u_int cmdq_next(struct client *);
usr.bin/tmux/tmux.h
2878
struct cmdq_item *cmdq_running(struct client *);
usr.bin/tmux/tmux.h
2908
struct cmdq_item *, struct client *, struct key_event *,
usr.bin/tmux/tmux.h
2925
struct client_file *file_create_with_client(struct client *, int,
usr.bin/tmux/tmux.h
2930
int file_can_print(struct client *);
usr.bin/tmux/tmux.h
2931
void printflike(2, 3) file_print(struct client *, const char *, ...);
usr.bin/tmux/tmux.h
2932
void printflike(2, 0) file_vprint(struct client *, const char *, va_list);
usr.bin/tmux/tmux.h
2933
void file_print_buffer(struct client *, void *, size_t);
usr.bin/tmux/tmux.h
2934
void printflike(2, 3) file_error(struct client *, const char *, ...);
usr.bin/tmux/tmux.h
2935
void file_write(struct client *, const char *, int, const void *, size_t,
usr.bin/tmux/tmux.h
2937
struct client_file *file_read(struct client *, const char *, client_file_cb,
usr.bin/tmux/tmux.h
2975
void server_client_set_overlay(struct client *, u_int, overlay_check_cb,
usr.bin/tmux/tmux.h
2978
void server_client_clear_overlay(struct client *);
usr.bin/tmux/tmux.h
2983
void server_client_set_key_table(struct client *, const char *);
usr.bin/tmux/tmux.h
2984
const char *server_client_get_key_table(struct client *);
usr.bin/tmux/tmux.h
2985
int server_client_check_nested(struct client *);
usr.bin/tmux/tmux.h
2986
int server_client_handle_key(struct client *, struct key_event *);
usr.bin/tmux/tmux.h
2988
int server_client_open(struct client *, char **);
usr.bin/tmux/tmux.h
2989
void server_client_unref(struct client *);
usr.bin/tmux/tmux.h
2990
void server_client_set_session(struct client *, struct session *);
usr.bin/tmux/tmux.h
2991
void server_client_lost(struct client *);
usr.bin/tmux/tmux.h
2992
void server_client_suspend(struct client *);
usr.bin/tmux/tmux.h
2993
void server_client_detach(struct client *, enum msgtype);
usr.bin/tmux/tmux.h
2994
void server_client_exec(struct client *, const char *);
usr.bin/tmux/tmux.h
2996
const char *server_client_get_cwd(struct client *, struct session *);
usr.bin/tmux/tmux.h
2997
void server_client_set_flags(struct client *, const char *);
usr.bin/tmux/tmux.h
2998
const char *server_client_get_flags(struct client *);
usr.bin/tmux/tmux.h
2999
struct client_window *server_client_get_client_window(struct client *, u_int);
usr.bin/tmux/tmux.h
3000
struct client_window *server_client_add_client_window(struct client *, u_int);
usr.bin/tmux/tmux.h
3001
struct window_pane *server_client_get_pane(struct client *);
usr.bin/tmux/tmux.h
3002
void server_client_set_pane(struct client *, struct window_pane *);
usr.bin/tmux/tmux.h
3004
void server_client_print(struct client *, int, struct evbuffer *);
usr.bin/tmux/tmux.h
3007
void server_redraw_client(struct client *);
usr.bin/tmux/tmux.h
3008
void server_status_client(struct client *);
usr.bin/tmux/tmux.h
3018
void server_lock_client(struct client *);
usr.bin/tmux/tmux.h
3034
void status_timer_start(struct client *);
usr.bin/tmux/tmux.h
3037
u_int status_prompt_line_at(struct client *);
usr.bin/tmux/tmux.h
3038
int status_at_line(struct client *);
usr.bin/tmux/tmux.h
3039
u_int status_line_size(struct client *);
usr.bin/tmux/tmux.h
3040
struct style_range *status_get_range(struct client *, u_int, u_int);
usr.bin/tmux/tmux.h
3041
void status_init(struct client *);
usr.bin/tmux/tmux.h
3042
void status_free(struct client *);
usr.bin/tmux/tmux.h
3043
int status_redraw(struct client *);
usr.bin/tmux/tmux.h
3044
void printflike(6, 7) status_message_set(struct client *, int, int, int, int,
usr.bin/tmux/tmux.h
3046
void status_message_clear(struct client *);
usr.bin/tmux/tmux.h
3047
int status_message_redraw(struct client *);
usr.bin/tmux/tmux.h
3048
void status_prompt_set(struct client *, struct cmd_find_state *,
usr.bin/tmux/tmux.h
3051
void status_prompt_clear(struct client *);
usr.bin/tmux/tmux.h
3052
int status_prompt_redraw(struct client *);
usr.bin/tmux/tmux.h
3053
int status_prompt_key(struct client *, key_code);
usr.bin/tmux/tmux.h
3054
void status_prompt_update(struct client *, const char *, const char *);
usr.bin/tmux/tmux.h
3062
void default_window_size(struct client *, struct session *, struct window *,
usr.bin/tmux/tmux.h
3071
struct colour_palette *, struct client *);
usr.bin/tmux/tmux.h
3082
void input_request_reply(struct client *, enum input_request_type, void *);
usr.bin/tmux/tmux.h
3083
void input_cancel_requests(struct client *);
usr.bin/tmux/tmux.h
3271
void screen_redraw_screen(struct client *);
usr.bin/tmux/tmux.h
3272
void screen_redraw_pane(struct client *, struct window_pane *, int);
usr.bin/tmux/tmux.h
3367
int window_pane_key(struct window_pane *, struct client *,
usr.bin/tmux/tmux.h
3460
typedef void (*mode_tree_menu_cb)(void *, struct client *, key_code);
usr.bin/tmux/tmux.h
3465
typedef void (*mode_tree_each_cb)(void *, void *, struct client *, key_code);
usr.bin/tmux/tmux.h
3475
struct client *, key_code, int);
usr.bin/tmux/tmux.h
3495
int mode_tree_key(struct mode_tree_data *, struct client *, key_code *,
usr.bin/tmux/tmux.h
3497
void mode_tree_run_command(struct client *, struct cmd_find_state *,
usr.bin/tmux/tmux.h
3523
void window_copy_start_drag(struct client *, struct mouse_event *);
usr.bin/tmux/tmux.h
3539
void control_discard(struct client *);
usr.bin/tmux/tmux.h
3540
void control_start(struct client *);
usr.bin/tmux/tmux.h
3541
void control_ready(struct client *);
usr.bin/tmux/tmux.h
3542
void control_stop(struct client *);
usr.bin/tmux/tmux.h
3543
void control_set_pane_on(struct client *, struct window_pane *);
usr.bin/tmux/tmux.h
3544
void control_set_pane_off(struct client *, struct window_pane *);
usr.bin/tmux/tmux.h
3545
void control_continue_pane(struct client *, struct window_pane *);
usr.bin/tmux/tmux.h
3546
void control_pause_pane(struct client *, struct window_pane *);
usr.bin/tmux/tmux.h
3547
struct window_pane_offset *control_pane_offset(struct client *,
usr.bin/tmux/tmux.h
3549
void control_reset_offsets(struct client *);
usr.bin/tmux/tmux.h
3550
void printflike(2, 3) control_write(struct client *, const char *, ...);
usr.bin/tmux/tmux.h
3551
void control_write_output(struct client *, struct window_pane *);
usr.bin/tmux/tmux.h
3552
int control_all_done(struct client *);
usr.bin/tmux/tmux.h
3553
void control_add_sub(struct client *, const char *, enum control_sub_type,
usr.bin/tmux/tmux.h
3555
void control_remove_sub(struct client *, const char *);
usr.bin/tmux/tmux.h
3564
void control_notify_client_session_changed(struct client *);
usr.bin/tmux/tmux.h
3565
void control_notify_client_detached(struct client *);
usr.bin/tmux/tmux.h
3672
struct cmdq_item *, struct client *,
usr.bin/tmux/tmux.h
3675
struct cmdq_item *, struct client *,
usr.bin/tmux/tmux.h
3679
u_int, u_int, struct client *, enum box_lines, const char *,
usr.bin/tmux/tmux.h
3683
u_int, u_int, struct client *, enum box_lines, const char *,
usr.bin/tmux/tmux.h
3686
struct screen *menu_mode_cb(struct client *, void *, u_int *, u_int *);
usr.bin/tmux/tmux.h
3687
struct visible_ranges *menu_check_cb(struct client *, void *, u_int, u_int,
usr.bin/tmux/tmux.h
3689
void menu_draw_cb(struct client *, void *,
usr.bin/tmux/tmux.h
3691
void menu_free_cb(struct client *, void *);
usr.bin/tmux/tmux.h
3692
int menu_key_cb(struct client *, void *, struct key_event *);
usr.bin/tmux/tmux.h
3704
char **, const char *, const char *, struct client *,
usr.bin/tmux/tmux.h
3707
void popup_write(struct client *, const char *, size_t);
usr.bin/tmux/tmux.h
3708
int popup_editor(struct client *, const char *, size_t,
usr.bin/tmux/tmux.h
3710
int popup_present(struct client *);
usr.bin/tmux/tmux.h
3711
int popup_modify(struct client *, const char *, const char *,
usr.bin/tmux/tmux.h
3745
int server_acl_join(struct client *);
usr.sbin/httpd/httpd.h
314
struct client {