Home
last modified time | relevance | path

Searched refs:fdflags (Results 1 – 14 of 14) sorted by relevance

/netbsd-src/external/gpl2/mkhybrid/dist/
H A Dapple.c231 map_ext(dname, &t, &c, &s_entry->hfs_ent->fdflags, s_entry->whole_name); in get_none_info()
340 hfs_ent->fdflags = d_getw((unsigned char *)&info.fdFlags); in get_cap_info()
342 hfs_ent->fdflags &= 0xfeff; in get_cap_info()
409 hfs_ent->fdflags = d_getw((unsigned char *)&einfo->fdFlags); in get_es_info()
424 hfs_ent->fdflags = d_getw((unsigned char *)&uinfo->fdFlags); in get_es_info()
455 hfs_ent->fdflags &= 0xfeff; in get_es_info()
577 hfs_ent->fdflags = ((info->flags << 8) & 0xff00) | info->flags2; in get_mb_info()
579 hfs_ent->fdflags &= 0xfeff; in get_mb_info()
706 hfs_ent->fdflags = d_getw((unsigned char *)&info.fdFlags); in get_dbl_info()
708 hfs_ent->fdflags &= 0xfeff; in get_dbl_info()
[all …]
H A Ddesktop.c60 ent.fdflags = HFS_FNDR_ISINVISIBLE; /* invisible files */ in make_desktop()
H A Dapple.h36 unsigned short fdflags; /* finder flags */ member
H A Drock.c192 Rock[ipnt++] = (s_entry->hfs_ent->fdflags >> 8) & 0xff;
193 Rock[ipnt++] = s_entry->hfs_ent->fdflags & 0xff;
H A Dtree.c1398 hfs_ent->flags = hfs_ent->fdflags = 0;
1814 hfs_ent->flags = hfs_ent->fdflags = 0;
/netbsd-src/lib/libc/stdio/
H A Dfdopen.c67 int flags, oflags, fdflags, tmp; in __weak_alias() local
87 if ((fdflags = fcntl(fd, F_GETFL, 0)) < 0) in __weak_alias()
89 tmp = fdflags & O_ACCMODE; in __weak_alias()
114 if ((oflags & O_APPEND) && !(fdflags & O_APPEND)) in __weak_alias()
H A Dvdprintf.c66 int ret, fdflags, tmp; in __weak_alias() local
82 if ((fdflags = fcntl(fd, F_GETFL, 0)) == -1) in __weak_alias()
85 tmp = fdflags & O_ACCMODE; in __weak_alias()
/netbsd-src/tests/bin/sh/
H A Dt_builtins.sh877 atf_test_case fdflags
883 have_builtin fdflags || return 0
891 have_builtin fdflags || return 0
899 have_builtin fdflags || return 0
907 have_builtin fdflags || return 0
915 have_builtin fdflags || return 0
923 have_builtin fdflags || return 0
931 have_builtin fdflags || return 0
939 have_builtin fdflags || return 0
947 have_builtin fdflags || return 0
[all …]
/netbsd-src/etc/
H A Drc68 fdflags -s +cloexec 7 8
90 fdflags -s +cloexec 9
/netbsd-src/external/gpl2/mkhybrid/dist/libhfs_iso/
H A Drecord.c441 ent->fdflags = data->u.dir.dirUsrInfo.frFlags; in r_unpackdirent()
457 ent->fdflags = data->u.fil.filUsrWds.fdFlags; in r_unpackdirent()
474 data->u.dir.dirUsrInfo.frFlags = ent->fdflags; in r_packdirent()
489 data->u.fil.filUsrWds.fdFlags = ent->fdflags; in r_packdirent()
H A Dhfs.h60 short fdflags; /* Macintosh Finder flags */ member
/netbsd-src/external/gpl3/binutils.old/dist/bfd/
H A Dopncls.c368 int fdflags; in bfd_fdopenr() local
374 fdflags = fcntl (fd, F_GETFL, NULL); in bfd_fdopenr()
375 if (fdflags == -1) in bfd_fdopenr()
386 switch (fdflags & (O_ACCMODE)) in bfd_fdopenr()
/netbsd-src/external/gpl3/binutils/dist/bfd/
H A Dopncls.c414 int fdflags; in bfd_fdopenr() local
420 fdflags = fcntl (fd, F_GETFL, NULL); in bfd_fdopenr()
421 if (fdflags == -1) in bfd_fdopenr()
432 switch (fdflags & (O_ACCMODE)) in bfd_fdopenr()
/netbsd-src/sys/miscfs/genfs/
H A Dgenfs_rename.c1056 unsigned long fdflags, unsigned long fflags, in genfs_ufslike_rename_check_possible() argument
1061 if ((fdflags | fflags) & (immutable | append)) in genfs_ufslike_rename_check_possible()