/illumos-gate/usr/src/pkg/manifests/ |
H A D | system-test-cryptotest.p5m | 50 dir path=opt/crypto-tests/tests/aes owner=root group=root mode=0755 51 dir path=opt/crypto-tests/tests/aes/kcf owner=root group=root mode=0755 53 path=opt/crypto-tests/tests/aes/kcf/aes_cbc_32 owner=root group=root \ 56 path=opt/crypto-tests/tests/aes/kcf/aes_cbc_64 owner=root group=root \ 59 path=opt/crypto-tests/tests/aes/kcf/aes_ccm_32 owner=root group=root \ 62 path=opt/crypto-tests/tests/aes/kcf/aes_ccm_64 owner=root group=root \ 65 path=opt/crypto-tests/tests/aes/kcf/aes_cmac_32 owner=root group=root \ 68 path=opt/crypto-tests/tests/aes/kcf/aes_cmac_64 owner=root group=root \ 71 path=opt/crypto-tests/tests/aes/kcf/aes_ctr_32 owner=root group=root \ 74 path=opt/crypto-tests/tests/aes/kcf/aes_ctr_64 owner=root group=root \ [all …]
|
H A D | system-data-console-fonts.p5m | 30 file path=boot/fonts/10x18.fnt owner=root group=bin mode=0444 31 file path=boot/fonts/10x18b.fnt owner=root group=bin mode=0444 32 file path=boot/fonts/10x20.fnt owner=root group=bin mode=0444 33 file path=boot/fonts/10x20b.fnt owner=root group=bin mode=0444 34 file path=boot/fonts/11x22.fnt owner=root group=bin mode=0444 35 file path=boot/fonts/11x22b.fnt owner=root group=bin mode=0444 36 file path=boot/fonts/12x24.fnt owner=root group=bin mode=0444 37 file path=boot/fonts/12x24b.fnt owner=root group=bin mode=0444 38 file path=boot/fonts/14x28.fnt owner=root group=bin mode=0444 39 file path=boot/fonts/14x28b.fnt owner=root group=bin mode=0444 [all …]
|
H A D | system-kernel.p5m | 472 $(i386_ONLY)driver name=acpi_drv perms="* 0666 root sys" 473 driver name=aggr perms="* 0666 root sys" 474 driver name=arp perms="arp 0666 root sys" 475 driver name=bl perms="* 0666 root sys" 476 driver name=bridge clone_perms="bridge 0666 root sys" \ 479 driver name=cn perms="* 0620 root tty" 480 driver name=conskbd perms="kbd 0666 root sys" 481 driver name=consms perms="mouse 0666 root sys" 482 driver name=cpuid perms="self 0644 root sys" 484 driver name=crypto perms="crypto 0666 root sys" [all …]
|
/illumos-gate/usr/src/contrib/ast/src/lib/libast/cdt/ |
H A D | dttree.c | 34 Dtlink_t* root; /* tree root */ member 45 if(!here && !(here = tree->root) ) in dttreeprint() 94 Dtlink_t *t, *root; local 98 if(!(root = tree->root) ) 102 { while((t = root->_rght) ) 103 LROTATE(root,t); 106 { while((t = root->_left) ) 107 RROTATE(root,t); 109 tree->root = root; 111 return _DTOBJ(disc, root); [all …]
|
/illumos-gate/usr/src/cmd/logadm/ |
H A D | lut.c | 61 * struct lut *root = NULL; 62 * root = lut_add(root, "key", value); 68 lut_add(struct lut *root, const char *lhs, void *rhs) in lut_add() argument 72 if (root == NULL) { in lut_add() 74 root = MALLOC(sizeof (*root)); in lut_add() 75 root->lut_lhs = STRDUP(lhs); in lut_add() 76 root->lut_rhs = rhs; in lut_add() 77 root->lut_left = root->lut_right = NULL; in lut_add() 78 } else if (lhs != NULL && (diff = strcmp(root->lut_lhs, lhs)) == 0) { in lut_add() 80 root->lut_rhs = rhs; in lut_add() [all …]
|
/illumos-gate/usr/src/ |
H A D | Targetdirs | 36 # It is easier to think in terms of directory names without the ROOT macro 37 # prefix. ROOTDIRS is TARGETDIRS with ROOT prefixes. It is necessary 38 # to work with ROOT prefixes when controlling conditional assignments. 224 /root \ 372 /var/krb5/rcache/root \ 546 # prepend the ROOT prefix 548 ROOTDIRS= $(TARGETDIRS:%=$(ROOT)%) 560 $(ROOT)/var/adm \ 561 $(ROOT)/var/adm/sa := DIRMODE= 775 563 $(ROOT)/var/spool/lp:= DIRMODE= 775 [all …]
|
/illumos-gate/usr/src/cmd/fm/eversholt/common/ |
H A D | lut.c | 66 * struct lut *root = NULL; 67 * root = lut_add(root, key, value, cmp_func); 76 lut_add(struct lut *root, void *lhs, void *rhs, lut_cmp cmp_func) in lut_add() argument 79 struct lut **tmp_hdl = &root, *parent = NULL, *tmp = root; in lut_add() 90 return (root); in lut_add() 103 *tmp_hdl = MALLOC(sizeof (*root)); in lut_add() 110 return (root); in lut_add() 114 lut_lookup(struct lut *root, void *lhs, lut_cmp cmp_func) in lut_lookup() argument 120 while (root) { in lut_lookup() 122 diff = (*cmp_func)(root->lut_lhs, lhs); in lut_lookup() [all …]
|
/illumos-gate/usr/src/contrib/ast/src/lib/libast/hash/ |
H A D | hashlook.c | 75 tab->root->accesses++; in hashlook() 77 last = &tab->root->last; in hashlook() 95 else HASH(tab->root, name, n); in hashlook() 104 if (!tab->root->local->compare) in hashlook() 109 if (tab->root->namesize) in hashlook() 111 register char* s3 = s1 + tab->root->namesize; in hashlook() 119 else if (tab->root->namesize) in hashlook() 121 if (!(*tab->root->local->compare)(hashname(b), name, tab->root->namesize)) goto found; in hashlook() 123 else if (!(*tab->root->local->compare)(hashname(b), name)) goto found; in hashlook() 125 tab->root->collisions++; in hashlook() [all …]
|
H A D | hashdump.c | 75 if (n = tab->root->namesize) in dumpbucket() 130 * dump hash table root info 134 dumproot(register Hash_root_t* root, register int flags) in dumproot() argument 138 sfprintf(sfstderr, " root\n"); in dumproot() 139 sfprintf(sfstderr, " address: 0x%08lx\n", (unsigned long)root); in dumproot() 141 dumpflags(root->flags); in dumproot() 142 if (root->namesize) sfprintf(sfstderr, "namesize=%d ", root->namesize); in dumproot() 143 if (root->local->alloc) sfprintf(sfstderr, "alloc=0x%08lx ", (unsigned long)root->local->alloc); in dumproot() 144 …if (root->local->compare) sfprintf(sfstderr, "compare=0x%08lx ", (unsigned long)root->local->compa… in dumproot() 145 if (root->local->free) sfprintf(sfstderr, "free=0x%08lx ", (unsigned long)root->local->free); in dumproot() [all …]
|
H A D | hashfree.c | 36 * root info freed when last reference freed 58 if (tab->root->local->free) in hashfree() 60 if (tab->root->flags & HASH_BUCKET) freebucket = tab->root->local->free; in hashfree() 61 else freevalue = tab->root->local->free; in hashfree() 63 if (region = tab->root->local->region) in hashfree() 64 handle = tab->root->local->handle; in hashfree() 101 if (tab->root) in hashfree() 109 if ((tp = tab->root->references) != tab) in hashfree() 118 else if (!(tab->root->references = tp->next)) in hashfree() 120 if ((rp = hash_info.list) != tab->root) in hashfree() [all …]
|
H A D | hashalloc.c | 75 tab->root = ref->root; in hashalloc() 82 if (!(tab->root = (Hash_root_t*)(*region)(handle, NiL, sizeof(Hash_root_t), 0))) in hashalloc() 84 memset(tab->root, 0, sizeof(Hash_root_t)); in hashalloc() 86 else if (!(tab->root = newof(0, Hash_root_t, 1, 0))) in hashalloc() 88 if (!(tab->root->local = newof(0, Hash_local_t, 1, 0))) in hashalloc() 90 if (tab->root->local->region = region) in hashalloc() 91 tab->root->local->handle = handle; in hashalloc() 92 tab->root->meanchain = HASHMEANCHAIN; in hashalloc() 102 tab->root->local->alloc = va_arg(ap, Hash_alloc_f); in hashalloc() 114 tab->root->local->compare = va_arg(ap, Hash_compare_f); in hashalloc() [all …]
|
/illumos-gate/usr/src/lib/libbe/common/ |
H A D | be_zones.c | 89 (void) snprintf(zoneroot, zoneroot_size, "%s/root", zonepath); in be_make_zoneroot() 94 * Description: This function will find the active zone root of a zone for 99 * be_zhp - zfs handle to global BE root dataset. 125 "to get uuid for BE root dataset %s\n"), in be_find_active_zone_root() 133 "to get parentbe uuid for zone root dataset %s\n"), in be_find_active_zone_root() 139 /* Generate string for the root container dataset for this zone. */ in be_find_active_zone_root() 147 /* Get handle to this zone's root container dataset */ in be_find_active_zone_root() 151 "open zone root container dataset (%s): %s\n"), in be_find_active_zone_root() 164 "find active zone root in zonepath dataset %s: %s\n"), in be_find_active_zone_root() 175 "find active zone root in zonepath dataset %s\n"), in be_find_active_zone_root() [all …]
|
/illumos-gate/usr/src/cmd/fs.d/nfs/lib/ |
H A D | replica.c | 75 char *root, *special2; in parse_replica() local 83 root = special2 = strdup(special); in parse_replica() 84 proot = root; in parse_replica() 86 while (root) { in parse_replica() 87 switch (*root) { in parse_replica() 89 if ((root != special2) && (*(root -1) != ',')) { in parse_replica() 90 root++; in parse_replica() 93 y = strchr(root, ']'); in parse_replica() 95 root++; in parse_replica() 99 root = y + 1; in parse_replica() [all …]
|
/illumos-gate/usr/src/lib/brand/solaris10/zone/ |
H A D | s10_boot.ksh | 35 ZONEROOT=$ZONEPATH/root 72 # $3 The name of the replacement file's owner (e.g., root:bin) 95 # $3 The name of the replacement file's owner (e.g., root:bin) 137 # replace_with_native /usr/bin/zcat 0555 root:bin 182 chown root:bin $ZONEROOT/lib/inet 194 replace_with_native /sbin/dhcpagent 0555 root:bin 195 replace_with_native /sbin/dhcpinfo 0555 root:bin 196 replace_with_native /sbin/ifconfig 0555 root:bin 197 replace_with_native /usr/bin/netstat 0555 root:bin 198 replace_with_native /usr/lib/inet/in.ndpd 0555 root:bin [all …]
|
/illumos-gate/usr/src/lib/libprtdiag/common/ |
H A D | pdevinfo_funcs.c | 359 find_board(Sys_tree *root, int board) in find_board() argument 361 Board_node *bnode = root->bd_list; in find_board() 374 insert_board(Sys_tree *root, int board) in insert_board() argument 377 Board_node *temp = root->bd_list; in insert_board() 388 root->bd_list = bnode; in insert_board() 391 root->bd_list = bnode; in insert_board() 398 root->board_cnt++; in insert_board() 453 dev_find_node(Prom_node *root, char *name) in dev_find_node() argument 457 node = dev_find_node_by_type(root, "name", name); in dev_find_node() 463 dev_next_node(Prom_node *root, char *name) in dev_next_node() argument [all …]
|
/illumos-gate/usr/src/test/os-tests/runfiles/ |
H A D | default.run | 30 user = root 53 user = root 74 user = root 78 user = root 82 user = root 89 user = root 107 user = root 112 user = root 118 pre_user=root 120 post_user=root [all …]
|
/illumos-gate/usr/src/uts/sparc/os/ |
H A D | minor_perm | 1 devinfo:devinfo 0640 root sys 2 devinfo:devinfo,ro 0444 root sys 3 md:* 0640 root sys 4 md:admin 0644 root sys 5 su:[a-z] 0666 root sys 7 su:ssp 0600 root sys 8 su:sspctl 0600 root sys 9 zs:[a-z] 0666 root sys 11 se:[a-h] 0666 root sys 13 se:[0-7],hdlc 0666 root sys [all …]
|
/illumos-gate/usr/src/cmd/ |
H A D | Makefile.cmd | 36 KRB5DIR= $(ROOT)/usr 44 ROOTBIN= $(ROOT)/usr/bin 45 ROOTLIB= $(ROOT)/usr/lib 46 ROOTLIBSVCBIN= $(ROOT)/lib/svc/bin 47 ROOTLIBSVCMETHOD= $(ROOT)/lib/svc/method 48 ROOTLIBXEN= $(ROOT)/usr/lib/xen/bin 49 ROOTLIBZONES= $(ROOT)/lib/zones 51 ROOTSHLIB= $(ROOT)/usr/share/lib 52 ROOTPKGBIN= $(ROOT)/usr/sadm/install/bin 53 ROOTCLASS_SCR_DIR= $(ROOT)/usr/sadm/install/scripts [all …]
|
/illumos-gate/usr/src/grub/grub-0.97/docs/ |
H A D | menu.lst | 16 root (hd0,0) 17 kernel /boot/gnumach.gz root=hd0s1 22 root (hd1,0) 23 kernel /vmlinuz root=/dev/hdb1 28 root (hd0,2,a) 33 root (hd0,2,a) 38 root (hd0,2) 40 kernel (fd0)/boot/kernel root=hd0s3 45 root (hd0,2,a) 50 root (hd0,2,a) [all …]
|
/illumos-gate/usr/src/cmd/Adm/ |
H A D | group | 1 root::0: 2 other::1:root 3 bin::2:root,daemon 4 sys::3:root,bin,adm 5 adm::4:root,daemon 6 uucp::5:root 7 mail::6:root 8 tty::7:root,adm 9 lp::8:root,adm 10 nuucp::9:root [all …]
|
/illumos-gate/usr/src/man/man5/ |
H A D | pkgmap.5 | 239 The owner of the file (for example, \fBbin\fR or \fBroot\fR). The field is 329 1 b class1 /dev/diskette 17 134 0644 root other 330 1 c class1 /dev/rdiskette 17 134 0644 root other 331 1 d none bin 0755 root bin 332 1 f none bin/INSTALL 0755 root bin 11103 17954 541295535 333 1 f none bin/REMOVE 0755 root bin 3214 50237 541295541 335 1 f none bin/cmda 0755 root bin 3580 60325 541295567 336 1 f none bin/cmdb 0755 root bin 49107 51255 541438368 337 1 f class1 bin/cmdc 0755 root bin 45599 26048 541295599 338 1 f class1 bin/cmdd 0755 root bin 4648 8473 541461238 [all …]
|
H A D | bootparams.5 | 76 client1 root=server1:/export/client1/root 111 between the end of the path (\fBroot\fR) and the keyword \fBdomain\fR: 115 client1 root=server1:/export/client1/root domain=bldg1.example.com 179 client1 root=server1:/export/client1/root rootopts=:vers=2 \e 181 client2 root=server2:/export/client2/root ns=:nis 182 client3 root=server2:/export/client3/root ns=watson: 183 client4 root=server2:/export/client4/root \e 199 mozart root=haydn:/export/install/sparc/os/latest/Solaris_9/boot \e 225 Solaris diskless clients use the keywords \fBroot\fR and \fBrootopts\fR to look 226 up the pathname for the root filesystem and the mount options for the root
|
/illumos-gate/usr/src/contrib/zlib/ |
H A D | inftrees.c | 28 requested root table index bits, and on return it is the actual root 39 unsigned root; /* number of index bits for root table */ in inflate_table() local 47 unsigned low; /* low bits for current root entry */ in inflate_table() 48 unsigned mask; /* mask for low root bits */ in inflate_table() 108 /* bound code lengths, force root to be within code lengths */ in inflate_table() 109 root = *bits; in inflate_table() 112 if (root > max) root = max; in inflate_table() 124 if (root < min) root = min; in inflate_table() 153 root is the number of index bits for the root table. When len exceeds in inflate_table() 154 root, sub-tables are created pointed to by the root entry with an index in inflate_table() [all …]
|
/illumos-gate/usr/src/cmd/mdb/i86xpv/ |
H A D | Makefile.i86xpv | 27 ROOTMOD = $(ROOT)/usr/platform/i86xpv/lib/mdb/$(MDBTGT)$(MACHMODDIR) 28 ROOTKMOD = $(ROOT)/platform/i86xpv/kernel/kmdb$(MACHMODDIR) 30 $(ROOT)/usr/platform/i86xpv/lib/mdb: 33 $(ROOT)/usr/platform/i86xpv/lib/mdb/$(MDBTGT): $(ROOT)/usr/platform/i86xpv/lib/mdb 36 $(ROOT)/usr/platform/i86xpv/lib/mdb/$(MDBTGT)/amd64: \ 37 $(ROOT)/usr/platform/i86xpv/lib/mdb/$(MDBTGT) 40 $(ROOT)/platform/i86xpv/kernel: 43 $(ROOT)/platform/i86xpv/kernel/kmdb: $(ROOT)/platform/i86xpv/kernel 46 $(ROOT)/platform/i86xpv/kernel/kmdb/amd64: $(ROOT)/platform/i86xpv/kernel/kmdb
|
/illumos-gate/usr/src/boot/efi/include/Protocol/ |
H A D | PciRootBridgeIo.h | 2 PCI Root Bridge I/O protocol as defined in the UEFI 2.0 specification. 4 PCI Root Bridge I/O protocol is used by PCI Bus Driver to perform PCI Memory, PCI I/O, 5 and PCI Configuration cycles on a PCI Root Bridge. It also provides services to perform 118 Reads from the I/O space of a PCI Root Bridge. Returns when either the polling exit criteria is 148 Enables a PCI driver to access PCI controller registers in the PCI root bridge memory space. 157 @retval EFI_SUCCESS The data was read from or written to the PCI root bridge. 174 /// Read PCI controller registers in the PCI root bridge memory space. 178 /// Write PCI controller registers in the PCI root bridge memory space. 184 Enables a PCI driver to copy one region of PCI root bridge memory space to another region of PCI 185 root bridge memory space. [all …]
|