Symbol: display
bin/ls/ls.c
667
display(NULL, chp, options);
bin/ls/ls.c
727
display(p, chp, options);
bin/ls/ls.c
86
static void display(const FTSENT *, FTSENT *, int);
crypto/heimdal/appl/telnet/telnet/commands.c
2297
{ "display", displayhelp, display, 0 },
crypto/heimdal/lib/krb5/principal.c
402
quote_string(const char *s, char *out, size_t idx, size_t len, int display)
crypto/heimdal/lib/krb5/principal.c
407
if (q && display) {
crypto/heimdal/lib/krb5/principal.c
432
int display = (flags & KRB5_PRINCIPAL_UNPARSE_DISPLAY) != 0;
crypto/heimdal/lib/krb5/principal.c
444
idx = quote_string(princ_ncomp(principal, i), name, idx, len, display);
crypto/heimdal/lib/krb5/principal.c
464
idx = quote_string(princ_realm(principal), name, idx, len, display);
crypto/krb5/src/lib/crypto/crypto_tests/t_encrypt.c
149
display ("Enc output", &enc_out.ciphertext);
crypto/krb5/src/lib/crypto/crypto_tests/t_encrypt.c
158
display ("Enc output", &enc_out.ciphertext);
crypto/krb5/src/lib/crypto/crypto_tests/t_encrypt.c
214
display("Header", &iov[0].data);
crypto/krb5/src/lib/crypto/crypto_tests/t_encrypt.c
215
display("Data", &iov[1].data);
crypto/krb5/src/lib/crypto/crypto_tests/t_encrypt.c
216
display("Padding", &iov[3].data);
crypto/krb5/src/lib/crypto/crypto_tests/t_encrypt.c
217
display("Trailer", &iov[4].data);
crypto/krb5/src/lib/crypto/crypto_tests/t_encrypt.c
227
display("Header", &iov[0].data);
crypto/krb5/src/lib/crypto/crypto_tests/t_encrypt.c
228
display("Data", &iov[1].data);
crypto/krb5/src/lib/crypto/crypto_tests/t_encrypt.c
229
display("Padding", &iov[3].data);
crypto/krb5/src/lib/crypto/crypto_tests/t_encrypt.c
230
display("Trailer", &iov[4].data);
crypto/krb5/src/lib/crypto/crypto_tests/t_encrypt.c
244
display ("Enc output", &enc_out.ciphertext);
crypto/krb5/src/lib/crypto/crypto_tests/t_encrypt.c
247
display ("Enc output", &enc_out2.ciphertext);
crypto/krb5/src/lib/crypto/crypto_tests/t_encrypt.c
278
display ("Enc output", &enc_out.ciphertext);
crypto/openssh/channels.c
5131
is_path_to_xsocket(const char *display, char *path, size_t pathlen)
crypto/openssh/channels.c
5135
if (strlcpy(path, display, pathlen) >= pathlen) {
crypto/openssh/channels.c
5139
if (display[0] != '/')
crypto/openssh/channels.c
5160
const char *display;
crypto/openssh/channels.c
5167
display = getenv("DISPLAY");
crypto/openssh/channels.c
5168
if (!display) {
crypto/openssh/channels.c
5182
if (is_path_to_xsocket(display, path, sizeof(path))) {
crypto/openssh/channels.c
5199
if (strncmp(display, "unix:", 5) == 0 ||
crypto/openssh/channels.c
5200
display[0] == ':') {
crypto/openssh/channels.c
5202
if (sscanf(strrchr(display, ':') + 1, "%u",
crypto/openssh/channels.c
5205
"%.100s", display);
crypto/openssh/channels.c
5220
strlcpy(buf, display, sizeof(buf));
crypto/openssh/channels.c
5223
error("Could not find ':' in DISPLAY: %.100s", display);
crypto/openssh/channels.c
5234
display);
crypto/openssh/clientloop.c
268
client_x11_display_valid(const char *display)
crypto/openssh/clientloop.c
272
if (display == NULL)
crypto/openssh/clientloop.c
275
dlen = strlen(display);
crypto/openssh/clientloop.c
277
if (!isalnum((u_char)display[i]) &&
crypto/openssh/clientloop.c
278
strchr(SSH_X11_VALID_DISPLAY_CHARS, display[i]) == NULL) {
crypto/openssh/clientloop.c
279
debug("Invalid character '%c' in DISPLAY", display[i]);
crypto/openssh/clientloop.c
289
client_x11_get_proto(struct ssh *ssh, const char *display,
crypto/openssh/clientloop.c
305
if (!client_x11_display_valid(display)) {
crypto/openssh/clientloop.c
306
if (display != NULL)
crypto/openssh/clientloop.c
308
display);
crypto/openssh/clientloop.c
324
if (strncmp(display, "localhost:", 10) == 0) {
crypto/openssh/clientloop.c
326
display + 10)) < 0 ||
crypto/openssh/clientloop.c
331
display = xdisplay;
crypto/openssh/clientloop.c
359
xauth_path, xauthfile, display,
crypto/openssh/clientloop.c
372
xauth_path, xauthfile, display,
crypto/openssh/clientloop.c
403
display);
crypto/openssh/mux.c
1358
const char *display;
crypto/openssh/mux.c
1380
display = getenv("DISPLAY");
crypto/openssh/mux.c
1381
if (cctx->want_x_fwd && options.forward_x11 && display != NULL) {
crypto/openssh/mux.c
1385
if (client_x11_get_proto(ssh, display, options.xauth_location,
crypto/openssh/mux.c
1392
display, proto, data, 1);
crypto/openssh/session.c
1072
if (s->display)
crypto/openssh/session.c
1073
child_set_env(&env, &envsize, "DISPLAY", s->display);
crypto/openssh/session.c
1215
s->display != NULL && s->auth_proto != NULL && s->auth_data != NULL;
crypto/openssh/session.c
2367
free(s->display);
crypto/openssh/session.c
2368
s->display = NULL;
crypto/openssh/session.c
2450
free(s->display);
crypto/openssh/session.c
2580
char display[512], auth_display[512];
crypto/openssh/session.c
2597
if (s->display != NULL) {
crypto/openssh/session.c
2621
snprintf(display, sizeof display, "localhost:%u.%u",
crypto/openssh/session.c
2625
s->display = xstrdup(display);
crypto/openssh/session.c
2639
snprintf(display, sizeof display, "%.50s:%u.%u", inet_ntoa(my_addr),
crypto/openssh/session.c
2642
snprintf(display, sizeof display, "%.400s:%u.%u", hostname,
crypto/openssh/session.c
2645
s->display = xstrdup(display);
crypto/openssh/session.c
2646
s->auth_display = xstrdup(display);
crypto/openssh/session.c
528
ssh_packet_set_interactive(ssh, s->display != NULL,
crypto/openssh/session.h
48
char *display;
crypto/openssh/ssh.c
2198
const char *display, *term;
crypto/openssh/ssh.c
2205
display = getenv("DISPLAY");
crypto/openssh/ssh.c
2206
if (display == NULL && options.forward_x11)
crypto/openssh/ssh.c
2208
if (options.forward_x11 && client_x11_get_proto(ssh, display,
crypto/openssh/ssh.c
2214
x11_request_forwarding_with_spoofing(ssh, id, display, proto,
lib/libifconfig/libifconfig_sfp_tables.tpl.c
115
return (metadata->display);
lib/libifconfig/libifconfig_sfp_tables.tpl.c
35
const char *display; /* shortened display name */
lib/libifconfig/libifconfig_sfp_tables.tpl.c
73
.display = "{*disp*}",
libexec/rpc.rusersd/rusers_proc.c
105
getidle(const char *tty, const char *display __unused)
libexec/rpc.rusersd/rusers_proc.c
117
if (display && *display && (idle = XqueryIdle(display)) >= 0)
libexec/rpc.rusersd/rusers_proc.c
70
XqueryIdle(char *display)
libexec/rpc.rusersd/rusers_proc.c
78
if (!(dpy= XOpenDisplay(display))) {
libexec/rpc.rusersd/rusers_proc.c
79
syslog(LOG_ERR, "Cannot open display %s", display);
libexec/rpc.rusersd/rusers_proc.c
84
syslog(LOG_ERR, "%s: unable to get idle time", display);
libexec/rpc.rusersd/rusers_proc.c
88
syslog(LOG_ERR, "%s: Xidle extension not loaded", display);
libexec/rpc.rusersd/rusers_proc.c
93
syslog(LOG_ERR, "%s: server grabbed for over 10 seconds", display);
sbin/bsdlabel/bsdlabel.c
247
display(stdout, NULL);
sbin/bsdlabel/bsdlabel.c
377
display(stdout, NULL);
sbin/bsdlabel/bsdlabel.c
617
display(fp, NULL);
sbin/bsdlabel/bsdlabel.c
73
static void display(FILE *, const struct disklabel *);
stand/common/gfx_fb.c
2070
w = edid_info->display.max_horizontal_image_size;
stand/common/gfx_fb.c
2071
h = edid_info->display.max_vertical_image_size;
stand/common/gfx_fb.c
2941
if ((edid->display.supported_features
stand/common/gfx_fb.h
98
struct edid_basic_display_parameters display;
sys/arm/broadcom/bcm2835/bcm2835_fb.c
433
phandle_t chosen, display, root;
sys/arm/broadcom/bcm2835/bcm2835_fb.c
471
(display = fdt_find_compatible(root, "broadcom,bcm2835-fb", 1))) {
sys/arm/broadcom/bcm2835/bcm2835_fb.c
473
if ((OF_getencprop(display, "broadcom,width",
sys/arm/broadcom/bcm2835/bcm2835_fb.c
479
if ((OF_getencprop(display, "broadcom,height",
sys/arm/ti/am335x/am335x_lcd_syscons.c
368
phandle_t display, root;
sys/arm/ti/am335x/am335x_lcd_syscons.c
384
(display = am335x_syscons_find_panel_node(root))) {
sys/arm/ti/am335x/am335x_lcd_syscons.c
385
if ((OF_getencprop(display, "panel_width", &cell,
sys/arm/ti/am335x/am335x_lcd_syscons.c
389
if ((OF_getencprop(display, "panel_height", &cell,
sys/cam/scsi/scsi_ses.h
2045
struct ses_status_display display;
sys/cam/scsi/scsi_ses.h
923
struct ses_ctrl_display display;
sys/dev/ixgbe/if_ix.c
2457
goto display;
sys/dev/ixgbe/if_ix.c
2484
goto display;
sys/dev/ixgbe/if_ix.c
2490
display:
usr.bin/chpass/edit.c
61
static int display(const char *tfn, struct passwd *pw);
usr.bin/chpass/edit.c
71
if (display(tfn, pw) == -1)
usr.bin/fortune/fortune/fortune.c
121
static void display(FILEDESC *);
usr.bin/fortune/fortune/fortune.c
177
display(Fortfile);
usr.bin/hexdump/hexdump.c
79
display();
usr.bin/hexdump/hexdump.h
93
void display(void);
usr.bin/ipcs/ipcs.c
110
int display = SHMINFO | MSGINFO | SEMINFO;
usr.bin/ipcs/ipcs.c
133
display = SHMTOTAL;
usr.bin/ipcs/ipcs.c
136
display = SHMINFO;
usr.bin/ipcs/ipcs.c
148
display = MSGTOTAL;
usr.bin/ipcs/ipcs.c
151
display = MSGINFO;
usr.bin/ipcs/ipcs.c
154
display = SEMTOTAL;
usr.bin/ipcs/ipcs.c
157
display = SEMINFO;
usr.bin/ipcs/ipcs.c
160
display = SHMTOTAL | MSGTOTAL | SEMTOTAL;
usr.bin/ipcs/ipcs.c
199
if (display & (MSGINFO | MSGTOTAL)) {
usr.bin/ipcs/ipcs.c
200
if (display & MSGTOTAL)
usr.bin/ipcs/ipcs.c
203
if (display & MSGINFO) {
usr.bin/ipcs/ipcs.c
230
if (display & (SHMINFO | SHMTOTAL)) {
usr.bin/ipcs/ipcs.c
232
if (display & SHMTOTAL)
usr.bin/ipcs/ipcs.c
235
if (display & SHMINFO) {
usr.bin/ipcs/ipcs.c
260
if (display & (SEMINFO | SEMTOTAL)) {
usr.bin/ipcs/ipcs.c
264
if (display & SEMTOTAL)
usr.bin/ipcs/ipcs.c
267
if (display & SEMINFO) {
usr.bin/posixmqcontrol/posixmqcontrol.c
538
dual(mode_t mode, char display)
usr.bin/posixmqcontrol/posixmqcontrol.c
540
return (mode != 0 ? display : '-');
usr.bin/posixmqcontrol/posixmqcontrol.c
547
static const char display[] = "-xSs";
usr.bin/posixmqcontrol/posixmqcontrol.c
553
return (display[index]);
usr.bin/sockstat/main.c
2058
display();
usr.bin/systat/cmds.c
104
display();
usr.bin/systat/cmds.c
136
display();
usr.bin/systat/extern.h
93
void display(void);
usr.bin/systat/ifstat.c
210
if (!ifp->display || ifp->match == 0) {
usr.bin/systat/ifstat.c
257
p->display = true;
usr.bin/systat/ifstat.c
309
if (!ifp->display && new_inb > 0 && old_inb == 0) {
usr.bin/systat/ifstat.c
310
ifp->display = true;
usr.bin/systat/ifstat.c
434
if (ifp->display && ifp->match) {
usr.bin/systat/ifstat.c
80
bool display;
usr.bin/systat/keyboard.c
110
display();
usr.bin/systat/keyboard.c
78
display();
usr.bin/systat/main.c
134
display();
usr.bin/systat/main.c
243
display();
usr.bin/talk/display.c
46
void display(xwin_t *, wchar_t *);
usr.bin/talk/io.c
132
display(&his_win, &w);
usr.bin/talk/io.c
138
display(&my_win, &w);
usr.bin/talk/io.c
56
extern void display(xwin_t *, wchar_t *);
usr.sbin/apm/apm.c
383
int display = -1, batt_life = 0, ac_status = 0, standby = 0;
usr.sbin/apm/apm.c
403
display = is_true(optarg);
usr.sbin/apm/apm.c
447
if (haltcpu != -1 || enable != -1 || display != -1 || delta || dosleep
usr.sbin/apm/apm.c
483
if (display != -1)
usr.sbin/apm/apm.c
484
apm_display(fd, display);
usr.sbin/pppctl/pppctl.c
118
Receive(int fd, int display)
usr.sbin/pppctl/pppctl.c
145
if (display & (REC_SHOW|REC_VERBOSE)) {
usr.sbin/pppctl/pppctl.c
146
if (display & REC_VERBOSE)
usr.sbin/pppctl/pppctl.c
160
if (display & REC_PASSWD) {
usr.sbin/pppctl/pppctl.c
166
if (display & REC_VERBOSE)
usr.sbin/pppctl/pppctl.c
170
return Receive(fd, display & ~REC_PASSWD);