| /src/usr.bin/finger/ |
| finger.h | 62 short writable; /* tty is writable */ member in struct:where
|
| sprint.c | 82 * if terminal writable (add an '*' to the terminal name 117 (void)putchar(w->info == LOGGEDIN && !w->writable ?
|
| util.c | 387 w->writable = 0; 392 #define TALKABLE 0220 /* tty is writable if 220 mode */ 393 w->writable = ((sb.st_mode & TALKABLE) == TALKABLE);
|
| /src/usr.bin/make/unit-tests/ |
| objdir-writable.mk | 1 # $NetBSD: objdir-writable.mk,v 1.7 2022/02/09 21:24:29 rillig Exp $ 3 # test checking for writable objdir
|
| /src/external/gpl3/gcc/dist/gcc/lto/ |
| lto.h | 43 extern lto_file *lto_obj_file_open (const char *filename, bool writable);
|
| lto-object.cc | 64 /* Open the file FILENAME. It WRITABLE is true, the file is opened 69 lto_obj_file_open (const char *filename, bool writable) 101 (writable 108 if (!writable)
|
| /src/external/gpl3/gcc.old/dist/gcc/lto/ |
| lto.h | 43 extern lto_file *lto_obj_file_open (const char *filename, bool writable);
|
| lto-object.cc | 64 /* Open the file FILENAME. It WRITABLE is true, the file is opened 69 lto_obj_file_open (const char *filename, bool writable) 101 (writable 108 if (!writable)
|
| /src/external/ibm-public/postfix/dist/src/util/ |
| iostuff.h | 39 #define writable(fd) poll_fd((fd), POLL_FD_WRITE, 0, 1, 0) macro
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/ |
| fileio.exp | 36 if {[file exists $dir2] && ![file writable $dir2]} { 269 # Make dir2 writable again so rm -rf of a build tree Just Works. 270 if {[file exists $dir2] && ![file writable $dir2]} {
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/ |
| fileio.exp | 36 if {[file exists $dir2] && ![file writable $dir2]} { 270 # Make dir2 writable again so rm -rf of a build tree Just Works. 271 if {[file exists $dir2] && ![file writable $dir2]} {
|
| /src/sys/arch/x68k/stand/installboot/ |
| installboot.c | 233 int writable = 1; local 238 if (merging && ioctl(fd, DIOCWLABEL, &writable) < 0) 245 int writable = 0; local 246 ioctl(fd, DIOCWLABEL, &writable); 252 int writable = 0; local 253 ioctl(fd, DIOCWLABEL, &writable);
|
| /src/lib/ |
| bumpversion | 99 echo $0: $versf is not a writable 1>&2
|
| /src/external/bsd/pdisk/dist/ |
| partition_map.h | 51 int writable; member in struct:partition_map_header
|
| cvt_pt.c | 184 if (map->writable == 0) { 185 fatal(-1, "The map is not writable");
|
| pdisk.c | 682 if (!rflag && map->writable == 0) { 683 printf("The map is not writable.\n"); 802 if (!rflag && map->writable == 0) { 803 printf("The map is not writable.\n"); 839 if (!rflag && map->writable == 0) { 882 if (!rflag && map->writable == 0) { 883 printf("The map is not writable.\n"); 910 if (!rflag && map->writable == 0) { 911 printf("The map is not writable.\n"); 937 if (map->writable == 0) [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/ |
| ThreadSafetyUtil.h | 232 // * writable -- read and write operations are permitted. 265 // Returns true if this vector is writable. 266 bool writable() const { return Data && Data->NumRefs == 1; } 286 // Make this vector writable, creating a copy if needed. 315 // Clear vector. The vector must be writable. 317 assert(writable() && "Vector is not writable!"); 321 // Push a new element onto the end. The vector must be writable. 323 assert(writable() && "Vector is not writable!"); [all...] |
| /src/lib/libc/isc/ |
| ev_streams.c | 51 static void writable(evContext opaqueCtx, void *uap, int fd, int evmask); 79 if (evSelectFD(opaqueCtx, fd, EV_WRITE, writable, new, &new->file) < 0) 270 writable(evContext opaqueCtx, void *uap, int fd, int evmask) { function
|
| /src/external/bsd/libbind/dist/isc/ |
| ev_streams.c | 45 static void writable(evContext opaqueCtx, void *uap, int fd, int evmask); 71 if (evSelectFD(opaqueCtx, fd, EV_WRITE, writable, new, &new->file) < 0) 262 writable(evContext opaqueCtx, void *uap, int fd, int evmask) { function
|
| /src/usr.bin/make/ |
| main.c | 721 Main_SetObjdir(bool writable, const char *fmt, ...) 744 if ((writable && access(path, W_OK) != 0) || chdir(path) != 0) { 765 SetVarObjdir(bool writable, const char *var, const char *suffix) 776 (void)Main_SetObjdir(writable, "%s%s", path.str, suffix); 1050 bool writable; local 1053 writable = GetBooleanExpr("${MAKE_OBJDIR_CHECK_WRITABLE}", true); 1056 if (!SetVarObjdir(writable, "MAKEOBJDIRPREFIX", curdir) && 1057 !SetVarObjdir(writable, "MAKEOBJDIR", "") && 1058 !Main_SetObjdir(writable, "%s.%s-%s", _PATH_OBJDIR, machine, machine_arch) && 1059 !Main_SetObjdir(writable, "%s.%s", _PATH_OBJDIR, machine) & [all...] |
| /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
| sanitizer_common.cc | 162 bool writable, const char *name) { 165 new(mem) AddressRange(beg, end, executable, writable, name);
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/ |
| sanitizer_common.cpp | 160 bool writable, const char *name) { 163 new(mem) AddressRange(beg, end, executable, writable, name);
|
| /src/sys/external/bsd/compiler_rt/dist/lib/lsan/ |
| lsan_common_mac.cc | 134 // Sections storing global variables are writable and non-executable 135 if (range.executable || !range.writable) continue;
|
| /src/external/gpl3/gcc/dist/libsanitizer/lsan/ |
| lsan_common_mac.cpp | 152 // Sections storing global variables are writable and non-executable 153 if (range.executable || !range.writable) continue;
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/lsan/ |
| lsan_common_mac.cpp | 133 // Sections storing global variables are writable and non-executable 134 if (range.executable || !range.writable) continue;
|