Symbol: style
bin/md5/md5.c
289
int style;
bin/md5/md5.c
578
hf->style = new_style;
bin/md5/md5.c
672
switch (hf->style) {
bin/md5/md5.c
690
switch (hf->style) {
bin/md5/md5.c
859
if (hf->style == STYLE_CKSUM) {
bin/md5/md5.c
874
if (hf->style == STYLE_MD5) {
lib/libc/gen/auth_subr.c
289
free(as->style);
lib/libc/gen/auth_subr.c
307
if (as == NULL || as->style == NULL || as->name == NULL ||
lib/libc/gen/auth_subr.c
311
len = snprintf(path, sizeof(path), _PATH_AUTHPROG "%s", as->style);
lib/libc/gen/auth_subr.c
320
auth_call(as, path, as->style, "-s", "challenge", "--", as->name,
lib/libc/gen/auth_subr.c
426
return (as->style);
lib/libc/gen/auth_subr.c
503
if (value == as->style)
lib/libc/gen/auth_subr.c
508
free(as->style);
lib/libc/gen/auth_subr.c
509
as->style = value;
lib/libc/gen/auth_subr.c
94
char *style; /* style of authentication used */
lib/libc/gen/authenticate.c
323
auth_usercheck(char *name, char *style, char *type, char *password)
lib/libc/gen/authenticate.c
341
if (style == NULL && (style = strchr(name, ':')) != NULL)
lib/libc/gen/authenticate.c
342
*style++ = '\0';
lib/libc/gen/authenticate.c
360
if ((style = login_getstyle(lc, style, type)) == NULL) {
lib/libc/gen/authenticate.c
376
as = auth_verify(as, style, name, lc->lc_class, (char *)NULL);
lib/libc/gen/authenticate.c
383
auth_userokay(char *name, char *style, char *type, char *password)
lib/libc/gen/authenticate.c
387
as = auth_usercheck(name, style, type, password);
lib/libc/gen/authenticate.c
394
auth_userchallenge(char *name, char *style, char *type, char **challengep)
lib/libc/gen/authenticate.c
412
if (style == NULL && (style = strchr(name, ':')) != NULL)
lib/libc/gen/authenticate.c
413
*style++ = '\0';
lib/libc/gen/authenticate.c
431
if ((style = login_getstyle(lc, style, type)) == NULL ||
lib/libc/gen/authenticate.c
436
if (auth_setitem(as, AUTHV_STYLE, style) < 0 ||
lib/libc/gen/authenticate.c
453
char *style, *name, *challenge, *class;
lib/libc/gen/authenticate.c
461
if ((style = auth_getitem(as, AUTHV_STYLE)) == NULL ||
lib/libc/gen/authenticate.c
469
len = snprintf(path, sizeof(path), _PATH_AUTHPROG "%s", style);
lib/libc/gen/authenticate.c
489
auth_call(as, path, style, "-s", "response", "--", name,
lib/libc/gen/authenticate.c
513
auth_verify(auth_session_t *as, char *style, char *name, ...)
lib/libc/gen/authenticate.c
518
if ((name == NULL || style == NULL) && as == NULL)
lib/libc/gen/authenticate.c
525
if (style != NULL && auth_setitem(as, AUTHV_STYLE, style) < 0)
lib/libc/gen/authenticate.c
531
style = auth_getitem(as, AUTHV_STYLE);
lib/libc/gen/authenticate.c
536
snprintf(path, sizeof(path), _PATH_AUTHPROG "%s", style);
lib/libc/gen/login_cap.c
156
login_getstyle(login_cap_t *lc, char *style, char *atype)
lib/libc/gen/login_cap.c
164
if (style && strcmp(style, "s/key") == 0)
lib/libc/gen/login_cap.c
165
style = "skey";
lib/libc/gen/login_cap.c
199
if (!style)
lib/libc/gen/login_cap.c
200
style = authtypes[0];
lib/libc/gen/login_cap.c
202
while (*authtypes && strcmp(style, *authtypes))
libexec/ftpd/ftpd.c
676
char *cp, *shell, *style, *host;
libexec/ftpd/ftpd.c
694
if ((style = strchr(name, ':')) != NULL)
libexec/ftpd/ftpd.c
695
*style++ = 0;
libexec/ftpd/ftpd.c
747
if (lc && (style = login_getstyle(lc, style, "auth-ftp")) == NULL) {
libexec/ftpd/ftpd.c
756
auth_setitem(as, AUTHV_STYLE, style) < 0 ||
libexec/login_radius/login_radius.c
137
if ((style = strrchr(__progname, '/')))
libexec/login_radius/login_radius.c
138
++style;
libexec/login_radius/login_radius.c
140
style = __progname;
libexec/login_radius/login_radius.c
142
if (strncmp(style, "login_", 6) == 0)
libexec/login_radius/login_radius.c
143
style += 6;
libexec/login_radius/login_radius.c
145
if (!cleanstring(style))
libexec/login_radius/login_radius.c
182
c = raddauth(username, class, style,
libexec/login_radius/login_radius.c
90
char *class, *service, *style, *username, *password, *emsg;
libexec/login_radius/login_radius.h
20
raddauth(char *username, char *class, char *style, char *challenge,
libexec/login_radius/raddauth.c
149
raddauth(char *username, char *class, char *style, char *challenge,
libexec/login_radius/raddauth.c
189
i = strlen(style);
libexec/login_radius/raddauth.c
190
while (v && (p = strstr(v, style)) != NULL) {
libexec/login_radius/raddauth.c
255
if (strcmp(style, "radius") != 0) {
libexec/login_radius/raddauth.c
256
if (asprintf(&userstyle, "%s:%s", username, style) == -1)
regress/usr.bin/ssh/misc/ssh-verify-attestation/ssh-verify-attestation.c
333
const char *attfmt = "packed", *style = NULL;
regress/usr.bin/ssh/misc/ssh-verify-attestation/ssh-verify-attestation.c
410
style = "basic";
regress/usr.bin/ssh/misc/ssh-verify-attestation/ssh-verify-attestation.c
415
style = "self";
regress/usr.bin/ssh/misc/ssh-verify-attestation/ssh-verify-attestation.c
428
logit("%s: verified %s attestation", argv[2], style);
sys/arch/m88k/m88k/db_trace.c
814
} style = Default;
sys/arch/m88k/m88k/db_trace.c
826
case 's': style = Stack ; break;
sys/arch/m88k/m88k/db_trace.c
827
case 'f': style = Frame ; break;
sys/arch/m88k/m88k/db_trace.c
839
if (!have_addr && style != Default) {
sys/arch/m88k/m88k/db_trace.c
843
if (have_addr && style == Default)
sys/arch/m88k/m88k/db_trace.c
844
style = Frame;
sys/arch/m88k/m88k/db_trace.c
846
switch (style) {
sys/arch/octeon/dev/ogxreg.h
504
#define PKI_STYLE_BUF(style) (0x0024000ULL + (style) * 8)
sys/arch/octeon/dev/ogxreg.h
520
#define PKI_CL_STYLE_CFG(cl, style) (0x00500000ULL + (cl) * 0x10000 + \
sys/arch/octeon/dev/ogxreg.h
521
(style) * 8)
sys/arch/octeon/dev/ogxreg.h
547
#define PKI_CL_STYLE_CFG2(cl, style) (0x00500800ULL + (cl) * 0x10000 + \
sys/arch/octeon/dev/ogxreg.h
548
(style) * 8)
sys/arch/octeon/dev/ogxreg.h
549
#define PKI_CL_STYLE_ALG(cl, style) (0x00501000ULL + (cl) * 0x10000 + \
sys/arch/octeon/dev/ogxreg.h
550
(style) * 8)
usr.bin/dig/dig.c
369
dns_master_style_t *style = NULL;
usr.bin/dig/dig.c
396
result = dns_master_stylecreate2(&style, styleflags,
usr.bin/dig/dig.c
400
result = dns_master_stylecreate2(&style, styleflags,
usr.bin/dig/dig.c
404
result = dns_master_stylecreate2(&style, styleflags,
usr.bin/dig/dig.c
501
style, flags, query->lookup->textname, buf);
usr.bin/dig/dig.c
520
style, flags, buf);
usr.bin/dig/dig.c
530
style, flags, buf);
usr.bin/dig/dig.c
545
style, flags, buf);
usr.bin/dig/dig.c
555
style, flags, buf);
usr.bin/dig/dig.c
566
style, flags,
usr.bin/dig/dig.c
576
style, flags,
usr.bin/dig/dig.c
595
if (style != NULL)
usr.bin/dig/dig.c
596
dns_master_styledestroy(&style);
usr.bin/dig/lib/dns/include/dns/masterdump.h
120
const dns_master_style_t *style,
usr.bin/dig/lib/dns/include/dns/masterdump.h
137
const dns_master_style_t *style,
usr.bin/dig/lib/dns/include/dns/masterdump.h
141
dns_master_stylecreate2(dns_master_style_t **style, unsigned int flags,
usr.bin/dig/lib/dns/include/dns/masterdump.h
147
dns_master_styledestroy(dns_master_style_t **style);
usr.bin/dig/lib/dns/include/dns/message.h
283
const dns_master_style_t *style,
usr.bin/dig/lib/dns/include/dns/message.h
290
const dns_master_style_t *style,
usr.bin/dig/lib/dns/masterdump.c
155
totext_ctx_init(const dns_master_style_t *style, dns_totext_ctx_t *ctx) {
usr.bin/dig/lib/dns/masterdump.c
158
REQUIRE(style->tab_width != 0);
usr.bin/dig/lib/dns/masterdump.c
160
ctx->style = *style;
usr.bin/dig/lib/dns/masterdump.c
168
if ((ctx->style.flags & DNS_STYLEFLAG_MULTILINE) != 0) {
usr.bin/dig/lib/dns/masterdump.c
182
if ((ctx->style.flags & DNS_STYLEFLAG_COMMENTDATA) != 0) {
usr.bin/dig/lib/dns/masterdump.c
190
result = indent(&col, ctx->style.rdata_column,
usr.bin/dig/lib/dns/masterdump.c
191
ctx->style.tab_width, &buf);
usr.bin/dig/lib/dns/masterdump.c
224
if ((result = indent(&column, ctx->style.col, \
usr.bin/dig/lib/dns/masterdump.c
225
ctx->style.tab_width, target)) \
usr.bin/dig/lib/dns/masterdump.c
263
if ((ctx->style.flags & DNS_STYLEFLAG_COMMENTDATA) != 0)
usr.bin/dig/lib/dns/masterdump.c
270
! ((ctx->style.flags & DNS_STYLEFLAG_OMIT_OWNER) != 0 &&
usr.bin/dig/lib/dns/masterdump.c
283
if ((ctx->style.flags & DNS_STYLEFLAG_NO_TTL) == 0 &&
usr.bin/dig/lib/dns/masterdump.c
284
!((ctx->style.flags & DNS_STYLEFLAG_OMIT_TTL) != 0 &&
usr.bin/dig/lib/dns/masterdump.c
307
if ((ctx->style.flags & DNS_STYLEFLAG_TTL) == 0) {
usr.bin/dig/lib/dns/masterdump.c
316
if ((ctx->style.flags & DNS_STYLEFLAG_NO_CLASS) == 0 &&
usr.bin/dig/lib/dns/masterdump.c
317
((ctx->style.flags & DNS_STYLEFLAG_OMIT_CLASS) == 0 ||
usr.bin/dig/lib/dns/masterdump.c
341
if ((ctx->style.flags & DNS_STYLEFLAG_KEYDATA) != 0) {
usr.bin/dig/lib/dns/masterdump.c
369
ctx->style.flags,
usr.bin/dig/lib/dns/masterdump.c
370
ctx->style.line_length -
usr.bin/dig/lib/dns/masterdump.c
371
ctx->style.rdata_column,
usr.bin/dig/lib/dns/masterdump.c
372
ctx->style.split_width,
usr.bin/dig/lib/dns/masterdump.c
501
const dns_master_style_t *style,
usr.bin/dig/lib/dns/masterdump.c
506
result = totext_ctx_init(style, &ctx);
usr.bin/dig/lib/dns/masterdump.c
520
const dns_master_style_t *style,
usr.bin/dig/lib/dns/masterdump.c
525
result = totext_ctx_init(style, &ctx);
usr.bin/dig/lib/dns/masterdump.c
543
dns_master_style_t *style;
usr.bin/dig/lib/dns/masterdump.c
546
style = malloc(sizeof(*style));
usr.bin/dig/lib/dns/masterdump.c
547
if (style == NULL)
usr.bin/dig/lib/dns/masterdump.c
550
style->flags = flags;
usr.bin/dig/lib/dns/masterdump.c
551
style->ttl_column = ttl_column;
usr.bin/dig/lib/dns/masterdump.c
552
style->class_column = class_column;
usr.bin/dig/lib/dns/masterdump.c
553
style->type_column = type_column;
usr.bin/dig/lib/dns/masterdump.c
554
style->rdata_column = rdata_column;
usr.bin/dig/lib/dns/masterdump.c
555
style->line_length = line_length;
usr.bin/dig/lib/dns/masterdump.c
556
style->tab_width = tab_width;
usr.bin/dig/lib/dns/masterdump.c
557
style->split_width = split_width;
usr.bin/dig/lib/dns/masterdump.c
559
*stylep = style;
usr.bin/dig/lib/dns/masterdump.c
565
dns_master_style_t *style;
usr.bin/dig/lib/dns/masterdump.c
568
style = *stylep;
usr.bin/dig/lib/dns/masterdump.c
570
free(style);
usr.bin/dig/lib/dns/masterdump.c
63
dns_master_style_t style;
usr.bin/dig/lib/dns/message.c
2301
const dns_master_style_t *style,
usr.bin/dig/lib/dns/message.c
2349
style,
usr.bin/dig/lib/dns/message.c
2354
style,
usr.bin/dig/lib/dns/message.c
2520
const dns_master_style_t *style,
usr.bin/dig/lib/dns/message.c
2763
result = dns_master_rdatasettotext(name, ps, style, target);
usr.bin/dig/lib/dns/message.c
2774
result = dns_master_rdatasettotext(name, ps, style, target);
usr.bin/lock/lock.c
105
style = login_getstyle(lc, optarg, "auth-lock");
usr.bin/lock/lock.c
106
if (style == NULL)
usr.bin/lock/lock.c
198
|| ((nstyle = style) && strcmp(s, nstyle) == 0))
usr.bin/lock/lock.c
70
char *p, *style, *nstyle, *ttynam;
usr.bin/lock/lock.c
81
style = NULL;
usr.bin/login/login.c
133
char *style;
usr.bin/login/login.c
142
char *lipaddr, *script, *ripaddr, *style, *type, *fqdn;
usr.bin/login/login.c
400
if ((style = strchr(username, ':')) != NULL)
usr.bin/login/login.c
401
*style++ = '\0';
usr.bin/login/login.c
442
style = login_getstyle(lc, style, type);
usr.bin/login/login.c
443
if (!style)
usr.bin/login/login.c
476
auth_verify(as, style, NULL, lc->lc_class, NULL);
usr.bin/login/login.c
489
if (auth_setoption(as, "style", style) < 0) {
usr.bin/login/login.c
511
style = "forced";
usr.bin/mandoc/cgi.c
921
conf.style = mandoc_strdup(CSS_DIR "/mandoc.css");
usr.bin/mandoc/cgi.c
937
free(conf.style);
usr.bin/mandoc/html.c
146
h->style = outopts->style;
usr.bin/mandoc/html.c
203
if (h->style != NULL) {
usr.bin/mandoc/html.c
205
h->style, "type", "text/css", "media", "all");
usr.bin/mandoc/html.h
109
char *style; /* style-sheet URI */
usr.bin/mandoc/manconf.h
36
char *style;
usr.bin/mandoc/manpath.c
150
free(conf->output.style);
usr.bin/mandoc/manpath.c
276
if (conf->style != NULL) {
usr.bin/mandoc/manpath.c
277
oldval = mandoc_strdup(conf->style);
usr.bin/mandoc/manpath.c
280
conf->style = mandoc_strdup(cp);
usr.bin/ssh/auth-bsdauth.c
71
authctxt->style ? authctxt->style : "<default>");
usr.bin/ssh/auth-bsdauth.c
73
authctxt->style, "auth-ssh", &challenge);
usr.bin/ssh/auth-passwd.c
137
as = auth_usercheck(authctxt->pw->pw_name, authctxt->style, "auth-ssh",
usr.bin/ssh/auth.h
62
char *style;
usr.bin/ssh/auth2-pubkey.c
204
authctxt->style ? ":" : "",
usr.bin/ssh/auth2-pubkey.c
205
authctxt->style ? authctxt->style : "");
usr.bin/ssh/auth2.c
263
char *user = NULL, *service = NULL, *method = NULL, *style = NULL;
usr.bin/ssh/auth2.c
277
if ((style = strchr(user, ':')) != NULL)
usr.bin/ssh/auth2.c
278
*style++ = 0;
usr.bin/ssh/auth2.c
287
authctxt->style = style ? xstrdup(style) : NULL;
usr.bin/ssh/auth2.c
299
mm_inform_authserv(service, style);
usr.bin/ssh/monitor.c
1185
authctxt->style ? ":" : "",
usr.bin/ssh/monitor.c
1186
authctxt->style ? authctxt->style : "");
usr.bin/ssh/monitor.c
1256
authctxt->style ? ":" : "",
usr.bin/ssh/monitor.c
1257
authctxt->style ? authctxt->style : "");
usr.bin/ssh/monitor.c
914
(r = sshbuf_get_cstring(m, &authctxt->style, NULL)) != 0)
usr.bin/ssh/monitor.c
916
debug3_f("service=%s, style=%s", authctxt->service, authctxt->style);
usr.bin/ssh/monitor.c
918
if (strlen(authctxt->style) == 0) {
usr.bin/ssh/monitor.c
919
free(authctxt->style);
usr.bin/ssh/monitor.c
920
authctxt->style = NULL;
usr.bin/ssh/monitor_wrap.c
446
mm_inform_authserv(char *service, char *style)
usr.bin/ssh/monitor_wrap.c
456
(r = sshbuf_put_cstring(m, style ? style : "")) != 0)
usr.bin/su/su.c
195
style = p; /* XXX overrides -a flag */
usr.bin/su/su.c
223
verify_user(username, pwd, style, lc, as) == 0)
usr.bin/su/su.c
378
verify_user(char *from, struct passwd *pwd, char *style,
usr.bin/su/su.c
390
if ((pwd == NULL || pwd->pw_uid != 0 || style == NULL ||
usr.bin/su/su.c
391
strcmp(style, LOGIN_DEFSTYLE) != 0) &&
usr.bin/su/su.c
392
(style = login_getstyle(lc, style, "auth-su")) == NULL)
usr.bin/su/su.c
411
auth_verify(as, style, NULL, lc->lc_class, (char *)NULL);
usr.bin/su/su.c
66
char *class = NULL, *style = NULL, *p;
usr.bin/su/su.c
82
if (style)
usr.bin/su/su.c
84
style = optarg;
usr.bin/su/su.c
95
if (style)
usr.bin/su/su.c
97
style = "passwd";
usr.bin/tail/forward.c
79
forward(struct tailfile *tf, int nfiles, enum STYLE style, off_t origoff)
usr.bin/tail/forward.c
99
switch(style) {
usr.bin/tail/reverse.c
114
r_reg(struct tailfile *tf, enum STYLE style, off_t off)
usr.bin/tail/reverse.c
128
if (style == RBYTES && off < end)
usr.bin/tail/reverse.c
141
if (style == RLINES && --off == 0)
usr.bin/tail/reverse.c
79
reverse(struct tailfile *tf, int nfiles, enum STYLE style, off_t off)
usr.bin/tail/reverse.c
83
if (style != REVERSE && off == 0)
usr.bin/tail/reverse.c
90
r_reg(&(tf[i]), style, off) != 0) {
usr.bin/tail/reverse.c
91
switch(style) {
usr.bin/tail/tail.c
130
if (style == FBYTES)
usr.bin/tail/tail.c
131
style = RBYTES;
usr.bin/tail/tail.c
132
else if (style == FLINES)
usr.bin/tail/tail.c
133
style = RLINES;
usr.bin/tail/tail.c
140
if (style == NOTSET) {
usr.bin/tail/tail.c
143
style = REVERSE;
usr.bin/tail/tail.c
146
style = RLINES;
usr.bin/tail/tail.c
164
reverse(tf, i, style, off);
usr.bin/tail/tail.c
166
forward(tf, i, style, off);
usr.bin/tail/tail.c
191
reverse(tf, 1, style, off);
usr.bin/tail/tail.c
193
forward(tf, 1, style, off);
usr.bin/tail/tail.c
57
enum STYLE style;
usr.bin/tail/tail.c
78
if (style) \
usr.bin/tail/tail.c
87
style = (forward); \
usr.bin/tail/tail.c
93
style = (backward); \
usr.bin/tail/tail.c
99
style = NOTSET;
usr.bin/tmux/cmd-display-menu.c
294
const char *style = args_get(args, 's');
usr.bin/tmux/cmd-display-menu.c
373
style, selected_style, border_style, target, NULL, NULL) != 0)
usr.bin/tmux/cmd-display-menu.c
396
const char *style = args_get(args, 's');
usr.bin/tmux/cmd-display-menu.c
509
popup_modify(tc, title, style, border_style, lines, flags);
usr.bin/tmux/cmd-display-menu.c
513
argv, cwd, title, tc, s, style, border_style, NULL, NULL) != 0)
usr.bin/tmux/cmd-select-pane.c
166
style = args_get(args, 'P');
usr.bin/tmux/cmd-select-pane.c
167
if (style != NULL) {
usr.bin/tmux/cmd-select-pane.c
168
o = options_set_string(oo, "window-style", 0, "%s", style);
usr.bin/tmux/cmd-select-pane.c
170
cmdq_error(item, "bad style: %s", style);
usr.bin/tmux/cmd-select-pane.c
173
options_set_string(oo, "window-active-style", 0, "%s", style);
usr.bin/tmux/cmd-select-pane.c
97
const char *style;
usr.bin/tmux/format-draw.c
44
format_is_type(struct format_range *fr, struct style *sy)
usr.bin/tmux/format-draw.c
678
format_draw_many(struct screen_write_ctx *ctx, struct style *sy, char ch,
usr.bin/tmux/format-draw.c
724
struct style sy, saved_sy;
usr.bin/tmux/layout.c
371
struct style *sb_style = &w->active->scrollbar_style;
usr.bin/tmux/layout.c
912
struct style *sb_style = &wp->scrollbar_style;
usr.bin/tmux/menu.c
211
struct style sytmp;
usr.bin/tmux/menu.c
222
if (md->style != NULL) {
usr.bin/tmux/menu.c
224
if (style_parse(&sytmp, &md->style_gc, md->style) == 0) {
usr.bin/tmux/menu.c
30
char *style;
usr.bin/tmux/menu.c
305
free(md->style);
usr.bin/tmux/menu.c
547
enum box_lines lines, const char *style, const char *selected_style,
usr.bin/tmux/menu.c
571
if (style != NULL)
usr.bin/tmux/menu.c
572
md->style = xstrdup(style);
usr.bin/tmux/menu.c
630
enum box_lines lines, const char *style, const char *selected_style,
usr.bin/tmux/menu.c
637
style, selected_style, border_style, fs, cb, data);
usr.bin/tmux/options.c
1004
if (style_parse(&o->style, &grid_default_cell, s) != 0)
usr.bin/tmux/options.c
1007
return (&o->style);
usr.bin/tmux/options.c
1014
struct style sy;
usr.bin/tmux/options.c
58
struct style style;
usr.bin/tmux/options.c
976
struct style *
usr.bin/tmux/options.c
989
return (&o->style);
usr.bin/tmux/options.c
993
style_set(&o->style, &grid_default_cell);
usr.bin/tmux/options.c
998
if (style_parse(&o->style, &grid_default_cell, expanded) != 0) {
usr.bin/tmux/popup.c
114
struct style sytmp;
usr.bin/tmux/popup.c
125
if (pd->style != NULL) {
usr.bin/tmux/popup.c
127
if (style_parse(&sytmp, &pd->defaults, pd->style) == 0) {
usr.bin/tmux/popup.c
36
char *style;
usr.bin/tmux/popup.c
360
free(pd->style);
usr.bin/tmux/popup.c
718
popup_modify(struct client *c, const char *title, const char *style,
usr.bin/tmux/popup.c
722
struct style sytmp;
usr.bin/tmux/popup.c
738
if (style != NULL) {
usr.bin/tmux/popup.c
739
free(pd->style);
usr.bin/tmux/popup.c
740
pd->style = xstrdup(style);
usr.bin/tmux/popup.c
742
if (style_parse(&sytmp, &pd->defaults, style) == 0) {
usr.bin/tmux/popup.c
770
struct session *s, const char *style, const char *border_style,
usr.bin/tmux/popup.c
776
struct style sytmp;
usr.bin/tmux/popup.c
805
if (style != NULL)
usr.bin/tmux/popup.c
806
pd->style = xstrdup(style);
usr.bin/tmux/popup.c
836
if (style != NULL) {
usr.bin/tmux/popup.c
838
if (style_parse(&sytmp, &pd->defaults, style) == 0) {
usr.bin/tmux/screen-redraw.c
1086
struct style *sb_style = &wp->scrollbar_style;
usr.bin/tmux/screen.c
190
screen_set_cursor_style(u_int style, enum screen_cursor_style *cstyle,
usr.bin/tmux/screen.c
193
switch (style) {
usr.bin/tmux/status.c
397
if (!grid_cells_equal(&gc, &sl->style)) {
usr.bin/tmux/status.c
399
memcpy(&sl->style, &gc, sizeof sl->style);
usr.bin/tmux/status.c
545
struct style *sy;
usr.bin/tmux/style.c
275
style_tostring(struct style *sy)
usr.bin/tmux/style.c
32
static struct style style_default = {
usr.bin/tmux/style.c
393
struct style *sy;
usr.bin/tmux/style.c
425
style_set(struct style *sy, const struct grid_cell *gc)
usr.bin/tmux/style.c
433
style_copy(struct style *dst, struct style *src)
usr.bin/tmux/style.c
440
style_set_scrollbar_style_from_option(struct style *sb_style,
usr.bin/tmux/style.c
443
struct style *sy;
usr.bin/tmux/style.c
49
style_set_range_string(struct style *sy, const char *s)
usr.bin/tmux/style.c
60
style_parse(struct style *sy, const struct grid_cell *base, const char *in)
usr.bin/tmux/style.c
62
struct style saved;
usr.bin/tmux/tmux.h
1286
struct style scrollbar_style;
usr.bin/tmux/tmux.h
2187
struct style style;
usr.bin/tmux/tmux.h
2527
struct style *options_string_to_style(struct options *, const char *,
usr.bin/tmux/window-clock.c
227
int colour, style;
usr.bin/tmux/window-clock.c
237
style = options_get_number(wp->window->options, "clock-mode-style");
usr.bin/tmux/window-clock.c
243
if (style == 0 || style == 2) {
usr.bin/tmux/window-clock.c
244
if (style == 2)
usr.bin/tmux/window-clock.c
254
if (style == 3)
usr.sbin/httpd/server_http.c
1024
code, httperr, style, code, httperr,
usr.sbin/httpd/server_http.c
889
const char *httperr = NULL, *style;
usr.sbin/httpd/server_http.c
995
style = "body { background-color: white; color: black; font-family: "
usr.sbin/ldapd/ldapd.c
308
char *class = NULL, *style = NULL;
usr.sbin/ldapd/ldapd.c
321
if ((style = login_getstyle(lc, style, "auth-ldap")) == NULL) {
usr.sbin/ldapd/ldapd.c
338
as = auth_verify(as, style, name, lc->lc_class, (char *)NULL);
usr.sbin/relayd/config.c
189
free(proto->style);
usr.sbin/relayd/config.c
627
if (proto->style != NULL) {
usr.sbin/relayd/config.c
628
iov[c].iov_base = proto->style;
usr.sbin/relayd/config.c
629
iov[c++].iov_len = strlen(proto->style) + 1;
usr.sbin/relayd/config.c
706
proto->style = NULL;
usr.sbin/relayd/config.c
708
if ((proto->style = get_string(p + s, styl - 1)) == NULL) {
usr.sbin/relayd/parse.y
305
if ((proto->style = strdup($2)) == NULL)
usr.sbin/relayd/relay_http.c
1063
const char *style, *label = NULL;
usr.sbin/relayd/relay_http.c
1099
style = (rlay->rl_proto->style != NULL) ? rlay->rl_proto->style :
usr.sbin/relayd/relay_http.c
1119
code, httperr, style, httperr, text,
usr.sbin/relayd/relayd.h
755
char *style;