Searched refs:options (Results 276 - 300 of 865) sorted by relevance

<<11121314151617181920>>

/freebsd-9.3-release/contrib/bind9/lib/bind9/
H A Dcheck.c145 check_order(const cfg_obj_t *options, isc_log_t *logctx) { argument
151 if (cfg_map_get(options, "rrset-order", &obj) != ISC_R_SUCCESS)
166 check_dual_stack(const cfg_obj_t *options, isc_log_t *logctx) { argument
178 (void)cfg_map_get(options, "dual-stack-servers", &alternates);
226 check_forward(const cfg_obj_t *options, const cfg_obj_t *global, argument
232 (void)cfg_map_get(options, "forward", &forward);
233 (void)cfg_map_get(options, "forwarders", &forwarders);
373 const cfg_obj_t *options; local
377 options = cfg_tuple_get(zconfig, "options");
426 const cfg_obj_t *options; local
527 const cfg_obj_t *options, *aclobj, *obj = NULL; local
598 const cfg_obj_t *options, *aclobj, *obj = NULL; local
679 check_options(const cfg_obj_t *options, isc_log_t *logctx, isc_mem_t *mctx, optlevel_t optlevel) argument
1275 check_nonzero(const cfg_obj_t *options, isc_log_t *logctx) argument
1318 static optionstable options[] = { local
1698 const cfg_obj_t *options = NULL; local
2263 const cfg_obj_t *options = NULL; local
2748 const cfg_obj_t *options = NULL; local
[all...]
/freebsd-9.3-release/contrib/cvs/src/
H A Dupdate.c20 * Arguments following the options are taken to be file names to be updated,
85 static char *options = NULL; variable
135 "(Specify the --help global option for a list of other help options)\n",
177 if (options)
178 free (options);
179 options = RCS_check_kflag (optarg);
189 /* The CVS 1.5 client sends these options (in addition to
221 error (1, 0, "only two -j options can be specified");
278 if (options && options[
[all...]
/freebsd-9.3-release/sys/dev/drm2/ttm/
H A Dttm_page_alloc.c111 struct ttm_pool_opts options; member in struct:ttm_pool_manager
182 m->options.max_size = val;
184 m->options.small = val;
195 m->options.alloc_size = val;
207 val = m->options.max_size;
209 val = m->options.small;
211 val = m->options.alloc_size;
587 if (count < _manager->options.small
590 unsigned alloc_size = _manager->options.alloc_size;
685 if (pool->npages > _manager->options
[all...]
/freebsd-9.3-release/contrib/bind9/lib/dns/
H A Dbyaddr.c65 dns_byaddr_createptrname2(isc_netaddr_t *address, unsigned int options, argument
99 if ((options & DNS_BYADDROPT_IPV6INT) != 0)
120 unsigned int options; member in struct:dns_byaddr
217 unsigned int options, isc_task_t *task,
229 byaddr->options = options;
251 result = dns_byaddr_createptrname2(address, options,
216 dns_byaddr_create(isc_mem_t *mctx, isc_netaddr_t *address, dns_view_t *view, unsigned int options, isc_task_t *task, isc_taskaction_t action, void *arg, dns_byaddr_t **byaddrp) argument
/freebsd-9.3-release/contrib/gnu-sort/lib/
H A Dquotearg.c115 /* The default quoting options. */
118 /* Allocate a new set of quoting options, with contents initially identical
147 set the value of the quoting options for character C to I.
554 OPTIONS specifies the quoting options.
561 struct quoting_options const *options)
601 size_t qsize = quotearg_buffer (val, size, arg, argsize, options);
609 quotearg_buffer (val, size, arg, argsize, options);
629 /* Return quoting options for STYLE, with no extra quoting. */
663 struct quoting_options options; local
664 options
560 quotearg_n_options(int n, char const *arg, size_t argsize, struct quoting_options const *options) argument
[all...]
/freebsd-9.3-release/gnu/usr.bin/grep/
H A Dquotearg.c136 /* The default quoting options. */
139 /* Allocate a new set of quoting options, with contents initially identical
167 set the value of the quoting options for character C to I.
520 OPTIONS specifies the quoting options.
527 struct quoting_options const *options)
560 size_t qsize = quotearg_buffer (val, size, arg, (size_t) -1, options);
566 quotearg_buffer (val, size, arg, (size_t) -1, options);
603 struct quoting_options options; local
604 options = default_quoting_options;
605 set_char_quoting (&options, c
526 quotearg_n_options(int n, char const *arg, struct quoting_options const *options) argument
[all...]
/freebsd-9.3-release/lib/libc/net/
H A Dgethostbynis.c106 if (statp->options & RES_USE_INET6) {
219 oresopt = statp->options;
220 statp->options &= ~RES_USE_INET6;
222 statp->options = oresopt;
246 oresopt = statp->options;
247 statp->options &= ~RES_USE_INET6;
249 statp->options = oresopt;
H A Dgetnetbydns.c288 if ((statp->options & RES_INIT) == 0 && res_ninit(statp) == -1) {
336 if (statp->options & RES_DEBUG)
344 if (statp->options & RES_DEBUG)
392 if ((statp->options & RES_INIT) == 0 && res_ninit(statp) == -1) {
417 if (statp->options & RES_DEBUG)
424 if (statp->options & RES_DEBUG)
451 if ((statp->options & RES_INIT) == 0 && res_ninit(statp) == -1)
454 statp->options |= RES_STAYOPEN | RES_USEVC;
463 statp->options &= ~(RES_STAYOPEN | RES_USEVC);
H A Dgethostbydns.c115 if (res->options & RES_DEBUG) {
341 if (statp->options & RES_USE_INET6) {
425 if (statp->options & RES_USE_INET6)
662 old_options = statp->options;
663 statp->options &= ~RES_DNSRCH;
664 statp->options |= RES_DEFNAMES;
674 statp->options = old_options;
679 statp->options = old_options;
700 if (af == AF_INET && (statp->options & RES_USE_INET6)) {
765 if ((statp->options
[all...]
/freebsd-9.3-release/contrib/bind9/lib/dns/include/dns/
H A Ddb.h99 dns_rdatatype_t type, unsigned int options,
105 unsigned int options, isc_stdtime_t now,
119 isc_result_t (*createiterator)(dns_db_t *db, unsigned int options,
136 unsigned int options,
141 unsigned int options,
190 dns_rdatatype_t type, unsigned int options,
263 * Iterator options
524 unsigned int options);
724 dns_rdatatype_t type, unsigned int options, isc_stdtime_t now,
730 dns_rdatatype_t type, unsigned int options, isc_stdtime_
[all...]
H A Dadb.h116 unsigned int options; /*%< RO: options */ member in struct:dns_adbfind
336 dns_rdatatype_t qtype, unsigned int options,
342 dns_rdatatype_t qtype, unsigned int options,
385 * XXXMLG Document options, especially the flags which control how
444 * with (find->options & DNS_ADBFIND_WANTEVENT).
/freebsd-9.3-release/contrib/bind9/bin/dnssec/
H A Ddnssec-keyfromlabel.c67 fprintf(stderr, " %s -l label [options] name\n\n",
70 fprintf(stderr, "Required options:\n");
73 fprintf(stderr, "Other options:\n");
97 fprintf(stderr, "Date options:\n");
141 int options = DST_TYPE_PRIVATE | DST_TYPE_PUBLIC; local
207 options |= DST_TYPE_KEY;
378 options |= DST_TYPE_KEY;
390 if (type != NULL && (options & DST_TYPE_KEY) != 0) {
405 if ((options & DST_TYPE_KEY) != 0) /* KEY */
410 else if ((options
[all...]
/freebsd-9.3-release/crypto/openssl/ssl/
H A Ds23_clnt.c218 ssl2_compat = (s->options & SSL_OP_NO_SSLv2) ? 0 : 1;
220 if (!(s->options & SSL_OP_NO_TLSv1)) {
222 } else if (!(s->options & SSL_OP_NO_SSLv3)) {
224 } else if (!(s->options & SSL_OP_NO_SSLv2)) {
309 if (s->options & SSL_OP_NETSCAPE_CHALLENGE_BUG)
471 if (s->options & SSL_OP_NO_SSLv2) {
481 if (s->options & SSL_OP_NETSCAPE_CHALLENGE_BUG)
534 if ((p[2] == SSL3_VERSION_MINOR) && !(s->options & SSL_OP_NO_SSLv3)) {
546 if ((p[2] == TLS1_VERSION_MINOR) && !(s->options & SSL_OP_NO_TLSv1)) {
/freebsd-9.3-release/contrib/bind9/bin/named/
H A Dlwdgnba.c72 (client->options & DNS_BYADDROPT_IPV6INT) != 0) {
88 client->options |= DNS_BYADDROPT_IPV6INT;
169 client->options, cm->task, byaddr_done,
224 client->options = 0;
253 client->options = 0;
/freebsd-9.3-release/contrib/bind9/lib/dns/rdata/generic/
H A Dptr_12.c45 RETTOK(dns_name_fromtext(&name, &buffer, origin, options, target));
47 (options & DNS_RDATA_CHECKNAMES) != 0 &&
48 (options & DNS_RDATA_CHECKREVERSE) != 0) {
51 if (!ok && (options & DNS_RDATA_CHECKNAMESFAIL) != 0)
92 return (dns_name_fromwire(&name, source, dctx, options, target));
/freebsd-9.3-release/crypto/openssh/
H A Dauth-rsa.c40 #include "auth-options.h"
53 extern ServerOptions options;
64 * options bits e n comment
68 * description of the options.
178 if ((f = auth_openkeyfile(file, pw, options.strict_modes)) == NULL)
199 * Check if there are options for this key, and if so,
201 * for now. If there are no options, set the starting
249 * If our options do not allow this key to be used,
286 for (i = 0; !allowed && i < options.num_authkeys_files; i++) {
287 if (strcasecmp(options
[all...]
H A Dcanohost.c140 * If IP options are supported, make sure there are none (log and
148 * exit here if we detect any IP options.
155 u_char options[200]; local
156 char text[sizeof(options) * 3 + 1];
165 option_size = sizeof(options);
166 if (getsockopt(sock, ipproto, IP_OPTIONS, options,
171 " %2.2x", options[i]);
172 fatal("Connection from %.100s with IP options:%.800s",
H A Dssh-keysign.c152 Options options; local
189 initialize_options(&options);
190 (void)read_config_file(_PATH_HOST_CONFIG_FILE, pw, "", &options, 0);
191 fill_default_options(&options);
192 if (options.enable_ssh_keysign != 1)
/freebsd-9.3-release/contrib/ntp/sntp/libevent/include/event2/
H A Dbufferevent.h184 @param options Zero or more BEV_OPT_* flags
190 struct bufferevent *bufferevent_socket_new(struct event_base *base, evutil_socket_t fd, int options);
611 The function will honor watermarks unless options contain
612 BEV_TRIG_IGNORE_WATERMARKS. If the options contain BEV_OPT_DEFER_CALLBACKS,
617 @param options
621 int options);
626 If the options contain BEV_OPT_DEFER_CALLBACKS, the callbacks are deferred.
630 @param options
634 int options);
686 @param options
[all...]
/freebsd-9.3-release/contrib/ntp/include/
H A Dntp_config.h153 attr_val_fifo * options; member in struct:filegen_node_tag
182 attr_val_fifo * options; member in struct:addr_opts_node_tag
282 attr_val_fifo *options);
292 attr_val_fifo *options);
299 attr_val_fifo *options);
/freebsd-9.3-release/gnu/lib/csu/
H A DMakefile13 SRCS= crtstuff.c tconfig.h tm.h options.h
70 CLEANFILES+= tm.h tconfig.h options.h optionlist cs-tconfig.h cs-tm.h
71 tm.h tconfig.h options.h: ${CCDIR}/cc_tools/Makefile
/freebsd-9.3-release/sys/dev/ofw/
H A Dofw_console.c85 phandle_t options; local
91 if ((options = OF_finddevice("/options")) == -1 ||
92 OF_getprop(options, "output-device", output,
/freebsd-9.3-release/sys/dev/ppbus/
H A Dppb_1284.c148 * Converts mode+options into ext. value
151 ppb_request_mode(int mode, int options) argument
155 if (options & PPB_EXTENSIBILITY_LINK) {
161 request_mode = (options & PPB_REQUEST_ID) ?
166 request_mode = (options & PPB_REQUEST_ID) ?
171 if (options & PPB_USE_RLE)
172 request_mode = (options & PPB_REQUEST_ID) ?
176 request_mode = (options & PPB_REQUEST_ID) ?
197 ppb_peripheral_negociate(device_t bus, int mode, int options) argument
206 request_mode = ppb_request_mode(mode, options);
658 ppb_1284_negociate(device_t bus, int mode, int options) argument
[all...]
/freebsd-9.3-release/usr.bin/find/
H A Doption.c58 static OPTION const options[] = { variable
189 return ((OPTION *)bsearch(&tmp, options,
190 sizeof(options)/sizeof(OPTION), sizeof(OPTION), typecompare));
/freebsd-9.3-release/usr.bin/make/
H A Dmain.c200 } options[] = { local
211 for (i = 0; options[i].option != NULL; i++)
212 if (strcmp(arg, options[i].option) == 0)
215 if (options[i].option == NULL)
221 warn_cmd |= options[i].flag;
222 warn_nocmd &= ~options[i].flag;
223 warn_flags |= options[i].flag;
225 warn_nocmd |= options[i].flag;
226 warn_cmd &= ~options[i].flag;
227 warn_flags &= ~options[
[all...]

Completed in 227 milliseconds

<<11121314151617181920>>