/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/chattr/ |
H A D | chattr_002_neg.ksh | 46 set -A files writable immutable append 63 log_must user_run $QUSER1 touch $TESTDIR/writable 67 log_must chattr -i $TESTDIR/writable 71 log_must user_run $QUSER1 chattr -i $TESTDIR/writable 72 log_must user_run $QUSER1 chattr -a $TESTDIR/writable 76 log_mustnot user_run $QUSER1 chattr +i $TESTDIR/writable 77 log_mustnot user_run $QUSER1 chattr +a $TESTDIR/writable
|
H A D | chattr_001_pos.ksh | 46 set -A files writable immutable append 69 log_must touch $TESTDIR/writable 74 log_must chflags noschg $TESTDIR/writable 78 log_must chattr -i $TESTDIR/writable
|
/freebsd/tests/sys/fifo/ |
H A D | fifo_io.c | 862 poll_status(int fd, int *readable, int *writable, int *exception, in poll_status() argument 876 *writable = (fds[0].revents & POLLOUT) ? 1 : 0; in poll_status() 882 select_status(int fd, int *readable, int *writable, int *exception, in select_status() argument 901 *writable = FD_ISSET(fd, &writefds) ? 1 : 0; in select_status() 951 kqueue_status(int kqueue_fd, int fd, int *readable, int *writable, in kqueue_status() argument 968 *readable = *writable = *exception = 0; in kqueue_status() 976 *writable = 1; in kqueue_status() 1012 int readable, writable, exception; in assert_status() local 1014 if (poll_status(fd, &readable, &writable, &exception, testname) < 0) in assert_status() 1017 if (readable != assert_readable || writable != assert_writable || in assert_status() [all …]
|
/freebsd/sys/dev/virtio/ |
H A D | virtqueue.c | 525 int readable, int writable) in virtqueue_enqueue() argument 531 needed = readable + writable; in virtqueue_enqueue() 547 vq_ring_enqueue_indirect(vq, cookie, sg, readable, writable); in virtqueue_enqueue() 562 sg, readable, writable); in virtqueue_enqueue() 702 uint16_t head_idx, struct sglist *sg, int readable, int writable) in vq_ring_enqueue_segments() argument 710 sg, readable, writable); in vq_ring_enqueue_segments() 712 needed = readable + writable; in vq_ring_enqueue_segments() 753 struct sglist *sg, int readable, int writable) in vq_ring_enqueue_indirect() argument 760 needed = readable + writable; in vq_ring_enqueue_indirect() 779 sg, readable, writable); in vq_ring_enqueue_indirect() [all...] |
H A D | virtqueue.h | 97 struct sglist *sg, int readable, int writable);
|
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/Analyses/ |
H A D | ThreadSafetyUtil.h | 270 bool writable() const { return Data && Data->NumRefs == 1; } in writable() function 321 assert(writable() && "Vector is not writable!"); in clear() 327 assert(writable() && "Vector is not writable!"); in push_back() 334 assert(writable() && "Vector is not writable!"); in elem() 340 assert(writable() && "Vector is not writable!"); in downsize()
|
/freebsd/sys/kern/ |
H A D | uipc_mbuf2.c | 97 int writable; in m_pulldown() local 151 writable = 0; in m_pulldown() 154 writable = 1; in m_pulldown() 208 && writable) { in m_pulldown() 215 && writable && n->m_next->m_len >= tlen) { in m_pulldown()
|
/freebsd/contrib/bmake/ |
H A D | main.c | 717 Main_SetObjdir(bool writable, const char *fmt, ...) in Main_ParseArgLine() 740 if ((writable && access(path, W_OK) != 0) || chdir(path) != 0) { in Main_SetObjdir() 761 SetVarObjdir(bool writable, const char *var, const char *suffix) in Main_SetObjdir() 772 (void)Main_SetObjdir(writable, "%s%s", path.str, suffix); in SetVarObjdir() 1071 bool writable; 1074 writable = GetBooleanExpr("${MAKE_OBJDIR_CHECK_WRITABLE}", true); in InitObjdir() local 1077 if (!SetVarObjdir(writable, "MAKEOBJDIRPREFIX", curdir) && in InitObjdir() 1078 !SetVarObjdir(writable, "MAKEOBJDIR", "") && in InitObjdir() 1079 !Main_SetObjdir(writable, "%s.%s-%s", _PATH_OBJDIR, machine, machine_arch) && in InitObjdir() 1080 !Main_SetObjdir(writable, " in InitObjdir() 720 Main_SetObjdir(bool writable,const char * fmt,...) Main_SetObjdir() argument 764 SetVarObjdir(bool writable,const char * var,const char * suffix) SetVarObjdir() argument [all...] |
/freebsd/usr.bin/finger/ |
H A D | sprint.c | 96 if (w->info == LOGGEDIN && !w->writable) in sflag_print() 105 (void)putchar(w->info == LOGGEDIN && !w->writable ? in sflag_print()
|
H A D | finger.h | 57 short writable; /* tty is writable */ member
|
/freebsd/tests/sys/common/ |
H A D | net_receiver.py | 69 readable, writable, exceptional = select.select(inputs, [], inputs) 98 readable, writable, exceptional = select.select(inputs, [], inputs)
|
/freebsd/tools/tools/kdrv/ |
H A D | KernelDriver | 269 if {![file writable $kpath$p]} { 281 if {![file writable $kpath$p]} { 293 if {![file writable $kpath$f]} { 793 if {![file writable $kpath$f]} { 804 if {![file writable $kpath$p]} { 816 if {![file writable $kpath$p]} {
|
/freebsd/lib/libc/isc/ |
H A D | ev_streams.c | 46 static void writable(evContext opaqueCtx, void *uap, int fd, int evmask); 74 if (evSelectFD(opaqueCtx, fd, EV_WRITE, writable, new, &new->file) < 0) in evWrite() 265 writable(evContext opaqueCtx, void *uap, int fd, int evmask) { in writable() function
|
/freebsd/sys/dev/virtio/p9fs/ |
H A D | virtio_p9fs.c | 143 int readable, writable; in vt9p_request() local 172 writable = sg->sg_nseg - readable; in vt9p_request() 174 error = virtqueue_enqueue(vq, req, sg, readable, writable); in vt9p_request()
|
/freebsd/tools/build/options/ |
H A D | WITHOUT_AUTO_OBJ | 2 This is enabled by default if the wanted OBJDIR is writable by the current user.
|
/freebsd/contrib/sendmail/src/ |
H A D | SECURITY | 39 avoid problems with a world-writable directory. It is however 40 sufficient to have a set-group-ID program and a group-writable 53 gid: 25) program to allow for queueing mail in a group-writable 69 smmsp with group smmsp and is group writable. The client mail 70 queue directory must be writable by smmsp, but it must not be
|
/freebsd/contrib/nvi/files/ |
H A D | pathnames.h.in | 16 /* On linux _PATH_PRESERVE is only writable by root */
|
/freebsd/sys/tools/ |
H A D | embed_mfs.sh | 41 echo $1 not writable
|
/freebsd/sys/ofed/drivers/infiniband/core/ |
H A D | ib_umem.c | 134 umem->writable = !!(access & in ib_umem_get() 174 if (!umem->writable) in ib_umem_get()
|
/freebsd/sys/ofed/include/rdma/ |
H A D | ib_umem.h | 50 int writable; member
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_common.h | 837 void addAddressRange(uptr beg, uptr end, bool executable, bool writable, 854 bool writable; member 857 AddressRange(uptr beg, uptr end, bool executable, bool writable, in AddressRange() 863 writable(writable) { in AddressRange()
|
H A D | sanitizer_common.cpp | 197 bool writable, const char *name) { in addAddressRange() argument 200 new(mem) AddressRange(beg, end, executable, writable, name); in addAddressRange()
|
/freebsd/usr.sbin/ppp/ |
H A D | ipcp.h | 79 unsigned writable : 1; /* Can write resolv.conf ? */ member
|
/freebsd/contrib/sendmail/ |
H A D | README | 68 WARNING: writable directory /etc 69 WARNING: writable directory /var/spool/mqueue 77 directory paths (directory paths which are group or world writable) will 79 was writable by group staff, sendmail would not use his .forward file. 82 files in group writable directories: 86 Or to allow them in both group and world writable directories: 138 writable by that user is sufficient to avoid the denial of service.
|
/freebsd/sys/fs/cd9660/ |
H A D | TODO | 19 system call, but this needs a writable filesystem
|