/freebsd/usr.sbin/quot/ |
H A D | quot.c | 105 get_inode(int fd, struct fs *super, ino_t ino) 117 if (super != NULL && super->fs_magic == FS_UFS2_MAGIC) { in get_inode() 125 if (!ipbuf || ino < last || ino >= last + INOCNT(super)) { in get_inode() 126 if (super->fs_magic == FS_UFS2_MAGIC && in get_inode() 127 (!cgp || cg != ino_to_cg(super, ino))) { in get_inode() 128 cg = ino_to_cg(super, ino); in get_inode() 129 if (!cgp && !(cgp = malloc(super->fs_cgsize))) in get_inode() 131 if (lseek(fd, (off_t)cgtod(super, cg) << super in get_inode() 109 get_inode(int fd,struct fs * super,ino_t ino) get_inode() argument 167 virtualblocks(struct fs * super,union dinode * dp) virtualblocks() argument 200 isfree(struct fs * super,union dinode * dp) isfree() argument 372 dofsizes(int fd,struct fs * super,char * name) dofsizes() argument 444 douser(int fd,struct fs * super,char * name) douser() argument 484 donames(int fd,struct fs * super,char * name) donames() argument [all...] |
/freebsd/bin/chflags/ |
H A D | chflags.1 | 107 set the archived flag (super-user only) 109 set the nodump flag (owner or super-user only) 111 set the opaque flag (owner or super-user only) 113 set the system append-only flag (super-user only) 115 set the system immutable flag (super-user only) 119 set the system undeletable flag (super-user only) 121 set the user append-only flag (owner or super-user only) 123 set the archive flag (owner or super-user only) 125 set the user immutable flag (owner or super-user only) 127 set the hidden file attribute (owner or super-user only) [all …]
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
H A D | ObjCMissingSuperCallChecker.cpp | 1 //==- ObjCMissingSuperCallChecker.cpp - Check missing super-calls in ObjC --==// 11 // correctly calls super in the methods where this is mandatory. 50 // Recurse if we didn't find the super call yet. in VisitObjCMessageExpr() 192 // It doesn't call super, emit a diagnostic. in checkASTDecl() 205 << *D << "' is missing a [super " << S.getAsString() << "] call"; in checkASTDecl() 229 There are also cases where calling super is suggested but not "mandatory". 231 improvements like being able to allow for the super-call to be done in a called 239 - loadView (should *never* call super) 244 - loadView (take care because UIViewController subclasses should NOT call super 248 - doesNotRecognizeSelector (it only has to call super if it doesn't throw) [all …]
|
H A D | ObjCSuperDeallocChecker.cpp | 1 //===- ObjCSuperDeallocChecker.cpp - Check correct use of [super dealloc] -===// 10 // self is used after a call to [super dealloc] in MRR mode. 34 this, "[super dealloc] should not be called more than once", 60 // Remember whether [super dealloc] has previously been called on the 100 Desc = "[super dealloc] should not be called multiple times"; in checkPreObjCMessage() 115 // Check for [super dealloc] method call. in checkPostObjCMessage() 122 assert(SelfSymbol && "No receiver symbol at call to [super dealloc]?"); in checkPostObjCMessage() 125 // we inline a call to [super dealloc] where the inlined call itself in checkPostObjCMessage() 126 // calls [super dealloc]. in checkPostObjCMessage() 146 // Climb the super regions to find the base symbol while recording in checkLocation() [all …]
|
/freebsd/contrib/unbound/util/ |
H A D | alloc.c | 103 alloc_init(struct alloc_cache* alloc, struct alloc_cache* super, in alloc_init() argument 107 alloc->super = super; in alloc_init() 121 if(alloc->super) in alloc_init() 123 if(!alloc->super) { in alloc_init() 148 if(!alloc->super) { in alloc_clear_special() 154 if(!alloc->super) { in alloc_clear_special() 166 if(!alloc->super) { in alloc_clear() 169 if(alloc->super && alloc->quar) { in alloc_clear() 170 /* push entire list into super */ in alloc_clear() 174 lock_quick_lock(&alloc->super->lock); in alloc_clear() [all …]
|
H A D | ub_event_pluggable.c | 138 struct ub_event_base super; member 143 struct ub_event super; member 290 my_ev->super.magic = UB_EVENT_MAGIC; in my_event_new() 291 my_ev->super.vmt = &default_event_vmt; in my_event_new() 292 return &my_ev->super; in my_event_new() 310 my_ev->super.magic = UB_EVENT_MAGIC; in my_signal_new() 311 my_ev->super.vmt = &default_event_vmt; in my_signal_new() 312 return &my_ev->super; in my_signal_new() 332 my_ev->super.magic = UB_EVENT_MAGIC; in my_winsock_register_wsaevent() 333 my_ev->super.vmt = &default_event_vmt; in my_winsock_register_wsaevent() [all …]
|
/freebsd/usr.bin/chpass/ |
H A D | chpass.1 | 82 The super-user is allowed to directly supply a user database 95 The super-user is allowed to directly supply an encrypted password field, 233 When altering a login shell, and not the super-user, the user 253 Only the user, or the super-user, may edit the information associated 272 Except when invoked by the super-user on the NIS master server, 285 a password is the super-user on the NIS master server; all other users, 288 (The super-user on the NIS master is allowed to bypass these restrictions 307 is invoked by the super-user. 311 Even though the super-user may supply data for other fields 315 Exception: the super-user on the NIS master server is permitted to [all …]
|
/freebsd/contrib/unbound/dns64/ |
H A D | dns64.c | 816 * \param super Original AAAA query. 820 dns64_adjust_a(int id, struct module_qstate* super, struct module_qstate* qstate) in dns64_adjust_a() 822 struct dns64_env* dns64_env = (struct dns64_env*)super->env->modinfo[id]; in dns64_adjust_a() 830 log_assert(super->region); in dns64_adjust_a() 835 if(!super->return_msg) { in dns64_adjust_a() 836 super->return_msg = (struct dns_msg*)regional_alloc( in dns64_adjust_a() 837 super->region, sizeof(struct dns_msg)); in dns64_adjust_a() 838 if(!super->return_msg) in dns64_adjust_a() 840 memset(super->return_msg, 0, sizeof(*super in dns64_adjust_a() 819 dns64_adjust_a(int id,struct module_qstate * super,struct module_qstate * qstate) dns64_adjust_a() argument 917 dns64_adjust_ptr(struct module_qstate * qstate,struct module_qstate * super) dns64_adjust_ptr() argument 954 dns64_inform_super(struct module_qstate * qstate,int id,struct module_qstate * super) dns64_inform_super() argument [all...] |
/freebsd/share/man/man5/ |
H A D | fs.5 | 68 .Em super-block 71 The following structure describes the super-block and is 76 * Super block for an FFS filesystem. 80 int32_t fs_unused_1; /* used for incore super blocks */ 81 int32_t fs_sblkno; /* offset of super-block in filesys */ 109 int32_t fs_sbsize; /* actual size of super block */ 135 int8_t fs_fmod; /* super block modified flag */ 202 A file system is described by its super-block, which in turn 204 The super-block is critical 209 super-block data does not change, so the copies need not be [all …]
|
/freebsd/share/man/man4/ |
H A D | superio.4 | 32 .Nd Super I/O controller and bus driver 48 Super I/O is an I/O controller that combines various low-bandwidth devices 50 A typical Super I/O can contain devices such as 71 driver provides support for devices residing in the Super I/O controller 73 Some of the Super I/O devices have standardized interfaces. 82 Super I/O specifics. 87 There are other Super I/O devices that do not have any standardized interface. 97 driver is unusual as it is both a controller driver for a variety of Super I/O 102 driver supports a multitude of Super I/O controllers produced by Nuvoton,
|
/freebsd/tests/atf_python/sys/netpfil/ipfw/ |
H A D | insns.py | 188 super().__init__(opcode, is_or=is_or, is_not=is_not, arg1=arg1) 214 self = super()._parse(data) 239 super().__init__(opcode, is_or=is_or, is_not=is_not, arg1=arg1) 253 self = super()._parse(data) 265 ret = super().__bytes__() 278 super().__init__(opcode, is_or=is_or, is_not=is_not, arg1=arg1) 291 super().__init__(opcode, is_or=is_or, is_not=is_not, arg1=arg1) 301 self = super()._parse(data[:4]) 306 return super().__bytes__() + struct.pack("@I", self.u32) 322 super().__init__(opcode, is_or=is_or, is_not=is_not) [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/TraceExporter/docs/ |
H A D | htr.rst | 31 A *pass* is applied to a *layer* to extract useful information (summarization) and compress the trace representation into a new *layer*. The idea is to have a series of passes where each pass specializes in extracting certain information about the trace. Some examples of potential passes include: identifying functions, identifying loops, or a more general purpose such as identifying long sequences of instructions that are repeated (i.e. Basic Super Block). Below you will find a description of each pass currently implemented in lldb. 33 **Basic Super Block Reduction** 35 A “basic super block” is the longest sequence of blocks that always occur in the same order. (The concept is akin to “Basic Block'' in compiler theory, but refers to dynamic occurrences rather than CFG nodes). 37 The image below shows the "basic super blocks" of the sequence. Each unique "basic super block" is marked with a different color 41 *Procedure to find all super blocks:* 48 - A block with more than one distinct successor is always the start of a super block, the super block will continue until the next block with more than one distinct predecessor or successor.
|
/freebsd/share/doc/smm/03.fsck/ |
H A D | 2.t | 38 .I "super-block" . 39 The super-block is built when the file system is created (\c 42 The super-block 46 Because the super-block contains critical data, 50 .I "default super block" 54 .I "redundant super blocks" 56 or other hard disk error causes the default super-block 91 The block size of the file system is maintained in the super-block, 102 Associated with the super block is non replicated 131 could cause the loss of all copies of the redundant super-blocks. [all …]
|
/freebsd/lib/libsys/ |
H A D | chflags.2 | 194 is set a non-super-user cannot change any flags and even the super-user 204 flags may be set or unset by either the owner of a file or the super-user. 210 flags may only be set or unset by the super-user. 211 Attempts to toggle these flags by non-super-users are rejected. 248 the effective user ID is not the super-user. 254 is set and the user is either not the super-user or 257 A non-super-user attempted to toggle one of 297 the effective user ID is not the super-user. 303 is set and the user is either not the super-user or 306 A non-super-user attempted to toggle one of
|
H A D | setuid.2 | 58 .\" effective user ID is that of the super user. 63 .\" system call if the effective user ID is not that of the super user. 72 of the process, or if the effective user ID is that of the super user. 82 .\" effective user ID is that of the super user. 87 .\" system call if the effective user ID is not that of the super user. 96 of the process, or if the effective user ID is that of the super user. 120 The user is not the super user and the ID
|
H A D | mount.2 | 100 By default only the super-user may call the 116 even the super-user may not write on it. 123 This flag is set automatically when the caller is not the super-user. 243 The caller is neither the super-user nor the owner of 312 The super block for the file system had a bad magic 315 The super block for the file system had a bad check hash. 322 An I/O error occurred while reading the super block or 348 The caller is neither the super-user nor the user who issued the corresponding
|
/freebsd/share/man/man9/ |
H A D | superio.9 | 46 .Nd Super I/O bus interface 81 set of functions are used for managing Super I/O devices. 91 function is used to get a vendor of the Super I/O controller 100 function is used to get a device ID of the Super I/O controller 105 function is used to get a revision ID of the Super I/O controller 131 function is used to read data from the Super I/O configuration register 137 function is used to write data to the Super I/O configuration register
|
/freebsd/usr.bin/rpcinfo/ |
H A D | rpcinfo.8 | 192 super-user who can delete any service. 296 .Bl -column "program" "version(s)" "unix,tcp,udp,tcp6,udp6" "nlockmgr" "super-user" 298 .It "100000 2,3,4 unix,tcp,udp,tcp6,udp6 rpcbind super-user" 299 .It "100008 1 udp,tcp,udp6,tcp6 walld super-user" 300 .It "100002 2,1 udp,udp6 rusersd super-user" 301 .It "100001 2,3,4 udp,udp6 rstatd super-user" 302 .It "100012 1 udp,tcp sprayd super-user" 303 .It "100007 3 udp,tcp ypbind super-user"
|
/freebsd/sbin/pfctl/ |
H A D | pfctl_optimize.c | 1569 exclude_supersets(struct pfctl_rule *super, struct pfctl_rule *sub) in exclude_supersets() argument 1571 if (super->ifname[0] == '\0') in exclude_supersets() 1573 if (super->direction == PF_INOUT) in exclude_supersets() 1575 if ((super->proto == 0 || super->proto == sub->proto) && in exclude_supersets() 1576 super->flags == 0 && super->flagset == 0 && (sub->flags || in exclude_supersets() 1578 sub->flags = super->flags; in exclude_supersets() 1579 sub->flagset = super->flagset; in exclude_supersets() 1581 if (super->proto == 0) in exclude_supersets() 1584 if (super->src.port_op == 0) { in exclude_supersets() 1589 if (super->dst.port_op == 0) { in exclude_supersets() [all …]
|
/freebsd/contrib/unbound/contrib/ |
H A D | aaaa-filter-iterator.patch | 200 + * @param forq: super query state. 204 + struct module_qstate* super) 207 + struct iter_qstate* super_iq = (struct iter_qstate*)super->minfo[id]; 213 + /* let super go to evaluation of targets after this */ 218 + log_query_info(VERB_ALGO, "ASN-AAAA-filter: processAAAAResponse super", 219 + &super->qinfo); 229 + log_query_info(VERB_ALGO, "ASN-AAAA-filter: superq", &super->qinfo); 237 + if(!cache_fill_missing(super->env, 238 + super_iq->qchase.qclass, super->region, 247 * Return priming query results to interested super querystates. [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/usb/ |
H A D | usb.yaml | 56 - super-speed 57 - super-speed-plus 58 - super-speed-plus-gen2x1 59 - super-speed-plus-gen1x2 60 - super-speed-plus-gen2x2
|
/freebsd/tests/atf_python/sys/netlink/ |
H A D | attrs.py | 81 super().__init__(nla_type, b"") 116 super().__init__(nla_type, b"") 143 super().__init__(nla_type, b"") 170 super().__init__(nla_type, b"") 197 super().__init__(nla_type, b"") 223 super().__init__(nla_type, b"") 268 super().__init__(nla_type, addr) 274 super().__init__(nla_type, addr) 280 super().__init__(nla_type, b"") 310 super().__init__(nla_type, b"")
|
/freebsd/usr.bin/passwd/ |
H A D | passwd.1 | 48 If the user is not the super-user, 88 The super-user is not required to provide a user's current password 112 super-user, with one important exception: the password authentication is 113 bypassed for the super-user on the NIS master server. 115 the super-user on the NIS master server can make unrestricted changes to 117 The super-user on NIS client systems and NIS slave 188 super-user on the NIS master server; assume
|
/freebsd/sys/contrib/device-tree/Bindings/phy/ |
H A D | nvidia,tegra194-xusb-padctl.yaml | 22 super-speed USB. Other lanes are for various types of low-speed, full-speed 386 const: super-speed-plus 389 const: super-speed 399 number to map this super-speed USB port to. The range of 419 const: super-speed-plus 422 const: super-speed 432 number to map this super-speed USB port to. The range of 452 const: super-speed-plus 455 const: super-speed 465 number to map this super-speed USB port to. The range of [all …]
|
/freebsd/usr.sbin/rpc.yppasswdd/ |
H A D | rpc.yppasswdd.8 | 120 also allows the super-user on the NIS master server to perform more 122 The super-user can modify 125 receives a request from the super-user, the password authentication 129 flag, the super-user can even add new entries to the maps using 131 Again, this only applies to the super-user on the NIS 188 The super-user on the 196 is started with this flag, it will also allow the super-user to add new 278 updates for the super-user on the NIS master server. 292 ports when establishing client connections for the super-user.
|