Searched refs:flags (Results 1 - 25 of 4957) sorted by relevance

1234567891011>>

/freebsd-10.1-release/contrib/gcc/
H A Dopt-functions.awk22 function flag_set_p(regex, flags)
24 return (" " flags " ") ~ (" " regex " ")
29 function test_flag(regex, flags, string)
31 if (flag_set_p(regex, flags))
38 function opt_args(name, flags)
40 flags = " " flags
41 if (flags !~ " " name "\\(")
43 sub(".* " name "\\(", "", flags)
44 sub("\\).*", "", flags)
[all...]
/freebsd-10.1-release/contrib/openpam/modules/pam_deny/
H A Dpam_deny.c47 pam_sm_authenticate(pam_handle_t *pamh, int flags, argument
52 (void)flags;
59 pam_sm_setcred(pam_handle_t *pamh, int flags, argument
64 (void)flags;
71 pam_sm_acct_mgmt(pam_handle_t *pamh, int flags, argument
76 (void)flags;
83 pam_sm_open_session(pam_handle_t *pamh, int flags, argument
88 (void)flags;
95 pam_sm_close_session(pam_handle_t *pamh, int flags, argument
100 (void)flags;
107 pam_sm_chauthtok(pam_handle_t *pamh, int flags, int argc, const char *argv[]) argument
[all...]
/freebsd-10.1-release/contrib/openpam/modules/pam_permit/
H A Dpam_permit.c47 pam_sm_authenticate(pam_handle_t *pamh, int flags, argument
52 (void)flags;
59 pam_sm_setcred(pam_handle_t *pamh, int flags, argument
64 (void)flags;
71 pam_sm_acct_mgmt(pam_handle_t *pamh, int flags, argument
76 (void)flags;
83 pam_sm_open_session(pam_handle_t *pamh, int flags, argument
88 (void)flags;
95 pam_sm_close_session(pam_handle_t *pamh, int flags, argument
100 (void)flags;
107 pam_sm_chauthtok(pam_handle_t *pamh, int flags, int argc, const char *argv[]) argument
[all...]
/freebsd-10.1-release/contrib/amd/conf/trap/
H A Dtrap_default.h3 #define MOUNT_TRAP(type, mnt, flags, mnt_data) mount(type, mnt->mnt_dir, flags, mnt_data)
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Sema/
H A DScope.cpp19 void Scope::Init(Scope *parent, unsigned flags) { argument
21 Flags = flags;
23 if (parent && !(flags & FnScope)) {
48 if (flags & FnScope) FnParent = this;
49 if (flags & BreakScope) BreakParent = this;
50 if (flags & ContinueScope) ContinueParent = this;
51 if (flags & BlockScope) BlockParent = this;
52 if (flags & TemplateParamScope) TemplateParamParent = this;
55 if (flags & FunctionPrototypeScope) PrototypeDepth++;
/freebsd-10.1-release/sys/libkern/
H A Dfnmatch.c54 fnmatch(const char *pattern, const char *string, int flags) argument
63 if ((flags & FNM_LEADING_DIR) && *string == '/')
69 if (*string == '/' && (flags & FNM_PATHNAME))
71 if (*string == '.' && (flags & FNM_PERIOD) &&
73 ((flags & FNM_PATHNAME) && *(string - 1) == '/')))
83 if (*string == '.' && (flags & FNM_PERIOD) &&
85 ((flags & FNM_PATHNAME) && *(string - 1) == '/')))
90 if (flags & FNM_PATHNAME)
91 return ((flags & FNM_LEADING_DIR) ||
96 else if (c == '/' && flags
157 rangematch(const char *pattern, char test, int flags, char **newp) argument
[all...]
/freebsd-10.1-release/sys/dev/ncv/
H A Dncr53c500hw.h62 #define NCV_C5IMG(flags) ((DVCFG_MAJOR(flags) >> 8) & 0xff)
63 #define NCV_CLKFACTOR(flags) (DVCFG_MAJOR(flags) & 0x0f)
68 #define NCV_SPECIAL(flags) ((DVCFG_MAJOR(flags) >> 4) & 0x0f)
/freebsd-10.1-release/usr.bin/csup/
H A Dfnmatch.c58 fnmatch(const char *pattern, const char *string, int flags) argument
66 if ((flags & FNM_LEADING_DIR) && *string == '/')
72 if (*string == '/' && (flags & FNM_PATHNAME))
74 if (*string == '.' && (flags & FNM_PERIOD) &&
76 ((flags & FNM_PATHNAME) && *(string - 1) == '/')))
86 if (*string == '.' && (flags & FNM_PERIOD) &&
88 ((flags & FNM_PATHNAME) && *(string - 1) == '/')))
93 if (flags & FNM_PATHNAME)
94 return ((flags & FNM_LEADING_DIR) ||
99 else if (c == '/' && flags
152 rangematch(const char *pattern, char test, int flags) argument
[all...]
/freebsd-10.1-release/contrib/expat/xmlwf/
H A Dxmlurl.h9 unsigned flags);
/freebsd-10.1-release/contrib/openpam/lib/libpam/
H A Dpam_acct_mgmt.c57 int flags)
62 r = openpam_dispatch(pamh, PAM_SM_ACCT_MGMT, flags);
78 * The =flags argument is the binary or of zero or more of the following
56 pam_acct_mgmt(pam_handle_t *pamh, int flags) argument
H A Dpam_authenticate.c57 int flags)
62 if (flags & ~(PAM_SILENT|PAM_DISALLOW_NULL_AUTHTOK))
64 r = openpam_dispatch(pamh, PAM_SM_AUTHENTICATE, flags);
86 * The =flags argument is the binary or of zero or more of the following
56 pam_authenticate(pam_handle_t *pamh, int flags) argument
H A Dpam_close_session.c57 int flags)
62 if (flags & ~(PAM_SILENT))
64 r = openpam_dispatch(pamh, PAM_SM_CLOSE_SESSION, flags);
81 * The =flags argument is the binary or of zero or more of the following
56 pam_close_session(pam_handle_t *pamh, int flags) argument
H A Dpam_open_session.c57 int flags)
62 if (flags & ~(PAM_SILENT))
64 r = openpam_dispatch(pamh, PAM_SM_OPEN_SESSION, flags);
82 * The =flags argument is the binary or of zero or more of the following
56 pam_open_session(pam_handle_t *pamh, int flags) argument
H A Dpam_setcred.c57 int flags)
62 if (flags & ~(PAM_SILENT|PAM_ESTABLISH_CRED|PAM_DELETE_CRED|
66 r = openpam_dispatch(pamh, PAM_SM_SETCRED, flags);
82 * The =flags argument is the binary or of zero or more of the following
56 pam_setcred(pam_handle_t *pamh, int flags) argument
/freebsd-10.1-release/sys/dev/atkbdc/
H A Datkbdreg.h34 /* device configuration flags (atkbdprobe, atkbdattach) */
42 int atkbd_probe_unit(device_t dev, int irq, int flags);
43 int atkbd_attach_unit(device_t dev, keyboard_t **kbd, int irq, int flags);
/freebsd-10.1-release/sys/ofed/include/linux/
H A Ddma-attrs.h37 unsigned long flags; member in struct:dma_attrs
45 attrs->flags = 0;
/freebsd-10.1-release/contrib/sendmail/libsm/
H A Dflags.c16 SM_RCSID("@(#)$Id: flags.c,v 1.24 2013-11-22 20:51:42 ca Exp $")
24 ** SM_FLAGS -- translate external (user) flags into internal flags
27 ** flags -- user select flags
30 ** Internal flag value matching user selected flags
34 sm_flags(flags)
35 int flags;
39 switch(SM_IO_MODE(flags))
61 if (SM_IS_BINARY(flags))
[all...]
/freebsd-10.1-release/contrib/tcpdump/
H A Dnetbios.h10 u_char flags; member in struct:p8022Hdr
15 #define UI 0x03 /* 802.2 flags */
/freebsd-10.1-release/crypto/heimdal/lib/roken/
H A Dfnmatch.c62 rk_fnmatch(const char *pattern, const char *string, int flags) argument
74 if (*string == '/' && (flags & FNM_PATHNAME))
76 if (*string == '.' && (flags & FNM_PERIOD) &&
78 ((flags & FNM_PATHNAME) && *(string - 1) == '/')))
88 if (*string == '.' && (flags & FNM_PERIOD) &&
90 ((flags & FNM_PATHNAME) && *(string - 1) == '/')))
95 if (flags & FNM_PATHNAME)
100 else if (c == '/' && flags & FNM_PATHNAME) {
108 if (!rk_fnmatch(pattern, string, flags & ~FNM_PERIOD))
110 if (test == '/' && flags
142 rangematch(const char *pattern, int test, int flags) argument
[all...]
/freebsd-10.1-release/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Dzutil.c39 uLong flags; local
41 flags = 0;
44 case 4: flags += 1; break;
45 case 8: flags += 2; break;
46 default: flags += 3;
50 case 4: flags += 1 << 2; break;
51 case 8: flags += 2 << 2; break;
52 default: flags += 3 << 2;
56 case 4: flags += 1 << 4; break;
57 case 8: flags
[all...]
/freebsd-10.1-release/lib/libc/net/
H A Drecv.c42 recv(s, buf, len, flags)
43 int s, flags;
51 return (recvfrom(s, buf, len, flags, NULL, 0));
H A Dsend.c42 send(s, msg, len, flags)
43 int s, flags;
51 return (sendto(s, msg, len, flags, NULL, 0));
/freebsd-10.1-release/lib/libmemstat/
H A Dmemstat_all.c39 memstat_sysctl_all(struct memory_type_list *mtlp, int flags) argument
42 if (memstat_sysctl_malloc(mtlp, flags) < 0)
44 if (memstat_sysctl_uma(mtlp, flags) < 0)
/freebsd-10.1-release/tools/test/testfloat/sparc64/
H A Dsystflags.c61 Clears the system's IEC/IEEE floating-point exception flags. Returns the
62 previous value of the flags.
67 fexcept_t flags; local
69 fegetexceptflag(&flags, FE_ALL_EXCEPT);
71 return (flags >> 5);
/freebsd-10.1-release/tools/regression/lib/libc/gen/
H A Dtest-fnmatch.c40 int flags; member in struct:testcase
184 flags_to_string(int flags) argument
198 if (flags & flagvalues[i]) {
203 flags &= ~flagvalues[i];
209 else if (flags != 0)
210 sprintf(p, "%d", flags);
241 if (t->flags == 0 && strcmp(t->pattern, "\\") == 0)
243 if (num == 1 && t->flags == 0)
247 if (num == 2 && (t->flags == FNM_NOESCAPE ||
248 (t->flags
261 int opt, flags, result, extra, errors; local
[all...]

Completed in 128 milliseconds

1234567891011>>