Home
last modified time | relevance | path

Searched refs:dir (Results 1 – 25 of 78) sorted by relevance

1234

/tools/test/graphicsbenchmark/
DAndroid.mk16 LOCAL_PATH:= $(call my-dir)
38 $(call intermediates-dir-for,JAVA_LIBRARIES,$(m),HOST,COMMON)/javalib.jar:gamecore/bin/$(m).jar)
40 …$(call intermediates-dir-for,NATIVE_TESTS,$(m))/$(m)$(bit_suffix):gamecore/testcases/$(TARGET_ARCH…
42 $(call intermediates-dir-for,APPS,$(m))/package.apk:gamecore/testcases/$(m).apk)
54 gamecore_dist_intermediates := $(call intermediates-dir-for,PACKAGING,gamecore_dist,HOST,COMMON)
58 rm -rf $(dir $@) && mkdir -p $(dir $@)/gamecore
59 mkdir -p $(dir $@)/gamecore/bin
60 mkdir -p $(dir $@)/gamecore/testcases/$(TARGET_ARCH)
62 cp -f $(call word-colon,1,$(p)) $(dir $@)/$(call word-colon,2,$(p)) &&) true
63 echo $(BUILD_NUMBER_FROM_FILE) > $(dir $@)/gamecore/version.txt
[all …]
DREADME12 …re that `adb` and `aapt` are available on your path, and run from tools/test/graphicsbenchmark dir:
18 --apk-dir Directory contains the APKs for qualifications. If --apk-info is not specified and a
19 file named 'apk-info.xml' exists in --apk-dir, that file will be used as the apk-info.
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
DFatLfnDirectory.java63 final AbstractDirectory dir; field in FatLfnDirectory
65 FatLfnDirectory(AbstractDirectory dir, Fat fat, boolean readOnly) in FatLfnDirectory() argument
70 if ((dir == null) || (fat == null)) throw new NullPointerException(); in FatLfnDirectory()
73 this.dir = dir; in FatLfnDirectory()
139 dir.addEntries(entry.compactForm()); in addFile()
146 dir.setDirty(); in addFile()
191 final FatDirectoryEntry real = dir.createSub(fat); in addDirectory()
197 dir.addEntries(e.compactForm()); in addDirectory()
202 dir.removeEntry(real); in addDirectory()
242 final int size = dir.getEntryCount(); in parseLfn()
[all …]
DFatLfnDirectoryEntry.java74 FatLfnDirectory dir, int offset, int len) { in extract() argument
76 final FatDirectoryEntry realEntry = dir.dir.getEntry(offset + len - 1); in extract()
87 FatDirectoryEntry entry = dir.dir.getEntry(i + offset); in extract()
94 return new FatLfnDirectoryEntry(dir, realEntry, fileName); in extract()
DAbstractDirectory.java316 final ClusterChainDirectory dir = in createSub() local
323 dot.setStartCluster(dir.getStorageCluster()); in createSub()
325 dir.addEntry(dot); in createSub()
333 dir.addEntry(dotDot); in createSub()
335 dir.flush(); in createSub()
/tools/tradefederation/prebuilts/test_harness/
DAndroid.mk15 LOCAL_PATH := $(call my-dir)
28 tradefed_dist_copy_pairs := $(foreach m, $(tradefed_dist_host_jars), $(call intermediates-dir-for,J…
34 tradefed_dist_intermediates := $(call intermediates-dir-for,PACKAGING,tradefed_dist,HOST,COMMON)
38 rm -rf $(dir $@)/tmp && mkdir -p $(dir $@)/tmp
40 cp -f $(call word-colon,1,$(f)) $(dir $@)/tmp/$(call word-colon,2,$(f)) &&) true
41 $(SOONG_ZIP) -o $@ -C $(dir $@)/tmp \
42 $(foreach f,$(PRIVATE_COPY_PAIRS),-f $(dir $@)/tmp/$(call word-colon,2,$(f)))
/tools/metalava/src/test/java/com/android/tools/metalava/
DSymlinkTest.kt41 projectSetup = { dir -> in <lambda>() method
44 val file = File(dir, "src/test/pkg/sub1/sub2") in <lambda>()
47 java.nio.file.Files.createSymbolicLink(symlink, dir.toPath()) in <lambda>()
50 java.nio.file.Files.createSymbolicLink(git, dir.toPath()) in <lambda>()
53 File(dir, "src/test/pkg/Foo.java").writeText( in <lambda>()
67 File(dir, "src/test/pkg/sub1/package.html").writeText( in <lambda>()
DBaselineTest.kt133 projectSetup = { dir -> in <lambda>() method
135 val file = File(dir, "src/test/pkg/sub1/sub2") in <lambda>()
138 java.nio.file.Files.createSymbolicLink(symlink, dir.toPath()) in <lambda>()
140 java.nio.file.Files.createSymbolicLink(git, dir.toPath()) in <lambda>()
DOptionsTest.kt522 val dir = File(top, "childdir").apply { mkdirs() } in Test for --strict-input-files-exempt() constant
523 val grandchild1 = File(dir, "grandchiild1").apply { createNewFile() } in Test for --strict-input-files-exempt()
524 val grandchild2 = File(dir, "grandchiild2").apply { createNewFile() } in Test for --strict-input-files-exempt()
532 file1.path + File.pathSeparatorChar + dir.path in Test for --strict-input-files-exempt()
/tools/trebuchet/core/common/src/main/kotlin/trebuchet/extras/
DImportUtils.kt49 var dir = File(".").absoluteFile in findSampleData() variable
50 while (!File(dir, "sample_data").exists()) { in findSampleData()
51 dir = dir.parentFile in findSampleData()
52 if (dir == null) { in findSampleData()
56 return File(dir, "sample_data").absolutePath in findSampleData()
/tools/treble/hacksaw/bind/
Dlocal.go43 for dir := filepath.Dir(inPath); dir != "." && dir != "/"; dir = filepath.Dir(dir) {
45 if filepath.Base(dir) == "hacksaw" {
/tools/test/graphicsbenchmark/dist/
DREADME4 Usage: ./run_gamecore.sh [--all] [--apk-info=file] [--apk-dir=dir]
10 --apk-dir=dir Directory containing the APKs for qualifications. If --apk-info is
11 not specified and a file named 'apk-info.xml' exists in --apk-dir,
Drun_gamecore.sh31 OPTS=`getopt -o ah -l all,help,apk-info:,apk-dir: -- "$@"` || usage
41 --apk-dir)
/tools/aadevtools/validation/
Dget_file_dir.sh21 dir=$1
23 if [[ -d ${dir} ]]; then
24 cd ${dir} && fList=$(find "${dir}" -name "*.${ext}")
/tools/treble/hacksaw/workspace/
Dcopier.go59 for dir := project; dir != "." && dir != "/"; dir = filepath.Dir(dir) {
60 containsGitSet[dir] = exists
Dworkspace.go98 dir := filepath.Join(w.topDir, workspaceName)
99 return dir, nil
113 func (w *Workspace) SetTopDir(dir string) {
114 w.topDir = dir
320 dir, err := w.GetDir(workspaceName)
324 if strings.HasPrefix(inPath+"/", dir+"/") {
Dcompose.go38 dir, err := os.Open(name)
42 defer dir.Close()
43 _, err = dir.Readdirnames(1)
/tools/metalava/src/main/java/com/android/tools/metalava/stub/
DStubWriter.kt151 val dir = File(stubsDir, relative) in <lambda>() constant
152 if (create && !dir.isDirectory) { in <lambda>()
153 val ok = dir.mkdirs() in <lambda>()
155 throw IOException("Could not create $dir") in <lambda>()
159 return dir in <lambda>()
/tools/metalava/src/main/java/com/android/tools/metalava/
DDocAnalyzer.kt842 val dir = File(tmp, relative) in getApiLookup() constant
843 if (!dir.isDirectory) { in getApiLookup()
844 dir.mkdirs() in getApiLookup()
847 return Files.createTempDirectory(dir.toPath(), null).toFile() in getApiLookup()
850 val dir = File(System.getProperty("java.io.tmpdir"), relative) in getApiLookup() constant
851 if (create && !dir.isDirectory) { in getApiLookup()
852 dir.mkdirs() in getApiLookup()
854 return dir in getApiLookup()
/tools/treble/hacksaw/codebase/
Dcodebase.go86 dir, ok := cfg.Codebases[codebase]
88 return dir, fmt.Errorf("Codebase %s not found",
91 return dir, nil
/tools/treble/hacksaw/client/
Dcommand.go132 dir, err := c.workspace.Create(workspaceName, codebaseName)
136 fmt.Println("Created", workspaceName, "at", dir)
148 dir, err := c.workspace.Recreate(workspaceName)
152 fmt.Println("Recreated", workspaceName, "at", dir)
/tools/external_updater/
Dregen_bp.sh85 --exclude-dir .git --exclude build.rs \
86 --exclude-dir target.tmp --exclude-dir target \
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/bt/loggers/
Dbluetooth_metric_logger.py29 for metric in dir(proto):
118 for metric in dir(pri_device_proto):
125 for metric in dir(conn_device_proto):
/tools/test/connectivity/acts/framework/acts/controllers/rohdeschwarz_lib/
Dcontest.py231 for dir in dir_list:
232 if 'TestCaseName' in dir:
233 xml_path = os.path.join(testplan_path, dir,
/tools/ndkports/
Dgradlew139 for dir in $ROOTDIRSRAW ; do
140 ROOTDIRS="$ROOTDIRS$SEP$dir"

1234