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
183
c = raddauth(username, class, style, challenge,
libexec/login_radius/login_radius.c
186
c = raddauth(username, class, style, NULL, 0, password, &emsg);
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
37
char *style;
usr.bin/mandoc/manpath.c
190
free(conf->output.style);
usr.bin/mandoc/manpath.c
316
if (conf->style != NULL) {
usr.bin/mandoc/manpath.c
317
oldval = mandoc_strdup(conf->style);
usr.bin/mandoc/manpath.c
320
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
269
char *user = NULL, *service = NULL, *method = NULL, *style = NULL;
usr.bin/ssh/auth2.c
283
if ((style = strchr(user, ':')) != NULL)
usr.bin/ssh/auth2.c
284
*style++ = 0;
usr.bin/ssh/auth2.c
293
authctxt->style = style ? xstrdup(style) : NULL;
usr.bin/ssh/auth2.c
305
mm_inform_authserv(service, style);
usr.bin/ssh/monitor.c
1171
authctxt->style ? ":" : "",
usr.bin/ssh/monitor.c
1172
authctxt->style ? authctxt->style : "");
usr.bin/ssh/monitor.c
1242
authctxt->style ? ":" : "",
usr.bin/ssh/monitor.c
1243
authctxt->style ? authctxt->style : "");
usr.bin/ssh/monitor.c
900
(r = sshbuf_get_cstring(m, &authctxt->style, NULL)) != 0)
usr.bin/ssh/monitor.c
902
debug3_f("service=%s, style=%s", authctxt->service, authctxt->style);
usr.bin/ssh/monitor.c
904
if (strlen(authctxt->style) == 0) {
usr.bin/ssh/monitor.c
905
free(authctxt->style);
usr.bin/ssh/monitor.c
906
authctxt->style = NULL;
usr.bin/ssh/monitor_wrap.c
413
mm_inform_authserv(char *service, char *style)
usr.bin/ssh/monitor_wrap.c
423
(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
480
const char *style = args_get(args, 's');
usr.bin/tmux/cmd-display-menu.c
555
style, selected_style, border_style, target, NULL, NULL) != 0)
usr.bin/tmux/cmd-display-menu.c
578
const char *style = args_get(args, 's');
usr.bin/tmux/cmd-display-menu.c
692
popup_modify(tc, title, style, border_style, lines, flags);
usr.bin/tmux/cmd-display-menu.c
696
argv, cwd, title, tc, s, style, border_style, NULL, NULL) != 0)
usr.bin/tmux/cmd-select-pane.c
161
const char *style;
usr.bin/tmux/cmd-select-pane.c
204
style = args_get(args, 'P');
usr.bin/tmux/cmd-select-pane.c
205
if (style != NULL) {
usr.bin/tmux/cmd-select-pane.c
206
o = options_set_string(oo, "window-style", 0, "%s", style);
usr.bin/tmux/cmd-select-pane.c
208
cmdq_error(item, "bad style: %s", style);
usr.bin/tmux/cmd-select-pane.c
211
options_set_string(oo, "window-active-style", 0, "%s", style);
usr.bin/tmux/cmd-split-window.c
208
style = args_get(args, 's');
usr.bin/tmux/cmd-split-window.c
209
if (style != NULL) {
usr.bin/tmux/cmd-split-window.c
211
"%s", style) == NULL) {
usr.bin/tmux/cmd-split-window.c
212
cmdq_error(item, "bad style: %s", style);
usr.bin/tmux/cmd-split-window.c
216
"%s", style);
usr.bin/tmux/cmd-split-window.c
220
style = args_get(args, 'S');
usr.bin/tmux/cmd-split-window.c
221
if (style != NULL) {
usr.bin/tmux/cmd-split-window.c
223
"pane-active-border-style", 0, "%s", style) == NULL) {
usr.bin/tmux/cmd-split-window.c
224
cmdq_error(item, "bad active border style: %s", style);
usr.bin/tmux/cmd-split-window.c
228
style = args_get(args, 'R');
usr.bin/tmux/cmd-split-window.c
229
if (style != NULL) {
usr.bin/tmux/cmd-split-window.c
231
"%s", style) == NULL) {
usr.bin/tmux/cmd-split-window.c
233
style);
usr.bin/tmux/cmd-split-window.c
93
const char *template, *style, *value;
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
725
struct style sy, saved_sy;
usr.bin/tmux/fuzzy.c
165
struct style sy;
usr.bin/tmux/layout.c
1269
struct style *sb_style = &wp->scrollbar_style;
usr.bin/tmux/layout.c
536
struct style *sb_style = &w->active->scrollbar_style;
usr.bin/tmux/menu.c
184
struct style sytmp;
usr.bin/tmux/menu.c
191
if (md->style != NULL) {
usr.bin/tmux/menu.c
193
if (style_parse(&sytmp, &md->style_gc, md->style) == 0) {
usr.bin/tmux/menu.c
259
free(md->style);
usr.bin/tmux/menu.c
30
char *style;
usr.bin/tmux/menu.c
574
enum box_lines lines, const char *style, const char *selected_style,
usr.bin/tmux/menu.c
620
if (style != NULL)
usr.bin/tmux/menu.c
621
md->style = xstrdup(style);
usr.bin/tmux/options.c
109
struct style style;
usr.bin/tmux/options.c
1139
struct style *
usr.bin/tmux/options.c
1155
return (&o->style);
usr.bin/tmux/options.c
1160
style_set(&o->style, dgc);
usr.bin/tmux/options.c
1166
failed = style_parse_colour(&o->style, dgc, expanded);
usr.bin/tmux/options.c
1168
failed = style_parse(&o->style, dgc, expanded);
usr.bin/tmux/options.c
1174
failed = style_parse_colour(&o->style, dgc, s);
usr.bin/tmux/options.c
1176
failed = style_parse(&o->style, dgc, s);
usr.bin/tmux/options.c
1180
return (&o->style);
usr.bin/tmux/options.c
1187
struct style sy;
usr.bin/tmux/popup.c
102
struct style sytmp;
usr.bin/tmux/popup.c
113
if (pd->style != NULL) {
usr.bin/tmux/popup.c
115
if (style_parse(&sytmp, &pd->defaults, pd->style) == 0) {
usr.bin/tmux/popup.c
36
char *style;
usr.bin/tmux/popup.c
512
popup_modify(struct client *c, const char *title, const char *style,
usr.bin/tmux/popup.c
516
struct style sytmp;
usr.bin/tmux/popup.c
532
if (style != NULL) {
usr.bin/tmux/popup.c
533
free(pd->style);
usr.bin/tmux/popup.c
534
pd->style = xstrdup(style);
usr.bin/tmux/popup.c
536
if (style_parse(&sytmp, &pd->defaults, style) == 0) {
usr.bin/tmux/popup.c
564
struct session *s, const char *style, const char *border_style,
usr.bin/tmux/popup.c
570
struct style sytmp;
usr.bin/tmux/popup.c
599
if (style != NULL)
usr.bin/tmux/popup.c
600
pd->style = xstrdup(style);
usr.bin/tmux/popup.c
630
if (style != NULL) {
usr.bin/tmux/popup.c
632
if (style_parse(&sytmp, &pd->defaults, style) == 0) {
usr.bin/tmux/popup.c
90
free(pd->style);
usr.bin/tmux/prompt.c
142
style_apply(&pd->style, oo, "message-style", NULL);
usr.bin/tmux/prompt.c
202
memcpy(&pr->style, &pd->style, sizeof pr->style);
usr.bin/tmux/prompt.c
43
struct grid_cell style;
usr.bin/tmux/prompt.c
438
prompt_effective_style(struct prompt *pr, struct style *sy,
usr.bin/tmux/prompt.c
450
gc = &pr->style;
usr.bin/tmux/prompt.c
465
char **expanded, struct style *sy)
usr.bin/tmux/prompt.c
609
struct style sy;
usr.bin/tmux/prompt.c
667
struct style sy;
usr.bin/tmux/prompt.c
85
static void prompt_effective_style(struct prompt *, struct style *,
usr.bin/tmux/prompt.c
88
struct prompt_layout *, char **, struct style *);
usr.bin/tmux/screen-redraw.c
1296
struct style *sb_style = &wp->scrollbar_style;
usr.bin/tmux/screen.c
195
screen_set_cursor_style(u_int style, enum screen_cursor_style *cstyle,
usr.bin/tmux/screen.c
198
switch (style) {
usr.bin/tmux/status.c
255
if (!grid_cells_equal(&gc, &sl->style)) {
usr.bin/tmux/status.c
257
memcpy(&sl->style, &gc, sizeof sl->style);
usr.bin/tmux/status.c
416
struct style *sy;
usr.bin/tmux/style.c
303
style_tostring(struct style *sy)
usr.bin/tmux/style.c
32
static struct style style_default = {
usr.bin/tmux/style.c
428
style_link(struct style *sy)
usr.bin/tmux/style.c
440
struct style *
usr.bin/tmux/style.c
444
struct style *sy;
usr.bin/tmux/style.c
477
style_parse_colour(struct style *sy, const struct grid_cell *base,
usr.bin/tmux/style.c
500
style_set(struct style *sy, const struct grid_cell *gc)
usr.bin/tmux/style.c
508
style_copy(struct style *dst, struct style *src)
usr.bin/tmux/style.c
515
style_set_scrollbar_style_from_option(struct style *sb_style,
usr.bin/tmux/style.c
521
char *style, *expanded;
usr.bin/tmux/style.c
528
style = format_single(NULL, oe->default_str, NULL, NULL, NULL, NULL);
usr.bin/tmux/style.c
529
if (style_parse(sb_style, &grid_default_cell, style) != 0)
usr.bin/tmux/style.c
536
style_parse(sb_style, &grid_default_cell, style);
usr.bin/tmux/style.c
539
free(style);
usr.bin/tmux/style.c
58
style_set_range_string(struct style *sy, const char *s)
usr.bin/tmux/style.c
69
style_parse(struct style *sy, const struct grid_cell *base, const char *in)
usr.bin/tmux/style.c
71
struct style saved;
usr.bin/tmux/tmux.h
1379
struct style scrollbar_style;
usr.bin/tmux/tmux.h
2396
struct style style;
usr.bin/tmux/tmux.h
2813
struct style *options_string_to_style(struct options *, const char *,
usr.bin/tmux/tmux.h
4143
struct style *style_add(struct grid_cell *, struct options *,
usr.bin/tmux/tty.c
3000
struct style *sy;
usr.bin/tmux/window-clock.c
230
int colour, style;
usr.bin/tmux/window-clock.c
244
style = options_get_number(w->options, "clock-mode-style");
usr.bin/tmux/window-clock.c
250
if (style == 0 || style == 2) {
usr.bin/tmux/window-clock.c
251
if (style == 2)
usr.bin/tmux/window-clock.c
261
if (style == 3)
usr.sbin/httpd/server_http.c
1104
const char *style;
usr.sbin/httpd/server_http.c
1109
style = "body { background-color: white; color: black; font-family: "
usr.sbin/httpd/server_http.c
1137
code, httperr, style, code, httperr,
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
187
free(proto->style);
usr.sbin/relayd/config.c
648
if (proto->style != NULL) {
usr.sbin/relayd/config.c
649
iov[c].iov_base = proto->style;
usr.sbin/relayd/config.c
650
iov[c++].iov_len = strlen(proto->style) + 1;
usr.sbin/relayd/config.c
732
proto->style = NULL;
usr.sbin/relayd/config.c
733
if ((proto->style = ibuf_get_string(&ibuf, s - 1)) ==
usr.sbin/relayd/parse.y
308
if ((proto->style = strdup($2)) == NULL)
usr.sbin/relayd/relay_http.c
1087
const char *style, *label = NULL;
usr.sbin/relayd/relay_http.c
1123
style = (rlay->rl_proto->style != NULL) ? rlay->rl_proto->style :
usr.sbin/relayd/relay_http.c
1143
code, httperr, style, httperr, text,
usr.sbin/relayd/relayd.h
758
char *style;