Home
last modified time | relevance | path

Searched refs:options (Results 1 – 25 of 3009) sorted by relevance

12345678910>>...121

/netbsd/src/crypto/external/bsd/openssh/dist/
Dssh.c135 Options options; variable
261 hints.ai_family = options.address_family == -1 ? in resolve_host()
262 AF_UNSPEC : options.address_family; in resolve_host()
307 hints.ai_family = options.address_family == -1 ? in is_addr()
308 AF_UNSPEC : options.address_family; in is_addr()
338 hints.ai_family = options.address_family == -1 ? in resolve_addr()
339 AF_UNSPEC : options.address_family; in resolve_addr()
384 if (*cname == '\0' || !config_has_permitted_cnames(&options) || in check_follow_cname()
387 if (options.canonicalize_hostname == SSH_CANONICALISE_NO) in check_follow_cname()
394 options.canonicalize_hostname != SSH_CANONICALISE_ALWAYS) in check_follow_cname()
[all …]
Dservconf.c85 static void parse_server_config_depth(ServerOptions *options,
94 initialize_server_options(ServerOptions *options) in initialize_server_options() argument
96 memset(options, 0, sizeof(*options)); in initialize_server_options()
99 options->use_pam = -1; in initialize_server_options()
100 options->pam_service_name = NULL; in initialize_server_options()
103 options->num_ports = 0; in initialize_server_options()
104 options->ports_from_cmdline = 0; in initialize_server_options()
105 options->queued_listen_addrs = NULL; in initialize_server_options()
106 options->num_queued_listens = 0; in initialize_server_options()
107 options->listen_addrs = NULL; in initialize_server_options()
[all …]
Dreadconf.c128 Options *options, int flags, int *activep, int *want_final_pass, int depth);
129 static int process_config_line_depth(Options *options, struct passwd *pw,
416 add_local_forward(Options *options, const struct Forward *newfwd) in add_local_forward() argument
422 for (i = 0; i < options->num_local_forwards; i++) { in add_local_forward()
423 if (forward_equals(newfwd, options->local_forwards + i)) in add_local_forward()
426 options->local_forwards = xreallocarray(options->local_forwards, in add_local_forward()
427 options->num_local_forwards + 1, in add_local_forward()
428 sizeof(*options->local_forwards)); in add_local_forward()
429 fwd = &options->local_forwards[options->num_local_forwards++]; in add_local_forward()
445 add_remote_forward(Options *options, const struct Forward *newfwd) in add_remote_forward() argument
[all …]
/netbsd/src/sys/arch/evbarm/conf/
DGENERIC.common12 # Standard system options
14 options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT
15 options NTP # NTP phase/frequency locked loop
17 # CPU options
18 #options PMAPCOUNTERS
19 options BUSDMA_COUNTERS
21 # Architecture options
29 # File system options
31 options FFS_EI # FFS Endian Independent support
32 #options FFS_NO_SNAPSHOT # No FFS snapshot support
[all …]
DBCM5301X13 # Standard system options
15 options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT
16 #options NTP # NTP phase/frequency locked loop
18 # CPU options
21 options UVMHIST
22 #options UVMHIST_PRINT,A9WDT_PERIOD_DEFAULT=30
23 options BCMETH_COUNTERS
24 #options MULTIPROCESSOR
25 options CPU_CORTEX
26 #options MEMSIZE=256
[all …]
DBCM5634013 # Standard system options
15 options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT
16 #options NTP # NTP phase/frequency locked loop
18 # CPU options
21 options UVMHIST
22 #options UVMHIST_PRINT,A9WDT_PERIOD_DEFAULT=30
23 options BCMETH_COUNTERS
24 #options MULTIPROCESSOR
25 options CPU_CORTEX
26 #options MEMSIZE=256
[all …]
DINTEGRATOR_CP8 #options INCLUDE_CONFIG_FILE # embed config file in kernel binary
14 # Standard system options
16 options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT
17 options NTP # NTP phase/frequency locked loop
19 # CPU options
21 options CPU_ARM9 # Support the ARM9TDMI core
22 options CPU_ARM10 # Support the ARM10 core
23 options CPU_ARM11 # Support the ARM11 core
24 options FPU_VFP
25 options INTEGRATOR_CP
[all …]
DIMX31LITE8 #options INCLUDE_CONFIG_FILE # embed config file in kernel binary
14 # Standard system options
16 options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT
17 #options NTP # NTP phase/frequency locked loop
19 # CPU options
22 options CPU_ARM1136 # Support the SA110 core
24 # Architecture options
25 options IMX31_IPGCLK_FREQ=66000000 # Fixme. bogus value
47 # File system options
48 #options FFS_EI # FFS Endian Independent support
[all …]
DOPENBLOCKS_AX38 options INCLUDE_CONFIG_FILE # embed config file in kernel binary
16 options EVBARM_BOARDTYPE=openblocks_ax3
18 # CPU options
19 options CPU_PJ4B
20 options L2CACHE_ENABLE
21 #options AURORA_IO_CACHE_COHERENCY
22 options AURORA_L2_PT_WALK
23 options ARM_HAS_VBAR
24 options FPU_VFP
27 # Architecture options
[all …]
DIXM12008 #options INCLUDE_CONFIG_FILE # embed config file in kernel binary
14 # Standard system options
16 options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT
17 #options NTP # NTP phase/frequency locked loop
19 # CPU options
22 options CPU_SA110 # Support the SA110 core
23 options CPU_IXP12X0 # Support the IXP12X0
26 # Architecture options
47 # File system options
48 #options FFS_EI # FFS Endian Independent support
[all …]
/netbsd/src/external/gpl3/binutils/dist/gold/
Doptions.h82 namespace options
227 Command_line* cmdline, General_options* options) = 0;
248 Command_line* cmdline, General_options* options) in parse_to_value()
249 { (options->*(this->parse))(option, arg, cmdline); } in parse_to_value()
289 struct Struct_##varname__ : public options::Struct_var \
305 options::One_option option; \
323 false, bool, bool, options::parse_bool, default_value__) \
324 struct Struct_no_##varname__ : public options::Struct_var \
326 Struct_no_##varname__() : option((dashes__ == options::DASH_Z \
337 Command_line*, General_options* options) \
[all …]
/netbsd/src/sys/arch/amd64/conf/
DALL6 # This machine description includes all devices and options and it is
11 # the intro(4) man page. For further information about kernel options
12 # for this architecture, see the options(4) man page. For an explanation
18 options INCLUDE_CONFIG_FILE # embed config file in kernel binary
26 # CPU-related options.
27 options USER_LDT # User-settable LDT, used by Wine
28 options X86EMU # 386 Real Mode emulator
29 #options PAE # PAE mode (36 bits physical addressing)
32 options PCPU_IDT # Per CPU IDT
45 options BEEP_ONHALT
[all …]
DXEN3_DOMU5 options XENPV # PV domU support
6 options MULTIPROCESSOR
8 options INCLUDE_CONFIG_FILE # embed config file in kernel binary
10 #options UVMHIST
11 #options UVMHIST_PRINT
12 #options SYSCALL_DEBUG
19 #options DOM0OPS
21 #options MTRR # memory-type range register syscall support
23 #options CONSDEVNAME="\"xencons\""
24 #options CONS_OVERRIDE
[all …]
/netbsd/src/sys/arch/i386/conf/
DALL6 # This machine description includes all devices and options and it is
11 # the intro(4) man page. For further information about kernel options
12 # for this architecture, see the options(4) man page. For an explanation
18 options INCLUDE_CONFIG_FILE # embed config file in kernel binary
26 # CPU-related options.
27 options USER_LDT # user-settable LDT; used by WINE
28 options X86EMU # 386 Real Mode emulator
29 options PAE # PAE mode (36 bits physical addressing)
32 options PCPU_IDT # Per CPU IDT
44 options MTRR # memory-type range register syscall support
[all …]
DXEN3PAE_DOMU5 options XENPV # PV domU support
6 options MULTIPROCESSOR
8 options INCLUDE_CONFIG_FILE # embed config file in kernel binary
10 #options UVMHIST
11 #options UVMHIST_PRINT
12 #options SYSCALL_DEBUG
17 options XEN
18 options PAE
19 #options DOM0OPS
23 #options MTRR # memory-type range register syscall support
[all …]
/netbsd/src/sys/arch/evbmips/conf/
DLINKITSMART768810 options RALINK_CONSOLE_EARLY
11 options RALINK_CONADDR=RA_UART2_BASE
13 options MT7628
14 options CONSPEED=57600
18 # Size reduction options
19 #options VNODE_OP_NOINLINE
20 #options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
21 #options SOSEND_NO_LOAN
23 # Standard system options
25 options INSECURE # disable kernel security levels - X needs this
[all …]
DCPMBR14007 #options RALINK_CONSOLE_EARLY
8 options RT3883
9 #options SLICKROCK
10 options RALINK_ETH_NUM_SW_PARTITIONS=5
11 options CONSPEED=57600
12 #options SYSCALL_DEBUG
18 # Size reduction options
19 #options VNODE_OP_NOINLINE
20 #options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
21 #options SOSEND_NO_LOAN
[all …]
DZYXELKX7 options RALINK_CONSOLE_EARLY
8 options MT7620
9 options RALINK_ETH_NUM_SW_PARTITIONS=5
10 options CONSPEED=57600
14 # Size reduction options
15 #options VNODE_OP_NOINLINE
16 #options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
17 #options SOSEND_NO_LOAN
19 # Standard system options
21 options INSECURE # disable kernel security levels - X needs this
[all …]
/netbsd/src/sys/arch/next68k/conf/
DRAMDISK9 #options INCLUDE_CONFIG_FILE # embed config file in kernel binary
14 options MEMORY_DISK_HOOKS
15 options MEMORY_DISK_IS_ROOT # Force root on ram-disk
16 options MEMORY_DISK_SERVER=0 # no userspace md(4) support
17 options MEMORY_DISK_ROOT_SIZE=3072
18 options MEMORY_DISK_RBFLAGS=RB_SINGLE # boot in single-user mode
23 # Standard system options
24 #options KTRACE # system call tracing
25 #options SYSVMSG # System V message queues
26 #options SYSVSEM # System V semaphores
[all …]
DGENERIC6 # kernel. The generic kernel does not include all options, subsystems
16 # the intro(4) man page. For further information about kernel options
17 # for this architecture, see the options(4) man page. For an explanation
23 options INCLUDE_CONFIG_FILE # embed config file in kernel binary
34 # Standard system options
35 options KTRACE # system call tracing
36 options SYSVMSG # System V message queues
37 options SYSVSEM # System V semaphores
38 options SYSVSHM # System V shared memory
40 options MODULAR # new style module(7) framework
[all …]
/netbsd/src/sys/arch/evbppc/conf/
DVIRTEX_DFC9 #options INCLUDE_CONFIG_FILE # embed config file in kernel binary
15 #options PHYSMEM=64 # RAM size (MB)
16 options PHYSMEM=60 # RAM size (MB)
18 options CPUFREQ=300 # core frequency (MHz)
20 options DESIGN_DFC # FPGA design
21 options IDCR_BASE=0x100 # Internal DCR bus
22 options DCR_XINTC_BASE=0x03f0 # Where XINTC lives on DCR
24 options CONS_NAME="\"xlcom0\""
25 options CONS_ADDR=0x010000 # offset in OPB window
27 #options UVMHIST
[all …]
DVIRTEX_GSRD29 #options INCLUDE_CONFIG_FILE # embed config file in kernel binary
15 #options PHYSMEM=64 # RAM size (MB)
16 options PHYSMEM=60 # RAM size (MB)
18 options CPUFREQ=300 # core frequency (MHz)
20 options DESIGN_GSRD2 # FPGA design
21 options IDCR_BASE=0x100 # Internal DCR bus
22 options DCR_XINTC_BASE=0x03f0 # Where XINTC lives on DCR
24 options CONS_NAME="\"xlcom0\""
25 options CONS_ADDR=0x010000 # offset in OPB window
27 #options KGDB # remote gdb on console
[all …]
/netbsd/src/sys/arch/acorn32/conf/
DEB7500ATX6 # kernel. This generic kernel does not include all options, subsystems
16 # the intro(4) man page. For further information about kernel options
17 # for this architecture, see the options(4) man page. For an explanation
23 options INCLUDE_CONFIG_FILE # embed config file in kernel binary
30 # Standard system options
32 options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT
33 #options NTP # NTP phase/frequency locked loop
35 # CPU options
36 options CPU_ARM7 # Support the ARM7 core
38 options EB7500ATX # Define in case needed
[all …]
/netbsd/src/sys/arch/hp300/conf/
DINSTALL10 #options INCLUDE_CONFIG_FILE # embed config file in kernel binary
17 # Special options for smaller kernels
18 #options NVNODE=50
19 #options NBUF=16
20 #options BUFPAGES=16
21 options BUFCACHE=5
22 options NFS_V2_ONLY
23 options NFS_DEFAULT_NIOTHREADS=1
26 options HP320
27 options HP330 # includes 318, 319
[all …]
/netbsd/src/sys/arch/emips/conf/
DGENERIC6 # kernel. The generic kernel does not include all options, subsystems
16 # the intro(4) man page. For further information about kernel options
17 # for this architecture, see the options(4) man page. For an explanation
23 options INCLUDE_CONFIG_FILE # embed config file in kernel binary
29 options MIPS1 # R2000/R3000 CPUs
30 options NOFPU # No FPU
31 options SOFTFLOAT # emulate FPU insn
34 options XILINX_ML40X # Xilinx Ml401/2 dev boards
35 options XS_BEE3 # MSR/BeCube BEE3 system
37 # Standard system options
[all …]

12345678910>>...121