Home
last modified time | relevance | path

Searched refs:parent (Results 1 – 12 of 12) sorted by relevance

/coreutils/tests/mkdir/
Dperm.sh66 mkdir -m =,u=rwx parent || fail=1
70 mkdir $p $mode parent/sub || fail=1
72 perms=$(stat --printf %A parent)
74 || { fail=1; echo parent: expected $parent_perms, got $perms; }
76 perms=$(stat --printf %A parent/sub)
78 || { fail=1; echo parent/sub: expected $sub_perms, got $perms; }
80 chmod -R u+rwx parent
81 rm -rf parent || fail=1
/coreutils/gl/lib/
Dheap.c116 size_t parent = initial; in heapify_down() local
117 while (parent <= count / 2) in heapify_down()
119 size_t child = 2 * parent; in heapify_down()
127 array[parent] = array[child]; in heapify_down()
128 parent = child; in heapify_down()
131 array[parent] = element; in heapify_down()
132 return parent; in heapify_down()
/coreutils/tests/cp/
Dparent-perm.sh28 cp -p --parent a/b/c/foo e || framework_failure_
35 cp -p --parent a/b/d/foo e || fail=1
/coreutils/src/
Dremove.c496 char *parent = file_name_concat (ent->fts_accpath, "..", nullptr); in rm_fts() local
499 if (!parent || lstat (parent, &statbuf)) in rm_fts()
503 quoteaf_n (0, parent), in rm_fts()
508 free (parent); in rm_fts()
Dsort.c241 struct merge_node *parent; /* Parent node. */ member
3344 root->parent = nullptr; in merge_tree_init()
3377 init_node (struct merge_node *restrict parent, in init_node() argument
3382 size_t nlines = (is_lo_child ? parent->nlo : parent->nhi); in init_node()
3387 struct line **parent_end = (is_lo_child ? &parent->end_lo : &parent->end_hi); in init_node()
3395 node->parent = parent; in init_node()
3396 node->level = parent->level + 1; in init_node()
3615 lock_node (node->parent); in queue_check_insert_parent()
3616 queue_check_insert (queue, node->parent); in queue_check_insert_parent()
3617 unlock_node (node->parent); in queue_check_insert_parent()
[all …]
Dcopy.c113 struct dir_list *parent; member
123 int nonexistent_dst, struct stat const *parent,
689 ancestors = ancestors->parent; in is_ancestor()
2197 struct stat const *parent, in copy_internal() argument
2932 dir->parent = ancestors; in copy_internal()
3008 if (x->one_file_system && parent && parent->st_dev != src_sb.st_dev) in copy_internal()
/coreutils/
Dbootstrap923 parent=$1
930 grep -F "/${file##*/}/" "$parent/CVS/Entries" 2>/dev/null |
995 parent=$(dirname "$dst_dir")
998 ig=$parent/$dot_ig
1196 parent=${file%/*}
1197 version_controlled_file "$parent" "$file" || {
1200 ig=$parent/$dot_ig
DNEWS1477 even if the parent directory exists and has a different default context.
1972 its parent, which would cause timeouts to be ignored.
2980 sort is now immune to the signal handling of its parent.
2982 if it uses helper processes for compression and its parent
2988 timeout is now immune to the signal handling of its parent.
2990 if its parent ignores CHLD signals. [bug introduced in coreutils-7.6]
3990 pwd and "readlink -e ." no longer fail unnecessarily when a parent
4299 install now creates parent directories with mode u=rwx,go=rx (755)
4301 not change the owner or group of parent directories. This is for
/coreutils/scripts/git-hooks/
Dcommit-msg161 # Stop if our parent is killed.
/coreutils/tests/
Dlocal.mk513 tests/cp/parent-perm.sh \
514 tests/cp/parent-perm-race.sh \
/coreutils/doc/
Dperm.texi575 created subdirectories inherit the set-group-ID bit of the parent
Dcoreutils.texi9161 @cindex parent directories and @command{cp}
9998 @command{install} creates each @var{directory} and any missing parent
10002 set-user-ID and set-group-ID bits of parent directories are inherited.
10040 Create any missing parent directories of @var{dest},
10050 @cindex parent directories, creating missing
10052 Create any missing parent directories, giving them the default
10420 that is not on the same file system as its parent.
11130 @cindex parent directories, creating
11131 Make any missing parent directories for each argument, setting their
11134 existing parent directories, and do not change their file permission
[all …]