Home
last modified time | relevance | path

Searched refs:f_flags (Results 1 – 25 of 221) sorted by relevance

123456789

/netbsd/sys/lib/libsa/
H A Dopen.c89 if (f->f_flags == 0) in open()
98 f->f_flags = mode + 1; in open()
112 || (((f->f_flags & F_NODEV) == 0) && in open()
121 f->f_flags |= F_RAW; in open()
147 if ((f->f_flags & F_NODEV) == 0) { in open()
154 f->f_flags = 0; in open()
H A Dclose.c76 if ((unsigned int)fd >= SOPEN_MAX || f->f_flags == 0) { in close()
82 if (!(f->f_flags & F_RAW)) in close()
88 if (!(f->f_flags & F_NODEV)) in close()
93 f->f_flags = 0; in close()
H A Dfstat.c42 if ((unsigned int)fd >= SOPEN_MAX || f->f_flags == 0) { in fstat()
50 if (f->f_flags & F_RAW) { in fstat()
H A Dioctl.c73 if ((unsigned int)fd >= SOPEN_MAX || f->f_flags == 0) { in ioctl()
79 if (f->f_flags & F_RAW) { in ioctl()
H A Dlseek.c75 if ((unsigned int)fd >= SOPEN_MAX || f->f_flags == 0) { in lseek()
82 if (f->f_flags & F_RAW) { in lseek()
H A Dwrite.c74 if ((unsigned int)fd >= SOPEN_MAX || !(f->f_flags & F_WRITE)) { in write()
80 if (f->f_flags & F_RAW) { in write()
H A Dread.c77 if ((unsigned int)fd >= SOPEN_MAX || !(f->f_flags & F_READ)) { in read()
83 if (f->f_flags & F_RAW) { in read()
H A Dls.c142 if ((unsigned int)fd >= SOPEN_MAX || f->f_flags == 0) { in ls()
150 if (f->f_flags & F_RAW) { in ls()
/netbsd/external/bsd/file/dist/magic/magdir/
H A Darm9 # test for unused flag bits in f_flags
18 # test for unused flag bits in f_flags
27 # test for unused flag bits in f_flags
36 # test for unused flag bits in f_flags
H A Dhitachi-sh16 # test for unused flag bits (0x8000,0x0800,0x0400,0x0200,x0080) in f_flags
24 # test for unused flag bits in f_flags
/netbsd/external/gpl3/gcc.old/dist/gcc/
H A Dcollect2-aix.h144 char f_flags[2]; member
166 char f_flags[2]; member
181 unsigned short f_flags; member
/netbsd/external/gpl3/gcc/dist/gcc/
H A Dcollect2-aix.h144 char f_flags[2]; member
166 char f_flags[2]; member
181 unsigned short f_flags; member
/netbsd/sys/arch/sandpoint/stand/altboot/
H A Ddevopen.c65 if (of->f_flags != F_READ) in devopen()
70 of->f_flags |= F_NODEV; in devopen()
/netbsd/sys/kern/
H A Dkern_event.c205 .f_flags = FILTEROP_ISFD | FILTEROP_MPSAFE,
212 .f_flags = FILTEROP_MPSAFE,
219 .f_flags = FILTEROP_ISFD | FILTEROP_MPSAFE,
226 .f_flags = FILTEROP_MPSAFE,
239 .f_flags = FILTEROP_ISFD,
246 .f_flags = FILTEROP_MPSAFE,
254 .f_flags = FILTEROP_MPSAFE,
565 if (kn->kn_fop->f_flags & FILTEROP_MPSAFE) { in filter_attach()
584 if (kn->kn_fop->f_flags & FILTEROP_MPSAFE) { in filter_detach()
2838 if (kn->kn_fop->f_flags & FILTEROP_ISFD) in knote_detach()
[all …]
/netbsd/sys/arch/ews4800mips/stand/common/
H A Dcoffhdrfix.c53 Coff_Half f_flags; member
108 COFF_GET_HALF(file.f_magic), COFF_GET_HALF(file.f_flags)); in main()
H A Ddevopen.c94 f->f_flags |= F_NODEV; in devopen()
164 f->f_flags |= F_NODEV; in devopen()
/netbsd/bin/ls/
H A Dls.c91 int f_flags; /* show flags associated with a file */ variable
263 f_flags = 1; in ls_main()
596 if (f_flags) { in display()
613 if (f_flags) { in display()
/netbsd/external/gpl3/binutils.old/dist/bfd/
H A Dcoffcode.h3762 internal_f.f_flags = 0; in coff_write_object_contents()
3780 internal_f.f_flags |= F_RELFLG; in coff_write_object_contents()
3782 internal_f.f_flags |= F_LNNO; in coff_write_object_contents()
3784 internal_f.f_flags |= F_EXEC; in coff_write_object_contents()
3797 internal_f.f_flags |= F_AR32WR; in coff_write_object_contents()
3799 internal_f.f_flags |= F_AR32W; in coff_write_object_contents()
3814 internal_f.f_flags |= F_SHROBJ; in coff_write_object_contents()
3816 internal_f.f_flags |= F_DYNLOAD; in coff_write_object_contents()
3828 internal_f.f_flags |= flags; in coff_write_object_contents()
3963 internal_f.f_flags |= F_LSYMS; in coff_write_object_contents()
[all …]
H A Dpeicode.h178 filehdr_dst->f_flags = H_GET_16 (abfd, filehdr_src->f_flags); in coff_swap_filehdr_in()
186 filehdr_dst->f_flags |= F_LSYMS; in coff_swap_filehdr_in()
328 pe->real_flags = internal_f->f_flags; in pe_mkobject_hook()
330 if ((internal_f->f_flags & F_DLL) != 0) in pe_mkobject_hook()
333 if ((internal_f->f_flags & IMAGE_FILE_DEBUG_STRIPPED) == 0) in pe_mkobject_hook()
342 if (! _bfd_coff_arm_set_private_flags (abfd, internal_f->f_flags)) in pe_mkobject_hook()
1063 internal_f.f_flags = F_AR32WR | F_LNNO; /* XXX is this correct ? */ in pe_ILF_build_a_bfd()
/netbsd/external/gpl3/binutils/dist/bfd/
H A Dcoffcode.h3862 internal_f.f_flags = 0; in coff_write_object_contents()
3880 internal_f.f_flags |= F_RELFLG; in coff_write_object_contents()
3882 internal_f.f_flags |= F_LNNO; in coff_write_object_contents()
3884 internal_f.f_flags |= F_EXEC; in coff_write_object_contents()
3897 internal_f.f_flags |= F_AR32WR; in coff_write_object_contents()
3899 internal_f.f_flags |= F_AR32W; in coff_write_object_contents()
3914 internal_f.f_flags |= F_SHROBJ; in coff_write_object_contents()
3916 internal_f.f_flags |= F_DYNLOAD; in coff_write_object_contents()
3928 internal_f.f_flags |= flags; in coff_write_object_contents()
4050 internal_f.f_flags |= F_LSYMS; in coff_write_object_contents()
[all …]
H A Dpeicode.h178 filehdr_dst->f_flags = H_GET_16 (abfd, filehdr_src->f_flags); in coff_swap_filehdr_in()
186 filehdr_dst->f_flags |= F_LSYMS; in coff_swap_filehdr_in()
328 pe->real_flags = internal_f->f_flags; in pe_mkobject_hook()
330 if ((internal_f->f_flags & F_DLL) != 0) in pe_mkobject_hook()
333 if ((internal_f->f_flags & IMAGE_FILE_DEBUG_STRIPPED) == 0) in pe_mkobject_hook()
342 if (! _bfd_coff_arm_set_private_flags (abfd, internal_f->f_flags)) in pe_mkobject_hook()
1067 internal_f.f_flags = F_AR32WR | F_LNNO; /* XXX is this correct ? */ in pe_ILF_build_a_bfd()
/netbsd/external/gpl3/gdb/dist/bfd/
H A Dpeicode.h178 filehdr_dst->f_flags = H_GET_16 (abfd, filehdr_src->f_flags); in coff_swap_filehdr_in()
186 filehdr_dst->f_flags |= F_LSYMS; in coff_swap_filehdr_in()
328 pe->real_flags = internal_f->f_flags; in pe_mkobject_hook()
330 if ((internal_f->f_flags & F_DLL) != 0) in pe_mkobject_hook()
333 if ((internal_f->f_flags & IMAGE_FILE_DEBUG_STRIPPED) == 0) in pe_mkobject_hook()
342 if (! _bfd_coff_arm_set_private_flags (abfd, internal_f->f_flags)) in pe_mkobject_hook()
1057 internal_f.f_flags = F_AR32WR | F_LNNO; /* XXX is this correct ? */ in pe_ILF_build_a_bfd()
/netbsd/external/gpl3/gdb.old/dist/bfd/
H A Dpeicode.h178 filehdr_dst->f_flags = H_GET_16 (abfd, filehdr_src->f_flags); in coff_swap_filehdr_in()
186 filehdr_dst->f_flags |= F_LSYMS; in coff_swap_filehdr_in()
328 pe->real_flags = internal_f->f_flags; in pe_mkobject_hook()
330 if ((internal_f->f_flags & F_DLL) != 0) in pe_mkobject_hook()
333 if ((internal_f->f_flags & IMAGE_FILE_DEBUG_STRIPPED) == 0) in pe_mkobject_hook()
342 if (! _bfd_coff_arm_set_private_flags (abfd, internal_f->f_flags)) in pe_mkobject_hook()
1057 internal_f.f_flags = F_AR32WR | F_LNNO; /* XXX is this correct ? */ in pe_ILF_build_a_bfd()
/netbsd/sys/compat/sys/
H A Dmount.h55 long f_flags; /* copy of mount flags */ member
129 s12->f_flags = (long)fs->f_flag; in statvfs_to_statfs12()
/netbsd/sys/sys/
H A Dexec_ecoff.h58 ecoff32_ushort f_flags; /* flags??? */ member
115 u_short f_flags; /* flags??? */ member

123456789