HomeSort by: relevance | last modified time | path
    Searched refs:readonly (Results 1 - 25 of 112) sorted by relevancy

1 2 3 4 5

  /src/external/apache2/llvm/dist/clang/tools/clang-format-vs/ClangFormat/
Guids.cs 10 public static readonly Guid guidClangFormatCmdSet = new Guid(guidClangFormatCmdSetString);
  /src/external/bsd/ntp/dist/sntp/
kod_management.h 17 void kod_init_kod_db(const char *db_file, int readonly);
  /src/usr.bin/make/unit-tests/
var-readonly.mk 1 # $NetBSD: var-readonly.mk,v 1.4 2023/12/20 08:42:10 rillig Exp $
5 .READONLY: N
  /src/usr.sbin/mscdlabel/
main.c 132 int readonly = 0; local
143 readonly = 1;
162 readonly = 1;
194 readonly = 1;
196 if (!readonly) {
  /src/external/bsd/iscsi/dist/include/
conffile.h 49 int readonly; /* nonzero if file is readonly */ member in struct:conffile_t
  /src/crypto/external/bsd/openssh/dist/
sshbuf.c 49 int readonly; /* Refers to external, const data */ member in struct:sshbuf
59 (!buf->readonly && buf->d != buf->cd) ||
81 if (buf->off == 0 || buf->readonly || buf->refcount > 1)
101 ret->readonly = 0;
120 ret->readonly = 1;
190 if (!buf->readonly)
200 if (buf->readonly || buf->refcount > 1) {
254 if (buf->readonly || buf->refcount > 1)
291 if (sshbuf_check_sanity(buf) != 0 || buf->readonly || buf->refcount > 1)
307 if (sshbuf_check_sanity(buf) != 0 || buf->readonly || buf->refcount > 1
    [all...]
  /src/usr.sbin/quotaon/
quotaon.c 74 static int readonly(struct fstab *, const char *);
222 if (strcmp(fs->fs_file, "/") && readonly(fs, fsspec)) {
252 * Verify file system is mounted and not readonly.
255 readonly(struct fstab *fs, const char *fsspec) function
  /src/external/cddl/osnet/dist/cmd/zhack/
zhack.c 124 import_pool(const char *target, boolean_t readonly)
135 kernel_init(readonly ? FREAD : (FREAD | FWRITE));
141 g_readonly = readonly;
144 * If we only want readonly access, it's OK if we find
148 if (readonly && spa_open(target, &spa, FTAG) == 0) {
154 g_importargs.can_be_active = readonly;
181 if (readonly) {
199 zhack_spa_open(const char *target, boolean_t readonly, void *tag, spa_t **spa)
203 import_pool(target, readonly);
  /src/sys/external/bsd/drm2/include/drm/
drm_vma_manager.h 67 bool readonly; member in struct:drm_vma_offset_node
  /src/sys/fs/v7fs/
v7fs_superblock_util.c 93 print(readonly);
v7fs.h 109 int8_t readonly; member in struct:v7fs_superblock
  /src/usr.bin/mail/
glob.h 52 EXTERN int readonly; /* Will be unable to rewrite file */ variable
  /src/external/gpl3/gcc/dist/libgfortran/io/
close.c 102 if (u->flags.readonly)
104 " but file protected by READONLY specifier");
  /src/external/gpl3/gcc.old/dist/libgfortran/io/
close.c 102 if (u->flags.readonly)
104 " but file protected by READONLY specifier");
  /src/external/mpl/bind/dist/bin/named/include/named/
control.h 112 named_control_docommand(isccc_sexpr_t *message, bool readonly,
  /src/usr.sbin/vnconfig/
vnconfig.c 100 static int readonly = 0; variable
142 readonly = 1;
158 readonly = 1;
322 if (readonly)
353 ffd = open(file, readonly ? O_RDONLY : O_RDWR);
  /src/external/bsd/nvi/dist/common/
main.c 74 int ch, flagchk, lflag, secure, startup, readonly, rval, silent; local
92 readonly = 0;
96 /* Nview, view are readonly. */
99 readonly = 1;
172 case 'R': /* Readonly. */
173 readonly = 1;
263 if (readonly)
  /src/lib/libc/gen/
utmpx.c 58 static int readonly = 0; variable
112 readonly = 0;
129 readonly = 1;
253 if (fp != NULL && readonly)
256 if (fp == NULL || readonly)
266 if (fp == NULL || readonly)
  /src/external/cddl/osnet/dist/uts/common/fs/zfs/sys/
dmu_objset.h 149 boolean_t readonly, void *tag, objset_t **osp);
151 dmu_objset_type_t type, boolean_t readonly, void *tag, objset_t **osp);
  /src/external/bsd/tmux/dist/
key-bindings.c 680 int readonly, flags = 0; local
683 readonly = 1;
685 readonly = cmd_list_all_have(bd->cmdlist, CMD_READONLY);
686 if (!readonly)
  /src/external/mpl/bind/dist/lib/dns/include/dns/
name.h 106 bool readonly : 1; /*%< Used by name.c */ member in struct:dns_name::dns_name_attrs
136 (!name->attributes.readonly && !name->attributes.dynamic)
177 .attributes = { .readonly = true }, \
189 .attributes = { .readonly = true, .absolute = true }, \
  /src/sys/fs/hfs/
hfs_subr.c 180 mode = vol->readonly ? FREAD : FREAD|FWRITE;
210 (void)VOP_CLOSE(cbdata->devvp, vol->readonly ? FREAD :
234 in_vol->readonly ? FREAD : FREAD | FWRITE, NOCRED);
  /src/external/mpl/bind/dist/bin/named/
control.c 72 named_control_docommand(isccc_sexpr_t *message, bool readonly,
132 if (readonly && !command_compare(command, NAMED_COMMAND_NTA) &&
245 result = named_server_nta(named_g_server, lex, readonly, text);
controlconf.c 104 bool readonly; member in struct:controllistener
397 conn->request, conn->listener->readonly, &conn->text);
1029 const cfg_obj_t *readonly = NULL; local
1031 readonly = cfg_tuple_get(control, "read-only");
1032 if (!cfg_obj_isvoid(readonly)) {
1033 listener->readonly = cfg_obj_asboolean(readonly);
1092 const cfg_obj_t *readonly = NULL; local
1098 readonly = cfg_tuple_get(control, "read-only");
1099 if (!cfg_obj_isvoid(readonly)) {
    [all...]
  /src/sys/external/bsd/drm2/dist/include/drm/
drm_vma_manager.h 58 bool readonly:1; member in struct:drm_vma_offset_node

Completed in 63 milliseconds

1 2 3 4 5