Home
last modified time | relevance | path

Searched refs:root (Results 26 – 50 of 819) sorted by relevance

12345678910>>...33

/illumos-gate/usr/src/test/util-tests/tests/chown/files/
H A Dcout21 drwx------ root .
2 drwxr-xr-x root ./dst
3 -rw-r--r-- root ./dst/file1
6 lrwxrwxrwx root ./src/dstlink
7 -rw-r--r-- root ./src/file2
8 lrwxrwxrwx root ./src/tlink
9 -rw-r--r-- root ./target
H A Dcout101 drwx------ root .
3 -rw-r--r-- root ./dst/file1
6 lrwxrwxrwx root ./src/dstlink
8 lrwxrwxrwx root ./src/tlink
10 lrwxrwxrwx root ./tlink
H A Dcout51 drwx------ root .
3 -rw-r--r-- root ./dst/file1
6 lrwxrwxrwx root ./src/dstlink
8 lrwxrwxrwx root ./src/tlink
10 lrwxrwxrwx root ./tlink
/illumos-gate/usr/src/contrib/zlib/
H A Dinftrees.c39 unsigned root; /* number of index bits for root table */ in inflate_table() local
109 root = *bits; in inflate_table()
112 if (root > max) root = max; in inflate_table()
124 if (root < min) root = min; in inflate_table()
198 curr = root; /* current table index bits */ in inflate_table()
201 used = 1U << root; /* use root table entries */ in inflate_table()
254 if (len > root && (huff & mask) != low) { in inflate_table()
257 drop = root; in inflate_table()
281 (*table)[low].bits = (unsigned char)root; in inflate_table()
298 *bits = root; in inflate_table()
/illumos-gate/usr/src/lib/libgrubmgmt/common/
H A Dlibgrub_fs.c188 sizeof (root->gr_physpath))) == 0 && in get_zfs_root()
190 root->gr_fs[GRBM_ZFS_BOOTFS].gfs_dev, in get_zfs_root()
465 (void) strlcpy(root->gr_fstyp, mp.mnt_fstype, sizeof (root->gr_fstyp)); in grub_current_root()
467 if (strcmp(root->gr_fstyp, MNTTYPE_ZFS) == 0) { in grub_current_root()
480 if (get_zfs_root(zfh, fs, root)) in grub_current_root()
494 sizeof (root->gr_fs[GRBM_UFS].gfs_dev)); in grub_current_root()
496 sizeof (root->gr_fs[GRBM_UFS].gfs_mountp)); in grub_current_root()
505 grub_get_rootfsd(const grub_root_t *root) in grub_get_rootfsd() argument
509 assert(root); in grub_get_rootfsd()
510 if (strcmp(MNTTYPE_UFS, root->gr_fstyp) == 0) in grub_get_rootfsd()
[all …]
/illumos-gate/usr/src/cmd/perl/contrib/Sun/Solaris/Project/t/
H A DProject.t214 group.test3:678:project three::root,nobody:root,lp:attr1=y;attr2=z
215 test4:678:project four:root:root:
225 group.test3:677:project three:root,nobody:root,lp:attr1=y;attr2=z
226 test1:678:project four:root:root:
236 group.test3:677:project three:root,nobody:root,lp:attr1=y;attr2=z
237 test4:678:project four:root:root:
246 user.root:1::::
252 group.test3:677:project three:root,nobody:root,lp:attr1=y;attr2=z
253 test4:678:project four:root:root:
263 group.test3:677:project three:root,nobody:root,lp:attr1=y;attr2=z
[all …]
/illumos-gate/usr/src/test/os-tests/runfiles/
H A Ddefault.run30 user = root
48 user = root
69 user = root
73 user = root
77 user = root
84 user = root
92 user = root
97 user = root
106 user = root
126 user = root
[all …]
/illumos-gate/usr/src/tools/scripts/
H A Dgit-pbchk.py186 def not_check(root, cmd): argument
193 return Ignore.ignore(root, ignorefiles)
268 def comchk(root, parent, flist, output): argument
305 def cstyle(root, parent, flist, output): argument
317 def hdrchk(root, parent, flist, output): argument
327 def jstyle(root, parent, flist, output): argument
356 def manlint(root, parent, flist, output): argument
418 def pkgfmt(root, parent, flist, output): argument
470 def wscheck(root, parent, flist, output): argument
505 exclude = not_check(root, check)
[all …]
H A Donu.sh.in80 root=$1
87 typeset on_publisher=$(pkg -R $root list -Hv \
91 do_cmd pkg -R $root set-publisher -r --no-refresh \
96 do_cmd pkg -R $root set-publisher -r -e --no-refresh -P \
99 do_cmd pkg -R $root refresh --full
111 do_cmd pkg -R $root change-facet -r onu.ooceonly=false
118 root=$1
120 pkg -R $root list -q entire && do_cmd pkg -R $root uninstall entire
122 configure_publishers $root
126 do_cmd pkg -R $root image-update $update_args
/illumos-gate/usr/src/contrib/ast/src/lib/libast/misc/
H A Dfts.c268 while (root) in search()
294 root = root->left; in search()
319 root = root->right; in search()
323 if (!root) in search()
324 root = e; in search()
338 return root; in search()
362 return root; in deleteroot()
382 root = root->left; in getlist()
394 root = root->right; in getlist()
698 root = search(f, root, fts->comparf, 1); in order()
[all …]
/illumos-gate/usr/src/cmd/hotplugd/
H A Dhotplugd_impl.c67 hp_node_t root = NULL; in changestate() local
89 *old_statep = hp_state(root); in changestate()
92 use_rcm = check_rcm_required(root, state); in changestate()
100 if ((rv = rcm_resources(root, &rsrcs)) != 0) { in changestate()
103 hp_fini(root); in changestate()
109 ((rv = rcm_offline(rsrcs, flags, root)) != 0)) { in changestate()
114 *resultsp = root; in changestate()
120 hp_fini(root); in changestate()
232 check_rcm_required(hp_node_t root, int target_state) in check_rcm_required() argument
238 if ((root->hp_type == HP_NODE_CONNECTOR) && in check_rcm_required()
[all …]
/illumos-gate/usr/src/lib/libprtdiag_psr/sparc/daktari/common/
H A Dworkfile.c187 add_node(Sys_tree *root, Prom_node *pnode) in add_node() argument
205 bnode = daktari_insert_board(root, board); in add_node()
281 if (root == NULL) in dev_next_node_by_compat()
306 if (root == NULL) in dev_find_node_by_compat()
312 name = get_node_name(root); in dev_find_node_by_compat()
323 return (root); /* found a match */ in dev_find_node_by_compat()
346 Board_node *temp = root->bd_list; in daktari_insert_board()
359 root->bd_list = bnode; in daktari_insert_board()
363 root->bd_list = bnode; in daktari_insert_board()
372 root->board_cnt++; in daktari_insert_board()
[all …]
/illumos-gate/usr/src/lib/libprtdiag_psr/sparc/littleneck/common/
H A Dworkfile.c47 void add_node(Sys_tree *root, Prom_node *pnode);
162 if (root == NULL) in dev_next_node_by_compat()
187 if (root == NULL) in dev_find_node_by_compat()
193 name = get_node_name(root); in dev_find_node_by_compat()
204 return (root); /* found a match */ in dev_find_node_by_compat()
405 Board_node *temp = root->bd_list; in littleneck_insert_board()
419 root->bd_list = bnode; in littleneck_insert_board()
423 root->bd_list = bnode; in littleneck_insert_board()
432 root->board_cnt++; in littleneck_insert_board()
447 Board_node *bnode = root->bd_list; in littleneck_find_board()
[all …]
/illumos-gate/usr/src/lib/libprtdiag/common/
H A Ddisplay_sun4u.c59 Prom_node *root, in display() argument
88 get_prop_val(find_prop(root, "banner-name")), 0); in display()
91 value = get_prop_val(find_prop(root, "clock-frequency")); in display()
121 root, tree, kstats); in display()
167 display_diaginfo(int flag, Prom_node *root, Sys_tree *tree, in display_diaginfo() argument
172 root = root; in display_diaginfo()
/illumos-gate/usr/src/uts/intel/os/
H A Dminor_perm1 devinfo:devinfo 0640 root sys
2 devinfo:devinfo,ro 0444 root sys
3 asy:* 0666 root sys
5 md:* 0640 root sys
6 md:admin 0644 root sys
/illumos-gate/usr/src/cmd/bart/
H A Dcreate.c184 if (chdir(root) < 0) { in sanitize_reloc_root()
186 perror(root); in sanitize_reloc_root()
193 (void) getcwd(root, bufsize); in sanitize_reloc_root()
201 perror(root); in sanitize_reloc_root()
209 if (strcmp(root, "/") == 0) in sanitize_reloc_root()
210 root[0] = '\0'; in sanitize_reloc_root()
229 struct rule *root; in create_manifest_rule() local
240 for (root = get_first_subtree(); root != NULL; in create_manifest_rule()
241 root = get_next_subtree(root)) { in create_manifest_rule()
255 perror(root->subtree); in create_manifest_rule()
[all …]
/illumos-gate/usr/src/cmd/logadm/
H A Dlut.h36 struct lut *lut_add(struct lut *root, const char *lhs, void *rhs);
37 struct lut *lut_dup(struct lut *root);
38 void *lut_lookup(struct lut *root, const char *lhs);
39 void lut_walk(struct lut *root,
41 void lut_free(struct lut *root, void (*callback)(void *rhs));
/illumos-gate/usr/src/cmd/sendmail/lib/
H A Daliases39 postmaster: root
46 bin: root
47 daemon: root
48 system: root
49 toor: root
50 uucp: root
53 manager: root
54 dumper: root
55 operator: root
58 decode: root
/illumos-gate/usr/src/cmd/svr4pkg/libinst/
H A Dcvtpath.c31 extern char *root, *basedir; /* WHERE? */
37 if (root || (basedir && (*path != '/'))) { in cvtpath()
38 if (root && ((basedir == NULL) || (path[0] == '/') || in cvtpath()
41 (void) strcpy(copy, root + (*root == '/' ? 1 : 0)); in cvtpath()
/illumos-gate/usr/src/lib/krb5/plugins/kdb/db2/libdb2/btree/
H A Dbt_open.c356 PAGE *meta, *root; local
360 if (root->lower == 0 &&
361 root->pgno == 0 &&
362 root->linp[0] == 0) {
363 mpool_delete(t->bt_mp, root);
366 mpool_put(t->bt_mp, root, 0);
382 root->pgno = npg;
383 root->prevpg = root->nextpg = P_INVALID;
384 root->lower = BTDATAOFF;
385 root->upper = t->bt_psize;
[all …]
/illumos-gate/usr/src/test/zfs-tests/tests/functional/acl/nontrivial/
H A Dzfs_acl_chmod_rwacl_001_pos.ksh129 log_must chgusr_exec root chmod A0- $node
138 if [[ $ZFS_ACL_CUR_USER == root ]]; then
153 log_must chgusr_exec root chmod A0- $node
176 log_must chgusr_exec root chmod A0- $node
185 log_must chgusr_exec root \
199 log_must chgusr_exec root chmod A0- $node
200 log_must chgusr_exec root chmod A0- $node
208 log_must chgusr_exec root chmod \
220 log_must chgusr_exec root chmod A0- $node
221 log_must chgusr_exec root chmod A0- $node
[all …]
/illumos-gate/usr/src/cmd/isns/isnsd/
H A Dadmintf.c135 if (root == NULL) { in cb_get_node_info()
606 if (root == NULL) { in cb_get_dd_info()
689 if (root == NULL) { in cb_get_ddset_info()
773 if (root == NULL) { in cb_enumerate_node_info()
873 if (root == NULL) { in i_enumerate_dd_dds_info()
1036 if (root == NULL) { in cb_getAssociated_node_info()
1104 if (root == NULL) { in cb_getAssociated_node_to_dd_info()
1172 if (root == NULL) { in cb_getAssociated_dd_info()
1240 if (root == NULL) { in cb_getAssociated_dd_to_ddset_info()
1300 if (root == NULL) { in handle_partial_success()
[all …]
/illumos-gate/usr/src/cmd/fm/eversholt/common/
H A Dlut.h44 struct lut *lut_add(struct lut *root, void *lhs, void *rhs,
46 void *lut_lookup(struct lut *root, void *lhs, lut_cmp cmp_func);
47 void *lut_lookup_lhs(struct lut *root, void *lhs, lut_cmp cmp_func);
49 void lut_walk(struct lut *root, lut_cb callback, void *arg);
50 void lut_free(struct lut *root, lut_cb callback, void *arg);
/illumos-gate/usr/src/uts/common/io/1394/
H A Ds1394_addr.c982 s1394_tree_insert(root, x); in s1394_used_tree_insert()
1003 s1394_right_rotate(root, in s1394_used_tree_insert()
1023 s1394_left_rotate(root, in s1394_used_tree_insert()
1060 *root = z; in s1394_tree_insert()
1170 *root = x; in s1394_used_tree_delete()
1196 if (z == *root) in s1394_used_tree_delete()
1197 *root = y; in s1394_used_tree_delete()
1268 x = *root; in s1394_used_tree_delete_fixup()
1312 x = *root; in s1394_used_tree_delete_fixup()
1340 *root = y; in s1394_left_rotate()
[all …]
/illumos-gate/usr/src/cmd/pools/poold/com/sun/solaris/service/locality/
H A DLocalityDomain.java73 private LocalityGroup root; field in LocalityDomain
96 root = jl_root(); in LocalityDomain()
129 return (root); in getRoot()
145 root = null; in close()
154 return (root.toString()); in toString()
262 groups.add(root); in getGroups()
263 getGroups(root, groups); in getGroups()
297 LocalityGroup answer = getGroup(root, cpuid); in getGroup()
298 return (getGroup(root, cpuid)); in getGroup()

12345678910>>...33