Home | History | Annotate | Download | only in tools

Lines Matching refs:DIRECTORY

24 # within its directory structure.
30 # Try to auto-detect the NDK root by walking up the directory
65 echo "ERROR: Your ANDROID_NDK_ROOT variable does not point to a directory."
70 echo "ERROR: Your ANDROID_NDK_ROOT variable does not point to a valid directory."
703 directory
733 # $2: optional target directory (current one if omitted)
777 # $2: source directory for archive content
829 # Copy a directory, create target location if needed
831 # $1: source directory
832 # $2: target directory location
839 panic "Can't copy from non-directory: $SRCDIR"
841 log "Copying directory: "
845 fail_panic "Cannot copy to directory: $DSTDIR"
848 # Move a directory, create target location if needed
850 # $1: source directory
851 # $2: target directory location
858 panic "Can't move from non-directory: $SRCDIR"
860 log "Move directory: "
864 fail_panic "Cannot move to directory: $DSTDIR"
874 panic "Can't copy from non-directory: $SRCDIR"
876 log "Copying directory (without symlinks): "
880 fail_panic "Cannot copy to directory: $DSTDIR"
883 # Copy certain files from one directory to another one
884 # $1: source directory
885 # $2: target directory
893 panic "Cant' copy from non-directory: $SRCDIR"
899 fail_panic "Cannot copy files to directory: $DSTDIR"
953 local DIRECTORY SYMLINKS DIR FILE LINK
954 for DIRECTORY in "$@"; do
955 if [ -d "$DIRECTORY" ]; then
957 # Find all symlinks in this directory.
958 SYMLINKS=`find $DIRECTORY -type l`