| /freebsd-10-stable/usr.sbin/jls/ |
| D | jls.c | 75 static int print_jail(int pflags, int jflags); 82 int c, i, jflags, jid, lastjid, pflags, spc; in main() local 85 pflags = jflags = jid = 0; in main() 100 pflags = (pflags & ~(PRINT_SKIP | PRINT_VERBOSE)) | in main() 104 pflags |= PRINT_JAIL_NAME; in main() 107 pflags = (pflags & ~PRINT_VERBOSE) | PRINT_NAMEVAL; in main() 110 pflags |= PRINT_QUOTED; in main() 113 pflags = (pflags & ~(PRINT_HEADER | PRINT_VERBOSE)) | in main() 117 pflags = (pflags & in main() 134 if (pflags & (PRINT_HEADER | PRINT_NAMEVAL)) in main() [all …]
|
| /freebsd-10-stable/crypto/openssl/crypto/engine/ |
| D | eng_fat.c | 105 unsigned int *pflags = arg; in int_def_cb() local 109 *pflags |= ENGINE_METHOD_ALL; in int_def_cb() 111 *pflags |= ENGINE_METHOD_RSA; in int_def_cb() 113 *pflags |= ENGINE_METHOD_DSA; in int_def_cb() 115 *pflags |= ENGINE_METHOD_ECDH; in int_def_cb() 117 *pflags |= ENGINE_METHOD_ECDSA; in int_def_cb() 119 *pflags |= ENGINE_METHOD_DH; in int_def_cb() 121 *pflags |= ENGINE_METHOD_RAND; in int_def_cb() 123 *pflags |= ENGINE_METHOD_CIPHERS; in int_def_cb() 125 *pflags |= ENGINE_METHOD_DIGESTS; in int_def_cb() [all …]
|
| /freebsd-10-stable/contrib/netbsd-tests/fs/puffs/h_dtfs/ |
| D | dtfs.c | 108 int pflags, detach, mntflags; in main() local 119 pflags = PUFFS_KFLAG_IAONDEMAND; in main() 126 pflags |= PUFFS_FLAG_BUILDPATH; in main() 135 pflags |= PUFFS_KFLAG_LOOKUP_FULLPNBUF; in main() 138 pflags &= ~PUFFS_KFLAG_IAONDEMAND; in main() 150 mp = getmntopts(optarg, puffsmopts, &mntflags, &pflags); in main() 167 pflags |= PUFFS_KFLAG_WTCACHE; in main() 174 if (pflags & PUFFS_FLAG_OPDUMP) in main() 214 pu = puffs_init(pops, _PATH_PUFFS, typename, &gdtm, pflags); in main()
|
| /freebsd-10-stable/sys/netinet/libalias/ |
| D | alias_ftp.c | 229 int hlen, tlen, dlen, pflags; in AliasHandleFtpOut() local 248 pflags = GetProtocolFlags(lnk); in AliasHandleFtpOut() 249 if (dlen <= MAX_MESSAGE_SIZE && !(pflags & WAIT_CRLF)) { in AliasHandleFtpOut() 282 pflags &= ~WAIT_CRLF; in AliasHandleFtpOut() 284 pflags |= WAIT_CRLF; in AliasHandleFtpOut() 285 SetProtocolFlags(lnk, pflags); in AliasHandleFtpOut() 294 int hlen, tlen, dlen, pflags; in AliasHandleFtpIn() local 312 pflags = GetProtocolFlags(lnk); in AliasHandleFtpIn() 313 if (dlen <= MAX_MESSAGE_SIZE && (pflags & WAIT_CRLF) == 0 && in AliasHandleFtpIn() 333 pflags &= ~WAIT_CRLF; in AliasHandleFtpIn() [all …]
|
| /freebsd-10-stable/usr.bin/gcore/ |
| D | gcore.c | 70 int pflags; variable 88 pflags = 0; in main() 96 pflags |= PFLAGS_FULL; in main() 99 pflags |= PFLAGS_RESUME; in main()
|
| D | extern.h | 40 extern int pflags;
|
| /freebsd-10-stable/sys/vm/ |
| D | vm_kern.c | 165 int pflags, tries; in kmem_alloc_attr() local 171 pflags = malloc2vm_flags(flags) | VM_ALLOC_NOBUSY | VM_ALLOC_WIRED; in kmem_alloc_attr() 177 pflags, 1, low, high, PAGE_SIZE, 0, memattr); in kmem_alloc_attr() 217 int pflags, tries; in kmem_alloc_contig() local 223 pflags = malloc2vm_flags(flags) | VM_ALLOC_NOBUSY | VM_ALLOC_WIRED; in kmem_alloc_contig() 227 m = vm_page_alloc_contig(object, OFF_TO_IDX(offset), pflags, in kmem_alloc_contig() 325 int pflags; in kmem_back() local 331 pflags = malloc2vm_flags(flags) | VM_ALLOC_NOBUSY | VM_ALLOC_WIRED; in kmem_back() 336 m = vm_page_alloc(object, OFF_TO_IDX(offset + i), pflags); in kmem_back()
|
| D | vm_page.h | 407 int pflags; in malloc2vm_flags() local 412 pflags = (malloc_flags & M_USE_RESERVE) != 0 ? VM_ALLOC_INTERRUPT : in malloc2vm_flags() 415 pflags |= VM_ALLOC_ZERO; in malloc2vm_flags() 417 pflags |= VM_ALLOC_NODUMP; in malloc2vm_flags() 418 return (pflags); in malloc2vm_flags()
|
| /freebsd-10-stable/sys/ia64/ia64/ |
| D | uma_machdep.c | 47 int pflags; in uma_small_alloc() local 50 pflags = malloc2vm_flags(wait) | VM_ALLOC_WIRED; in uma_small_alloc() 53 m = vm_page_alloc(NULL, 0, pflags | VM_ALLOC_NOOBJ); in uma_small_alloc()
|
| /freebsd-10-stable/sys/mips/mips/ |
| D | uma_machdep.c | 48 int pflags; in uma_small_alloc() local 52 pflags = malloc2vm_flags(wait) | VM_ALLOC_WIRED; in uma_small_alloc() 55 m = vm_page_alloc_freelist(VM_FREELIST_DIRECT, pflags); in uma_small_alloc()
|
| /freebsd-10-stable/sys/amd64/amd64/ |
| D | uma_machdep.c | 49 int pflags; in uma_small_alloc() local 52 pflags = malloc2vm_flags(wait) | VM_ALLOC_NOOBJ | VM_ALLOC_WIRED; in uma_small_alloc() 54 m = vm_page_alloc(NULL, 0, pflags); in uma_small_alloc()
|
| /freebsd-10-stable/sys/powerpc/aim/ |
| D | uma_machdep.c | 57 int pflags; in uma_small_alloc() local 60 pflags = malloc2vm_flags(wait) | VM_ALLOC_WIRED; in uma_small_alloc() 63 m = vm_page_alloc(NULL, 0, pflags | VM_ALLOC_NOOBJ); in uma_small_alloc()
|
| D | slb.c | 481 int pflags; in slb_uma_real_alloc() local 487 pflags = malloc2vm_flags(wait) | VM_ALLOC_NOOBJ | VM_ALLOC_WIRED; in slb_uma_real_alloc() 490 m = vm_page_alloc_contig(NULL, 0, pflags, 1, 0, realmax, in slb_uma_real_alloc()
|
| /freebsd-10-stable/sys/x86/iommu/ |
| D | intel_idpgtbl.c | 415 vm_page_t *ma, uint64_t pflags, int flags) in ctx_map_buf_locked() argument 479 dmar_pte_store(&pte->pte, VM_PAGE_TO_PHYS(ma[pi]) | pflags | in ctx_map_buf_locked() 492 vm_page_t *ma, uint64_t pflags, int flags) in ctx_map_buf() argument 518 KASSERT((pflags & (DMAR_PTE_R | DMAR_PTE_W)) != 0, in ctx_map_buf() 519 ("neither read nor write %jx", (uintmax_t)pflags)); in ctx_map_buf() 520 KASSERT((pflags & ~(DMAR_PTE_R | DMAR_PTE_W | DMAR_PTE_SNP | in ctx_map_buf() 522 ("invalid pte flags %jx", (uintmax_t)pflags)); in ctx_map_buf() 523 KASSERT((pflags & DMAR_PTE_SNP) == 0 || in ctx_map_buf() 526 ctx, (uintmax_t)pflags)); in ctx_map_buf() 527 KASSERT((pflags & DMAR_PTE_TM) == 0 || in ctx_map_buf() [all …]
|
| /freebsd-10-stable/crypto/openssh/ |
| D | sftp-server.c | 218 flags_from_portable(int pflags) in flags_from_portable() argument 222 if ((pflags & SSH2_FXF_READ) && in flags_from_portable() 223 (pflags & SSH2_FXF_WRITE)) { in flags_from_portable() 225 } else if (pflags & SSH2_FXF_READ) { in flags_from_portable() 227 } else if (pflags & SSH2_FXF_WRITE) { in flags_from_portable() 230 if (pflags & SSH2_FXF_APPEND) in flags_from_portable() 232 if (pflags & SSH2_FXF_CREAT) in flags_from_portable() 234 if (pflags & SSH2_FXF_TRUNC) in flags_from_portable() 236 if (pflags & SSH2_FXF_EXCL) in flags_from_portable() 242 string_from_portable(int pflags) in string_from_portable() argument [all …]
|
| /freebsd-10-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/ |
| D | zfs_znode.h | 65 #define ZFS_ATTR_SET(zp, attr, value, pflags, tx) \ argument 68 pflags |= attr; \ 70 pflags &= ~attr; \ 72 &pflags, sizeof (pflags), tx)); \
|
| /freebsd-10-stable/contrib/netbsd-tests/fs/common/ |
| D | fstest_puffs.c | 251 int *pflags; in donewfs() local 265 pflags = &args->pta_pflags; in donewfs() 313 if (xread(sv[1], pflags, sizeof(*pflags)) != sizeof(*pflags)) in donewfs()
|
| /freebsd-10-stable/usr.sbin/mtree/ |
| D | create.c | 283 statd(FTS *t, FTSENT *parent, uid_t *puid, gid_t *pgid, mode_t *pmode, u_long *pflags) in statd() argument 295 u_long saveflags = *pflags; in statd() 354 ((keys & F_FLAGS) && (*pflags != saveflags)) || in statd() 396 *pflags = saveflags; in statd()
|
| /freebsd-10-stable/contrib/mtree/ |
| D | compare.c | 118 #define SETFLAGS(pflags, mask) \ argument 120 flags = (s->st_flags & (mask)) | (pflags); \ 128 #define CLEARFLAGS(pflags, mask) \ argument 130 flags = (~(s->st_flags & (mask)) & CH_MASK) & (pflags); \
|
| D | create.c | 332 u_long *pflags) in statd() argument 352 saveflags = *pflags; in statd() 401 ((keys & F_FLAGS) && (*pflags != saveflags)) || in statd() 435 *pflags = saveflags; in statd()
|
| /freebsd-10-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/ |
| D | zfs_znode.c | 765 uint64_t mode, size, links, parent, pflags; in zfs_mknode() local 848 pflags = ZFS_ARCHIVE | ZFS_AV_MODIFIED; in zfs_mknode() 850 pflags = 0; in zfs_mknode() 866 pflags |= ZFS_XATTR; in zfs_mknode() 871 pflags |= acl_ids->z_aclp->z_hints & in zfs_mknode() 932 NULL, &pflags, 8); in zfs_mknode() 957 NULL, &pflags, 8); in zfs_mknode() 973 mode = zfs_mode_compute(mode, acl_ids->z_aclp, &pflags, in zfs_mknode() 992 (*zpp)->z_pflags = pflags; in zfs_mknode() 1991 uint64_t pflags; in zfs_obj_to_pobj() local [all …]
|
| /freebsd-10-stable/sys/sparc64/sparc64/ |
| D | vm_machdep.c | 503 int pflags; in uma_small_alloc() local 509 pflags = malloc2vm_flags(wait) | VM_ALLOC_WIRED; in uma_small_alloc() 512 m = vm_page_alloc(NULL, 0, pflags | VM_ALLOC_NOOBJ); in uma_small_alloc()
|
| /freebsd-10-stable/crypto/openssl/crypto/evp/ |
| D | pmeth_lib.c | 234 void EVP_PKEY_meth_get0_info(int *ppkey_id, int *pflags, in EVP_PKEY_meth_get0_info() argument 239 if (pflags) in EVP_PKEY_meth_get0_info() 240 *pflags = meth->flags; in EVP_PKEY_meth_get0_info()
|
| /freebsd-10-stable/sys/dev/sound/pcm/ |
| D | vchan.c | 190 uint32_t pformat, pspeed, pflags, i; in vchan_getcaps() local 196 pflags = c->parentchannel->flags; in vchan_getcaps() 200 if (pflags & CHN_F_VCHAN_DYNAMIC) { in vchan_getcaps()
|
| /freebsd-10-stable/sys/dev/sound/pci/hda/ |
| D | hdaa.h | 101 uint32_t pflags; member
|