Searched refs:options (Results 26 - 50 of 201) sorted by relevance

123456789

/barrelfish-2018-10-04/lib/libc/resolv/
H A Dres_query.c128 if (statp->options & RES_DEBUG)
136 (statp->options & (RES_USE_EDNS0|RES_USE_DNSSEC|RES_NSID))) {
138 if (n > 0 && (statp->options & RES_NSID) != 0U) {
147 if (statp->options & RES_DEBUG)
158 if ((statp->options & (RES_USE_EDNS0|RES_USE_DNSSEC)) != 0U &&
161 if (statp->options & RES_DEBUG)
167 if (statp->options & RES_DEBUG)
176 if (statp->options & RES_DEBUG)
276 if ((!dots && (statp->options & RES_DEFNAMES) != 0U) ||
277 (dots && !trailing_dot && (statp->options
[all...]
H A Dres_state.c73 if ((statp->options & RES_INIT) == 0) {
91 statp->options &= ~RES_INIT;
116 statp->options = RES_TIMEOUT; /* Motorola, et al. */
H A Dres_send.c321 DprintQ((statp->options & RES_DEBUG) || (statp->pfcode & RES_PRF_QUERY),
323 v_circuit = (statp->options & RES_USEVC) || buflen > PACKETSZ;
393 if ((statp->options & RES_ROTATE) != 0U &&
394 (statp->options & RES_BLAST) == 0U) {
466 Dprint(((statp->options & RES_DEBUG) &&
500 Dprint((statp->options & RES_DEBUG) ||
505 DprintQ((statp->options & RES_DEBUG) ||
515 if ((v_circuit && (statp->options & RES_USEVC) == 0U) ||
516 (statp->options & RES_STAYOPEN) == 0U) {
753 Dprint(statp->options
[all...]
H A Dres_init.c195 statp->options = RES_DEFAULT;
532 if (MATCH(buf, "options")) {
533 res_setoptions(statp, buf + sizeof("options") - 1, "conf");
578 if (statp->options & RES_DEBUG) {
588 statp->options |= RES_NOALIASES;
591 statp->options |= RES_INIT;
596 res_setoptions(res_state statp, const char *options, const char *source) argument
598 const char *cp = options;
603 if (statp->options & RES_DEBUG)
605 options, sourc
[all...]
H A Dres_mkquery.c114 if (statp->options & RES_DEBUG)
128 hp->rd = (statp->options & RES_RECURSE) != 0U;
219 if ((statp->options & RES_DEBUG) != 0U)
240 if (statp->options & RES_USE_DNSSEC) {
242 if (statp->options & RES_DEBUG)
276 if ((statp->options & RES_DEBUG) != 0U)
/barrelfish-2018-10-04/usr/eclipseclp/JavaInterface/src/com/parctechnologies/eclipse/
H A DOutOfProcessEclipse.java62 * Create a new OutOfProcessEclipse using the supplied options.
68 * @param options settings for the new ECLiPSe engine.
70 public OutOfProcessEclipse(EclipseEngineOptions options) argument
73 startLocalEclipse(options);
87 // set the useQueues flag according to options
88 useQueues = options.isUsingQueues();
99 if(!options.isUsingQueues())
198 private void startLocalEclipse(EclipseEngineOptions options) argument
210 // The command to start eclipse : varies according to platform + options
216 if(options
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/ssl/
H A Ds23_srvr.c277 if (!(s->options & SSL_OP_NO_SSLv2))
286 if (!(s->options & SSL_OP_NO_TLSv1))
292 else if (!(s->options & SSL_OP_NO_SSLv3))
298 else if (!(s->options & SSL_OP_NO_SSLv2))
303 else if (!(s->options & SSL_OP_NO_SSLv3))
309 else if (!(s->options & SSL_OP_NO_SSLv2))
353 if (!(s->options & SSL_OP_NO_TLSv1))
358 else if (!(s->options & SSL_OP_NO_SSLv3))
367 if (!(s->options & SSL_OP_NO_SSLv3))
372 else if (!(s->options
[all...]
H A Ds23_clnt.c282 ssl2_compat = (s->options & SSL_OP_NO_SSLv2) ? 0 : 1;
287 if (!(s->options & SSL_OP_NO_TLSv1))
291 else if (!(s->options & SSL_OP_NO_SSLv3))
295 else if (!(s->options & SSL_OP_NO_SSLv2))
384 if (s->options & SSL_OP_NETSCAPE_CHALLENGE_BUG)
447 if ((s->options & SSL_OP_NO_COMPRESSION)
551 if (s->options & SSL_OP_NO_SSLv2)
564 if (s->options & SSL_OP_NETSCAPE_CHALLENGE_BUG)
618 !(s->options & SSL_OP_NO_SSLv3))
624 !(s->options
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/util/
H A Dselftest.pl16 my $options="??";
43 $options=$1 if (/^OPTIONS=(.*)$/);
71 print OUT "Options: $options\n" if $options ne "";
139 #$_=$options;
/barrelfish-2018-10-04/lib/pcre/
H A Dpcre_try_flipped.c110 internal_re->options = byteflip(re->options, sizeof(re->options));
H A Dpcre_study.c72 options the compiling options
84 const pcre_uchar *startcode, int options, recurse_check *recurses,
89 BOOL utf = (options & PCRE_UTF8) != 0;
138 d = find_minlength(re, cc, startcode, options, recurses, countptr);
390 if ((options & PCRE_JAVASCRIPT_COMPAT) == 0)
422 dd = find_minlength(re, cs, startcode, options, &this_recurse,
436 if ((options & PCRE_JAVASCRIPT_COMPAT) == 0)
459 d = find_minlength(re, cs, startcode, options, &this_recurse,
522 branchlength += find_minlength(re, cs, startcode, options,
83 find_minlength(const REAL_PCRE *re, const pcre_uchar *code, const pcre_uchar *startcode, int options, recurse_check *recurses, int *countptr) argument
1452 pcre_study(const pcre *external_re, int options, const char **errorptr) argument
[all...]
H A Dpcre_compile.c522 "inconsistent NEWLINE options\0"
998 options the options bits
1009 int bracount, int options, BOOL isclass)
1012 BOOL utf = (options & PCRE_UTF8) != 0;
1060 if ((options & PCRE_JAVASCRIPT_COMPAT) != 0)
1101 if ((options & PCRE_JAVASCRIPT_COMPAT) == 0) *errorcodeptr = ERR37;
1314 if ((options & PCRE_JAVASCRIPT_COMPAT) != 0)
1461 if ((options & PCRE_EXTRA) != 0) switch(c)
1481 if ((options
1008 check_escape(const pcre_uchar **ptrptr, pcre_uint32 *chptr, int *errorcodeptr, int bracount, int options, BOOL isclass) argument
4204 add_to_class(pcre_uint8 *classbits, pcre_uchar **uchardptr, int options, compile_data *cd, pcre_uint32 start, pcre_uint32 end) argument
4368 add_list_to_class(pcre_uint8 *classbits, pcre_uchar **uchardptr, int options, compile_data *cd, const pcre_uint32 *p, unsigned int except) argument
4406 add_not_list_to_class(pcre_uint8 *classbits, pcre_uchar **uchardptr, int options, compile_data *cd, const pcre_uint32 *p) argument
4471 int options = *optionsptr; /* May change dynamically */ local
8262 compile_regex(int options, pcre_uchar **codeptr, const pcre_uchar **ptrptr, int *errorcodeptr, BOOL lookbehind, BOOL reset_bracount, int skipbytes, int cond_depth, pcre_uint32 *firstcharptr, pcre_int32 *firstcharflagsptr, pcre_uint32 *reqcharptr, pcre_int32 *reqcharflagsptr, branch_chain *bcptr, compile_data *cd, int *lengthptr) argument
8979 pcre_compile(const char *pattern, int options, const char **errorptr, int *erroroffset, const unsigned char *tables) argument
9003 pcre_compile2(const char *pattern, int options, int *errorcodeptr, const char **errorptr, int *erroroffset, const unsigned char *tables) argument
[all...]
/barrelfish-2018-10-04/tools/harness/machines/
H A D__init__.py22 def __init__(self, options, operations,
41 self.options = options
330 def __init__(self, options, operations, **kwargs):
331 super(ARMMachineBase, self).__init__(options, operations, **kwargs)
343 template_menulst = os.path.join(self.options.sourcedir, "hake",
351 if self.options.existingbuild:
352 self.kernel_img = os.path.join(self.options.existingbuild, self.imagename)
354 self.kernel_img = os.path.join(self.options.buildbase,
355 self.options
[all...]
/barrelfish-2018-10-04/tools/harness/tests/
H A D__init__.py13 def __init__(self, options):
H A DTimerTest.py22 def __init__(self, options):
23 super(TimerTest, self).__init__(options)
/barrelfish-2018-10-04/lib/openssl-1.0.0d/apps/
H A Dpkcs12.c83 int dump_certs_keys_p12(BIO *out, PKCS12 *p12, char *pass, int passlen, int options, char *pempass);
85 int passlen, int options, char *pempass);
86 int dump_certs_pkeys_bag(BIO *out, PKCS12_SAFEBAG *bags, char *pass, int passlen, int options, char *pempass);
108 int options = 0; local
144 if (!strcmp (*args, "-nokeys")) options |= NOKEYS;
147 else if (!strcmp (*args, "-nocerts")) options |= NOCERTS;
148 else if (!strcmp (*args, "-clcerts")) options |= CLCERTS;
149 else if (!strcmp (*args, "-cacerts")) options |= CACERTS;
150 else if (!strcmp (*args, "-noout")) options |= (NOKEYS|NOCERTS);
151 else if (!strcmp (*args, "-info")) options |
697 dump_certs_keys_p12(BIO *out, PKCS12 *p12, char *pass, int passlen, int options, char *pempass) argument
739 dump_certs_pkeys_bags(BIO *out, STACK_OF(PKCS12_SAFEBAG) *bags, char *pass, int passlen, int options, char *pempass) argument
753 dump_certs_pkeys_bag(BIO *out, PKCS12_SAFEBAG *bag, char *pass, int passlen, int options, char *pempass) argument
[all...]
/barrelfish-2018-10-04/tools/harness/
H A Dreprocess.py17 p = optparse.OptionParser(usage='Usage: %prog [options] RESULTDIR...',
20 options, dirs = p.parse_args()
31 debug.current_level = options.debuglevel
55 test = t(None) # XXX: dummy options
H A Dbuilds.py20 def __init__(self, options):
22 self.options = options
26 build_dir = os.path.join(self.options.buildbase, self.name.lower())
90 # get custom configuration options as a dictionary
93 # create a new config file: template and then local options
96 # XXX: exclude options from the defaults that are set locally
229 def __init__(self, options, build_dir):
230 super(ExistingBuild, self).__init__(options)
/barrelfish-2018-10-04/tools/usbboot/arch/omap4/
H A Drom_usb.c66 usb->dread.options = boot->options;
70 usb->dwrite.options = boot->options;
/barrelfish-2018-10-04/lib/lua/src/
H A Dldblib.c116 const char *options = luaL_optstring(L, arg+2, "flnStu"); local
124 lua_pushfstring(L, ">%s", options);
125 options = lua_tostring(L, -1);
131 if (!lua_getinfo(L1, options, &ar))
134 if (strchr(options, 'S')) {
141 if (strchr(options, 'l'))
143 if (strchr(options, 'u')) {
148 if (strchr(options, 'n')) {
152 if (strchr(options, 't'))
154 if (strchr(options, '
[all...]
H A Dloslib.c172 static const char *const options[] = LUA_STRFTIMEOPTIONS; local
174 for (i = 0; i < sizeof(options)/sizeof(options[0]); i += 2) {
175 if (*conv != '\0' && strchr(options[i], *conv) != NULL) {
177 if (*options[i + 1] == '\0') { /* one-char conversion specifier? */
182 strchr(options[i + 1], *(conv + 1)) != NULL) {
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/des/times/
H A Daix.cc12 options des ecb/s
/barrelfish-2018-10-04/lib/libc/net/
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.c111 if (res->options & RES_DEBUG) {
337 if (statp->options & RES_USE_INET6) {
421 if (statp->options & RES_USE_INET6)
658 old_options = statp->options;
659 statp->options &= ~RES_DNSRCH;
660 statp->options |= RES_DEFNAMES;
670 statp->options = old_options;
675 statp->options = old_options;
696 if (af == AF_INET && (statp->options & RES_USE_INET6)) {
761 if ((statp->options
[all...]
/barrelfish-2018-10-04/usr/eclipseclp/Kernel/src/
H A Dread.c245 int options; /* parser options */ member in struct:parse_desc
441 if (!(pd->options & LAYOUT_PLEASE)) { \
460 if (!(pd->options & LAYOUT_PLEASE)) { \
617 if (pd->options & VARNAMES_PLEASE) {
719 if ((context_flags & BAR_TERMINATES) || (pd->sd->options & BAR_IS_NO_ATOM))
735 if (pd->sd->options & ISO_RESTRICTIONS)
1036 if (pd->sd->options & BAR_IS_NO_ATOM)
1060 else if (IsChar(pd, '{') && !(pd->sd->options & NO_CURLY_ARGUMENTS))
1084 if (!(pd->sd->options
1512 ec_read_term( stream_id nst, int options, pword *result, pword *varlist, int *has_macro, value vm, type tm ) argument
1812 _alloc_parse_env(int options, stream_id nst, dident module, type mod_tag) argument
[all...]

Completed in 147 milliseconds

123456789