Symbol: Options
crypto/openssh/clientloop.c
125
extern Options options;
crypto/openssh/mux.c
75
extern Options options;
crypto/openssh/readconf.c
1033
process_config_line(Options *options, struct passwd *pw, const char *host,
crypto/openssh/readconf.c
1043
process_config_line_depth(Options *options, struct passwd *pw, const char *host,
crypto/openssh/readconf.c
136
const char *host, const char *original_host, Options *options,
crypto/openssh/readconf.c
138
static int process_config_line_depth(Options *options, struct passwd *pw,
crypto/openssh/readconf.c
2432
const char *original_host, Options *options, int flags,
crypto/openssh/readconf.c
2444
const char *host, const char *original_host, Options *options,
crypto/openssh/readconf.c
2509
config_has_permitted_cnames(Options *options)
crypto/openssh/readconf.c
2526
initialize_options(Options * options)
crypto/openssh/readconf.c
2654
fill_default_options_for_canonicalization(Options *options)
crypto/openssh/readconf.c
2669
fill_default_options(Options * options)
crypto/openssh/readconf.c
2948
free_options(Options *o)
crypto/openssh/readconf.c
3249
parse_jump(const char *s, Options *o, int active)
crypto/openssh/readconf.c
3496
dump_client_config(Options *o, const char *host)
crypto/openssh/readconf.c
378
add_local_forward(Options *options, const struct Forward *newfwd)
crypto/openssh/readconf.c
407
add_remote_forward(Options *options, const struct Forward *newfwd)
crypto/openssh/readconf.c
433
clear_forwardings(Options *options)
crypto/openssh/readconf.c
463
add_certificate_file(Options *options, const char *path, int userprovided)
crypto/openssh/readconf.c
487
add_identity_file(Options *options, const char *dir, const char *filename,
crypto/openssh/readconf.c
652
match_cfg_line(Options *options, char **condition, struct passwd *pw,
crypto/openssh/readconf.c
845
rm_env(Options *options, const char *arg, const char *filename, int linenum)
crypto/openssh/readconf.h
237
void initialize_options(Options *);
crypto/openssh/readconf.h
238
int fill_default_options(Options *);
crypto/openssh/readconf.h
239
void fill_default_options_for_canonicalization(Options *);
crypto/openssh/readconf.h
240
void free_options(Options *o);
crypto/openssh/readconf.h
241
int process_config_line(Options *, struct passwd *, const char *,
crypto/openssh/readconf.h
244
const char *, Options *, int, int *);
crypto/openssh/readconf.h
246
int parse_jump(const char *, Options *, int);
crypto/openssh/readconf.h
250
int config_has_permitted_cnames(Options *);
crypto/openssh/readconf.h
251
void dump_client_config(Options *o, const char *host);
crypto/openssh/readconf.h
253
void add_local_forward(Options *, const struct Forward *);
crypto/openssh/readconf.h
254
void add_remote_forward(Options *, const struct Forward *);
crypto/openssh/readconf.h
255
void add_identity_file(Options *, const char *, const char *, int);
crypto/openssh/readconf.h
256
void add_certificate_file(Options *, const char *, int);
crypto/openssh/ssh-keysign.c
179
Options options;
crypto/openssh/ssh.c
143
Options options;
crypto/openssh/sshconnect.c
81
extern Options options;
crypto/openssh/sshconnect2.c
83
extern Options options;
lib/libefivar/efivar-dp-format.c
1602
UINT16 Options;
lib/libefivar/efivar-dp-format.c
1613
Options = ISCSIDevPath->LoginOption;
lib/libefivar/efivar-dp-format.c
1614
UefiDevicePathLibCatPrint (Str, "%s,", (((Options >> 1) & 0x0001) != 0) ? "CRC32C" : "None");
lib/libefivar/efivar-dp-format.c
1615
UefiDevicePathLibCatPrint (Str, "%s,", (((Options >> 3) & 0x0001) != 0) ? "CRC32C" : "None");
lib/libefivar/efivar-dp-format.c
1616
if (((Options >> 11) & 0x0001) != 0) {
lib/libefivar/efivar-dp-format.c
1618
} else if (((Options >> 12) & 0x0001) != 0) {
lib/libefivar/efivar-dp-parse.c
2674
UINT16 Options;
lib/libefivar/efivar-dp-parse.c
2704
Options = 0x0000;
lib/libefivar/efivar-dp-parse.c
2706
Options |= 0x0002;
lib/libefivar/efivar-dp-parse.c
2710
Options |= 0x0008;
lib/libefivar/efivar-dp-parse.c
2714
Options |= 0x0800;
lib/libefivar/efivar-dp-parse.c
2718
Options |= 0x1000;
lib/libefivar/efivar-dp-parse.c
2721
ISCSIDevPath->LoginOption = (UINT16) Options;
sys/dev/disk/mpt/mpilib/mpi_cnfg.h
2171
U8 Options[2]; /* 50h */
usr.bin/calendar/calendar.c
184
Options.location = &loc;
usr.bin/calendar/calendar.c
185
Options.time = get_time_of_now();
usr.bin/calendar/calendar.c
186
Options.today = get_fixed_of_today();
usr.bin/calendar/calendar.c
196
Options.allmode = true;
usr.bin/calendar/calendar.c
215
Options.debug++;
usr.bin/calendar/calendar.c
245
if (!parse_time(optarg, &Options.time))
usr.bin/calendar/calendar.c
250
if (!parse_date(optarg, &Options.today))
usr.bin/calendar/calendar.c
269
if (Options.allmode && calfile != NULL)
usr.bin/calendar/calendar.c
271
if (Options.allmode && calhome != NULL)
usr.bin/calendar/calendar.c
278
dow = dayofweek_from_fixed(Options.today);
usr.bin/calendar/calendar.c
282
Options.day_begin = Options.today - days_before;
usr.bin/calendar/calendar.c
283
Options.day_end = Options.today + days_after;
usr.bin/calendar/calendar.c
296
double t = Options.today + Options.time;
usr.bin/calendar/calendar.c
298
show_chinese_calendar(Options.today);
usr.bin/calendar/calendar.c
300
show_julian_calendar(Options.today);
usr.bin/calendar/calendar.c
302
print_datetime(t, Options.location);
usr.bin/calendar/calendar.c
303
print_location(Options.location, !L_flag);
usr.bin/calendar/calendar.c
304
show_moon_info(t, Options.location);
usr.bin/calendar/calendar.c
306
print_datetime(t, Options.location);
usr.bin/calendar/calendar.c
307
print_location(Options.location, !L_flag);
usr.bin/calendar/calendar.c
308
show_sun_info(t, Options.location);
usr.bin/calendar/calendar.c
316
if (Options.allmode) {
usr.bin/calendar/calendar.c
72
struct cal_options Options = {
usr.bin/calendar/calendar.h
59
if (Options.debug) fprintf(stderr, __VA_ARGS__)
usr.bin/calendar/calendar.h
61
if (Options.debug >= 2) fprintf(stderr, __VA_ARGS__)
usr.bin/calendar/calendar.h
63
if (Options.debug >= 3) fprintf(stderr, __VA_ARGS__)
usr.bin/calendar/calendar.h
99
extern struct cal_options Options;
usr.bin/calendar/chinese.c
479
rd_begin = chinese_new_moon_before(Options.day_begin);
usr.bin/calendar/chinese.c
480
rd_end = chinese_new_moon_onafter(Options.day_end);
usr.bin/calendar/dates.c
150
int daycount = Options.day_end - Options.day_begin + 1;
usr.bin/calendar/dates.c
168
if (rd < Options.day_begin || rd > Options.day_end)
usr.bin/calendar/dates.c
171
return &cal_days[rd - Options.day_begin];
usr.bin/calendar/dates.c
69
daycount = Options.day_end - Options.day_begin + 1;
usr.bin/calendar/dates.c
72
dow = dayofweek_from_fixed(Options.day_begin);
usr.bin/calendar/dates.c
73
gregorian_from_fixed(Options.day_begin, &date);
usr.bin/calendar/dates.c
93
dp->rd = Options.day_begin + i;
usr.bin/calendar/days.c
162
year1 = gregorian_year_from_fixed(Options.day_begin);
usr.bin/calendar/days.c
163
year2 = gregorian_year_from_fixed(Options.day_end);
usr.bin/calendar/days.c
203
t += Options.location->zone; /* to standard time */
usr.bin/calendar/days.c
241
year1 = gregorian_year_from_fixed(Options.day_begin);
usr.bin/calendar/days.c
242
year2 = gregorian_year_from_fixed(Options.day_end);
usr.bin/calendar/days.c
248
if (rd_end > Options.day_end)
usr.bin/calendar/days.c
249
rd_end = Options.day_end;
usr.bin/calendar/days.c
298
year1 = gregorian_year_from_fixed(Options.day_begin);
usr.bin/calendar/days.c
299
year2 = gregorian_year_from_fixed(Options.day_end);
usr.bin/calendar/days.c
302
t_begin = fixed_from_gregorian(&date) - Options.location->zone;
usr.bin/calendar/days.c
304
t_end = fixed_from_gregorian(&date) - Options.location->zone;
usr.bin/calendar/days.c
305
if (t_end > Options.day_end + 1 - Options.location->zone)
usr.bin/calendar/days.c
306
t_end = Options.day_end + 1 - Options.location->zone;
usr.bin/calendar/days.c
325
t += Options.location->zone; /* to standard time */
usr.bin/calendar/io.c
622
if (Options.allmode) {
usr.bin/calendar/io.c
654
assert(Options.allmode == true);
usr.bin/calendar/io.c
712
gregorian_from_fixed(Options.today, &date);
usr.bin/calendar/io.c
713
dow = dayofweek_from_fixed(Options.today);
usr.bin/calendar/julian.c
165
year1 = julian_year_from_fixed(Options.day_begin);
usr.bin/calendar/julian.c
166
year2 = julian_year_from_fixed(Options.day_end);
usr.bin/calendar/julian.c
196
year1 = julian_year_from_fixed(Options.day_begin);
usr.bin/calendar/julian.c
197
year2 = julian_year_from_fixed(Options.day_end);
usr.bin/calendar/julian.c
203
if (rd_end > Options.day_end)
usr.bin/calendar/julian.c
204
rd_end = Options.day_end;
usr.bin/calendar/julian.c
235
year1 = julian_year_from_fixed(Options.day_begin);
usr.bin/calendar/julian.c
236
year2 = julian_year_from_fixed(Options.day_end);
usr.bin/calendar/julian.c
244
if (rd_end > Options.day_end)
usr.bin/calendar/julian.c
245
rd_end = Options.day_end;
usr.bin/calendar/parsedata.c
331
if (Options.debug)
usr.bin/calendar/parsedata.c
336
if (Options.debug >= 3)
usr.bin/calendar/parsedata.c
400
if (Options.debug)
usr.sbin/cron/crontab/crontab.c
213
User, Filename, Options[(int)Option]))
usr.sbin/cron/crontab/crontab.c
51
static const char *Options[] = { "???", "list", "delete", "edit", "replace" };