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

1234567891011>>

/freebsd-11-stable/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-11-stable/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-11-stable/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-11-stable/contrib/llvm-project/compiler-rt/include/sanitizer/
H A Dtsan_interface.h34 // Mutex creation flags are passed to __tsan_mutex_create annotation.
36 // the flags may be passed to __tsan_mutex_pre_lock/__tsan_mutex_post_lock
52 // Mutex operation flags:
71 // Supported flags: mutex creation flags.
72 void __tsan_mutex_create(void *addr, unsigned flags);
75 // Supported flags:
78 void __tsan_mutex_destroy(void *addr, unsigned flags);
81 // Supported flags:
84 // - all mutex creation flags
[all...]
/freebsd-11-stable/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-11-stable/sys/compat/linuxkpi/common/include/linux/
H A Dslab.h45 #define kvmalloc(size, flags) kmalloc(size, flags)
46 #define kvzalloc(size, flags) kmalloc(size, (flags) | __GFP_ZERO)
47 #define kvcalloc(n, size, flags) kvmalloc_array(n, size, (flags) | __GFP_ZERO)
48 #define kzalloc(size, flags) kmalloc(size, (flags) | __GFP_ZERO)
49 #define kzalloc_node(size, flags, node) kmalloc(size, (flags) | __GFP_ZER
94 linux_check_m_flags(gfp_t flags) argument
109 kmalloc(size_t size, gfp_t flags) argument
115 kcalloc(size_t n, size_t size, gfp_t flags) argument
122 __vmalloc(size_t size, gfp_t flags, int other) argument
134 kmalloc_array(size_t n, size_t size, gfp_t flags) argument
140 kvmalloc_array(size_t n, size_t size, gfp_t flags) argument
146 krealloc(void *ptr, size_t size, gfp_t flags) argument
161 linux_kmem_cache_alloc(struct linux_kmem_cache *c, gfp_t flags) argument
168 kmem_cache_zalloc(struct linux_kmem_cache *c, gfp_t flags) argument
[all...]
/freebsd-11-stable/lib/libc/tests/gen/
H A Dfnmatch_test.c42 flags_to_string(int flags) argument
56 if (flags & flagvalues[i]) {
61 flags &= ~flagvalues[i];
67 else if (flags != 0)
68 sprintf(p, "%d", flags);
78 int flags, result; local
83 flags = t->flags;
85 result = fnmatch(t->pattern, t->string, flags);
89 !(flags
[all...]
/freebsd-11-stable/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-11-stable/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-11-stable/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-11-stable/etc/periodic/daily/
H A D420.status-network19 flags="${daily_status_network_netstat_flags}"
24 flags="${flags} -n";;
26 netstat -i ${flags} && rc=0 || rc=3;;
/freebsd-11-stable/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_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
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_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_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
/freebsd-11-stable/contrib/expat/xmlwf/
H A Dxmlurl.h41 unsigned flags);
/freebsd-11-stable/contrib/elftoolchain/libpe/
H A Dpe_flag.c34 pe_flag(PE *pe, PE_Cmd c, unsigned int flags) argument
42 if ((flags & ~(PE_F_STRIP_DOS_STUB | PE_F_STRIP_RICH_HEADER |
49 pe->pe_flags |= flags;
51 pe->pe_flags &= ~flags;
57 pe_flag_dos_header(PE *pe, PE_Cmd c, unsigned int flags) argument
61 (flags & ~PE_F_DIRTY) != 0) {
75 pe_flag_coff_header(PE *pe, PE_Cmd c, unsigned int flags) argument
79 (flags & ~PE_F_DIRTY) != 0) {
93 pe_flag_opt_header(PE *pe, PE_Cmd c, unsigned int flags) argument
97 (flags
111 pe_flag_data_dir(PE *pe, PE_Cmd c, unsigned int flags) argument
129 pe_flag_scn(PE_Scn *ps, PE_Cmd c, unsigned int flags) argument
147 pe_flag_section_header(PE_Scn *ps, PE_Cmd c, unsigned int flags) argument
169 pe_flag_buffer(PE_Buffer *pb, PE_Cmd c, unsigned int flags) argument
[all...]
/freebsd-11-stable/lib/libc/sys/
H A Dopen.c45 open(const char *path, int flags, ...) argument
50 if ((flags & O_CREAT) != 0) {
51 va_start(ap, flags);
58 __libc_interposing[INTERPOS_openat])(AT_FDCWD, path, flags, mode));
/freebsd-11-stable/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-11-stable/sys/vm/
H A Duma_dbg.h41 int trash_ctor(void *mem, int size, void *arg, int flags);
43 int trash_init(void *mem, int size, int flags);
47 int mtrash_ctor(void *mem, int size, void *arg, int flags);
49 int mtrash_init(void *mem, int size, int flags);
/freebsd-11-stable/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-11-stable/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-11-stable/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-11-stable/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);

Completed in 304 milliseconds

1234567891011>>