Home
last modified time | relevance | path

Searched refs:writable (Results 1 – 25 of 146) sorted by relevance

123456

/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/chattr/
H A Dchattr_002_neg.ksh46 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 Dchattr_001_pos.ksh46 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 Dfifo_io.c862 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 Dvirtqueue.c525 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 Dvirtqueue.h97 struct sglist *sg, int readable, int writable);
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyUtil.h270 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 Duipc_mbuf2.c97 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 Dmain.c717 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 Dsprint.c96 if (w->info == LOGGEDIN && !w->writable) in sflag_print()
105 (void)putchar(w->info == LOGGEDIN && !w->writable ? in sflag_print()
H A Dfinger.h57 short writable; /* tty is writable */ member
/freebsd/tests/sys/common/
H A Dnet_receiver.py69 readable, writable, exceptional = select.select(inputs, [], inputs)
98 readable, writable, exceptional = select.select(inputs, [], inputs)
/freebsd/tools/tools/kdrv/
H A DKernelDriver269 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 Dev_streams.c46 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 Dvirtio_p9fs.c143 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 DWITHOUT_AUTO_OBJ2 This is enabled by default if the wanted OBJDIR is writable by the current user.
/freebsd/contrib/sendmail/src/
H A DSECURITY39 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 Dpathnames.h.in16 /* On linux _PATH_PRESERVE is only writable by root */
/freebsd/sys/tools/
H A Dembed_mfs.sh41 echo $1 not writable
/freebsd/sys/ofed/drivers/infiniband/core/
H A Dib_umem.c134 umem->writable = !!(access & in ib_umem_get()
174 if (!umem->writable) in ib_umem_get()
/freebsd/sys/ofed/include/rdma/
H A Dib_umem.h50 int writable; member
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common.h837 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 Dsanitizer_common.cpp197 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 Dipcp.h79 unsigned writable : 1; /* Can write resolv.conf ? */ member
/freebsd/contrib/sendmail/
H A DREADME68 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 DTODO19 system call, but this needs a writable filesystem

123456