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
2145
TAILQ_HEAD(clients, client);
usr.bin/tmux/tmux.h
2357
int load_cfg(const char *, struct client *, struct cmdq_item *,
usr.bin/tmux/tmux.h
2360
struct client *, struct cmdq_item *, struct cmd_find_state *,
usr.bin/tmux/tmux.h
2419
struct format_tree *format_create(struct client *, struct cmdq_item *, int,
usr.bin/tmux/tmux.h
2436
struct client *, struct session *, struct winlink *,
usr.bin/tmux/tmux.h
2439
struct client *, struct cmd_find_state *);
usr.bin/tmux/tmux.h
2441
struct format_tree *format_create_defaults(struct cmdq_item *, struct client *,
usr.bin/tmux/tmux.h
2444
struct client *, struct cmd_find_state *);
usr.bin/tmux/tmux.h
2446
void format_defaults(struct format_tree *, struct client *,
usr.bin/tmux/tmux.h
2453
void format_lost_client(struct client *);
usr.bin/tmux/tmux.h
2469
void notify_client(const char *, struct client *);
usr.bin/tmux/tmux.h
2587
void tty_update_client_offset(struct client *);
usr.bin/tmux/tmux.h
2612
int tty_init(struct tty *, struct client *);
usr.bin/tmux/tmux.h
2778
int cmd_find_from_client(struct cmd_find_state *, struct client *,
usr.bin/tmux/tmux.h
2838
struct cmd_parse_input *, struct client *,
usr.bin/tmux/tmux.h
2872
struct cmdq_item *cmdq_append(struct client *, struct cmdq_item *);
usr.bin/tmux/tmux.h
2876
u_int cmdq_next(struct client *);
usr.bin/tmux/tmux.h
2877
struct cmdq_item *cmdq_running(struct client *);
usr.bin/tmux/tmux.h
2907
struct cmdq_item *, struct client *, struct key_event *,
usr.bin/tmux/tmux.h
2924
struct client_file *file_create_with_client(struct client *, int,
usr.bin/tmux/tmux.h
2929
int file_can_print(struct client *);
usr.bin/tmux/tmux.h
2930
void printflike(2, 3) file_print(struct client *, const char *, ...);
usr.bin/tmux/tmux.h
2931
void printflike(2, 0) file_vprint(struct client *, const char *, va_list);
usr.bin/tmux/tmux.h
2932
void file_print_buffer(struct client *, void *, size_t);
usr.bin/tmux/tmux.h
2933
void printflike(2, 3) file_error(struct client *, const char *, ...);
usr.bin/tmux/tmux.h
2934
void file_write(struct client *, const char *, int, const void *, size_t,
usr.bin/tmux/tmux.h
2936
struct client_file *file_read(struct client *, const char *, client_file_cb,
usr.bin/tmux/tmux.h
2974
void server_client_set_overlay(struct client *, u_int, overlay_check_cb,
usr.bin/tmux/tmux.h
2977
void server_client_clear_overlay(struct client *);
usr.bin/tmux/tmux.h
2982
void server_client_set_key_table(struct client *, const char *);
usr.bin/tmux/tmux.h
2983
const char *server_client_get_key_table(struct client *);
usr.bin/tmux/tmux.h
2984
int server_client_check_nested(struct client *);
usr.bin/tmux/tmux.h
2985
int server_client_handle_key(struct client *, struct key_event *);
usr.bin/tmux/tmux.h
2987
int server_client_open(struct client *, char **);
usr.bin/tmux/tmux.h
2988
void server_client_unref(struct client *);
usr.bin/tmux/tmux.h
2989
void server_client_set_session(struct client *, struct session *);
usr.bin/tmux/tmux.h
2990
void server_client_lost(struct client *);
usr.bin/tmux/tmux.h
2991
void server_client_suspend(struct client *);
usr.bin/tmux/tmux.h
2992
void server_client_detach(struct client *, enum msgtype);
usr.bin/tmux/tmux.h
2993
void server_client_exec(struct client *, const char *);
usr.bin/tmux/tmux.h
2995
const char *server_client_get_cwd(struct client *, struct session *);
usr.bin/tmux/tmux.h
2996
void server_client_set_flags(struct client *, const char *);
usr.bin/tmux/tmux.h
2997
const char *server_client_get_flags(struct client *);
usr.bin/tmux/tmux.h
2998
struct client_window *server_client_get_client_window(struct client *, u_int);
usr.bin/tmux/tmux.h
2999
struct client_window *server_client_add_client_window(struct client *, u_int);
usr.bin/tmux/tmux.h
3000
struct window_pane *server_client_get_pane(struct client *);
usr.bin/tmux/tmux.h
3001
void server_client_set_pane(struct client *, struct window_pane *);
usr.bin/tmux/tmux.h
3003
void server_client_print(struct client *, int, struct evbuffer *);
usr.bin/tmux/tmux.h
3006
void server_redraw_client(struct client *);
usr.bin/tmux/tmux.h
3007
void server_status_client(struct client *);
usr.bin/tmux/tmux.h
3017
void server_lock_client(struct client *);
usr.bin/tmux/tmux.h
3033
void status_timer_start(struct client *);
usr.bin/tmux/tmux.h
3036
u_int status_prompt_line_at(struct client *);
usr.bin/tmux/tmux.h
3037
int status_at_line(struct client *);
usr.bin/tmux/tmux.h
3038
u_int status_line_size(struct client *);
usr.bin/tmux/tmux.h
3039
struct style_range *status_get_range(struct client *, u_int, u_int);
usr.bin/tmux/tmux.h
3040
void status_init(struct client *);
usr.bin/tmux/tmux.h
3041
void status_free(struct client *);
usr.bin/tmux/tmux.h
3042
int status_redraw(struct client *);
usr.bin/tmux/tmux.h
3043
void printflike(6, 7) status_message_set(struct client *, int, int, int, int,
usr.bin/tmux/tmux.h
3045
void status_message_clear(struct client *);
usr.bin/tmux/tmux.h
3046
int status_message_redraw(struct client *);
usr.bin/tmux/tmux.h
3047
void status_prompt_set(struct client *, struct cmd_find_state *,
usr.bin/tmux/tmux.h
3050
void status_prompt_clear(struct client *);
usr.bin/tmux/tmux.h
3051
int status_prompt_redraw(struct client *);
usr.bin/tmux/tmux.h
3052
int status_prompt_key(struct client *, key_code);
usr.bin/tmux/tmux.h
3053
void status_prompt_update(struct client *, const char *, const char *);
usr.bin/tmux/tmux.h
3061
void default_window_size(struct client *, struct session *, struct window *,
usr.bin/tmux/tmux.h
3070
struct colour_palette *, struct client *);
usr.bin/tmux/tmux.h
3081
void input_request_reply(struct client *, enum input_request_type, void *);
usr.bin/tmux/tmux.h
3082
void input_cancel_requests(struct client *);
usr.bin/tmux/tmux.h
3270
void screen_redraw_screen(struct client *);
usr.bin/tmux/tmux.h
3271
void screen_redraw_pane(struct client *, struct window_pane *, int);
usr.bin/tmux/tmux.h
3366
int window_pane_key(struct window_pane *, struct client *,
usr.bin/tmux/tmux.h
3459
typedef void (*mode_tree_menu_cb)(void *, struct client *, key_code);
usr.bin/tmux/tmux.h
3464
typedef void (*mode_tree_each_cb)(void *, void *, struct client *, key_code);
usr.bin/tmux/tmux.h
3474
struct client *, key_code, int);
usr.bin/tmux/tmux.h
3494
int mode_tree_key(struct mode_tree_data *, struct client *, key_code *,
usr.bin/tmux/tmux.h
3496
void mode_tree_run_command(struct client *, struct cmd_find_state *,
usr.bin/tmux/tmux.h
3522
void window_copy_start_drag(struct client *, struct mouse_event *);
usr.bin/tmux/tmux.h
3538
void control_discard(struct client *);
usr.bin/tmux/tmux.h
3539
void control_start(struct client *);
usr.bin/tmux/tmux.h
3540
void control_ready(struct client *);
usr.bin/tmux/tmux.h
3541
void control_stop(struct client *);
usr.bin/tmux/tmux.h
3542
void control_set_pane_on(struct client *, struct window_pane *);
usr.bin/tmux/tmux.h
3543
void control_set_pane_off(struct client *, struct window_pane *);
usr.bin/tmux/tmux.h
3544
void control_continue_pane(struct client *, struct window_pane *);
usr.bin/tmux/tmux.h
3545
void control_pause_pane(struct client *, struct window_pane *);
usr.bin/tmux/tmux.h
3546
struct window_pane_offset *control_pane_offset(struct client *,
usr.bin/tmux/tmux.h
3548
void control_reset_offsets(struct client *);
usr.bin/tmux/tmux.h
3549
void printflike(2, 3) control_write(struct client *, const char *, ...);
usr.bin/tmux/tmux.h
3550
void control_write_output(struct client *, struct window_pane *);
usr.bin/tmux/tmux.h
3551
int control_all_done(struct client *);
usr.bin/tmux/tmux.h
3552
void control_add_sub(struct client *, const char *, enum control_sub_type,
usr.bin/tmux/tmux.h
3554
void control_remove_sub(struct client *, const char *);
usr.bin/tmux/tmux.h
3563
void control_notify_client_session_changed(struct client *);
usr.bin/tmux/tmux.h
3564
void control_notify_client_detached(struct client *);
usr.bin/tmux/tmux.h
3671
struct cmdq_item *, struct client *,
usr.bin/tmux/tmux.h
3674
struct cmdq_item *, struct client *,
usr.bin/tmux/tmux.h
3678
u_int, u_int, struct client *, enum box_lines, const char *,
usr.bin/tmux/tmux.h
3682
u_int, u_int, struct client *, enum box_lines, const char *,
usr.bin/tmux/tmux.h
3685
struct screen *menu_mode_cb(struct client *, void *, u_int *, u_int *);
usr.bin/tmux/tmux.h
3686
struct visible_ranges *menu_check_cb(struct client *, void *, u_int, u_int,
usr.bin/tmux/tmux.h
3688
void menu_draw_cb(struct client *, void *,
usr.bin/tmux/tmux.h
3690
void menu_free_cb(struct client *, void *);
usr.bin/tmux/tmux.h
3691
int menu_key_cb(struct client *, void *, struct key_event *);
usr.bin/tmux/tmux.h
3703
char **, const char *, const char *, struct client *,
usr.bin/tmux/tmux.h
3706
void popup_write(struct client *, const char *, size_t);
usr.bin/tmux/tmux.h
3707
int popup_editor(struct client *, const char *, size_t,
usr.bin/tmux/tmux.h
3709
int popup_present(struct client *);
usr.bin/tmux/tmux.h
3710
int popup_modify(struct client *, const char *, const char *,
usr.bin/tmux/tmux.h
3744
int server_acl_join(struct client *);
usr.sbin/httpd/httpd.h
314
struct client {