Home
last modified time | relevance | path

Searched refs:ROOT (Results 1 – 7 of 7) sorted by relevance

/development/tools/labpretest/
Dlabpretest.sh17 ROOT=$(cd `dirname $0` && pwd)
18 ADB="$ROOT/tools/adb"
19 FASTBOOT="$ROOT/tools/fastboot"
284 bootloaderfile=`ls -1 $ROOT/$product | sed -n 's/\(.*boot[0-9._]\+img\)/\1/ p'`
289 if [ ! -e "$ROOT/$product/$bootloaderfile" ]; then
293 log_print "using $ROOT/$product/$bootloaderfile as the bootloader image file"
296 flash_partition $bootpart $ROOT/$product/$bootloaderfile
323 radiofile=`ls -1 $ROOT/$product | sed -n 's/\(radio[0-9._A-Za-z]\+img\)/\1/ p'`
328 if [ ! -e "$ROOT/$product/$radiofile" ]; then
332 log_print "using $ROOT/$product/$radiofile as the radio image file"
[all …]
/development/tools/labpretest/crespo/
Dcustom_flash.sh33 bootloaderfile=`ls -1 $ROOT/$product/ | sed -n 's/^\(bootloader\.[0-9A-Za-z_]*.img\)\n*/\1/ p'`
38 if [ ! -e "$ROOT/$product/$bootloaderfile" ]; then
42 log_print "using $ROOT/$product/$bootloaderfile as bootloader image file"
45 flash_partition $BOOTPART $ROOT/$product/$bootloaderfile
/development/tools/labpretest/stingray/
Dcustom_flash.sh38 if [ ! -e "$ROOT/$product/$bootloaderfile" ]; then
42 log_print "using $ROOT/$product/$bootloaderfile as the bootloader image file"
45 flash_partition $BOOTPART $ROOT/$product/$bootloaderfile
/development/tools/labpretest/sholes/
Dcustom_flash.sh43 if [ ! -e "$ROOT/$product/$bootloaderfile" ]; then
47 log_print "using $ROOT/$product/$bootloaderfile as the bootloader image file"
50 flash_partition $BOOTPART $ROOT/$product/$bootloaderfile
/development/scripts/
Dgdbclient64 local ROOT=$(gettop)
65 if [ -z "$ROOT" ]; then
68 ROOT=`realpath .`
72 local OUT_ROOT="${SYS_OUT_ROOT:-${OUT_DIR:-$ROOT/out}}/target/product/$DEVICE"
189 local DALVIK_GDB_SCRIPT=$ROOT/development/scripts/gdb/dalvik.gdb
/development/build/tools/
Dmk_sdk_repo_xml.sh68 ROOT=$(sed -n -e '/xsd:element.*name="sdk-/s/.*name="\(sdk-[^"]*\)".*/\1/p' "$SCHEMA")
69 [[ -z "$ROOT" ]] && error "Failed to find root element in $SCHEMA."
75 <sdk:$ROOT
151 if [[ "$ROOT" == "sdk-repository" && "$XSD_VERSION" -ge "10" ]]; then return 0; fi
152 if [[ "$ROOT" == "sdk-addon" && "$XSD_VERSION" -ge "7" ]]; then return 0; fi
153 if [[ "$ROOT" == "sdk-sys-img" && "$XSD_VERSION" -ge "3" ]]; then return 0; fi
173 if [[ "$ROOT" == "sdk-repository" && "$XSD_VERSION" -ge 7 ]] ||
174 [[ "$ROOT" == "sdk-addon" && "$XSD_VERSION" -ge 5 ]]; then
466 echo "</sdk:$ROOT>" >> "$OUT"
/development/samples/browseable/StorageProvider/src/com.example.android.storageprovider/
DMyCloudProvider.java85 private static final String ROOT = "root"; field in MyCloudProvider
124 row.add(Root.COLUMN_ROOT_ID, ROOT); in queryRoots()
529 if (docId.equals(ROOT)) {