/tools/treble/build/sandbox/ |
D | overlay_test.py | 140 o = overlay.BindOverlay( 144 self.assertIsNotNone(o) 145 bind_mounts = o.GetBindMounts() 173 o = overlay.BindOverlay( 177 self.assertIsNotNone(o) 178 bind_mounts = o.GetBindMounts() 197 o = overlay.BindOverlay( 201 self.assertIsNotNone(o) 202 bind_mounts = o.GetBindMounts() 229 o = overlay.BindOverlay( [all …]
|
D | config.py | 158 *[o.replacement_paths for o in self.overlays]): 290 return base + [fs for o in config_elem.findall('view') 291 for fs in fs_view_map[o.get('name')]] 306 [o.get('path') for o in config_elem.findall('allow_readwrite')]) 481 b.name : [o.name for o in b.overlays
|
/tools/treble/split/ |
D | manifest_split.py | 630 for o, a in opts: 631 if o in ("-h", "--help"): 634 elif o in ("--debug-file"): 636 elif o in ("--manifest"): 638 elif o in ("--split-manifest"): 640 elif o in ("--config"): 642 elif o == "--ignore-default-config": 644 elif o in ("--repo-list"): 646 elif o in ("--ninja-build"): 648 elif o in ("--ninja-binary"): [all …]
|
/tools/security/gdb/gdb_json_printer/ |
D | README.md | 8 g++ test_examples/basic_types.cpp -O0 -g -o test_examples/basic_types 9 g++ test_examples/objects1.cpp -O0 -g -o test_examples/objects1 10 g++ test_examples/objects2.cpp -O0 -g -o test_examples/objects2 11 g++ test_examples/objects.cpp -O0 -g -o test_examples/objects 12 g++ test_examples/array.cpp -O0 -g -o test_examples/array 13 g++ test_examples/reference.cpp -O0 -g -o test_examples/reference
|
/tools/platform-compat/java/android/processor/compat/ |
D | SourcePosition.java | 60 public boolean equals(Object o) { in equals() argument 61 if (this == o) return true; in equals() 62 if (o == null || getClass() != o.getClass()) return false; in equals() 63 SourcePosition that = (SourcePosition) o; in equals()
|
/tools/trebuchet/core/common/src/main/kotlin/trebuchet/collections/ |
D | SparseArray.kt | 107 var o = 0 in gc() variable 115 if (i != o) { in gc() 116 keys[o] = keys[i] in gc() 117 values[o] = `val` in gc() 121 o++ in gc() 126 mSize = o in gc()
|
/tools/metalava/src/main/java/com/android/tools/metalava/model/text/ |
D | TextCodebase.kt | 429 override fun make(o: Any): Any { in make() 430 val name = o as String in make() 474 internal fun obtain(o: Any?): Any? { in obtain() 475 if (o == null) { in obtain() 478 var r: Any? = mCache[o] in obtain() 480 r = make(o) in obtain() 481 mCache[o] = r in obtain() 486 protected abstract fun make(o: Any): Any
|
/tools/apksig/src/main/java/com/android/apksig/internal/util/ |
D | GuaranteedEncodedFormX509Certificate.java | 44 public boolean equals(Object o) { in equals() argument 45 if (this == o) return true; in equals() 46 if (!(o instanceof X509Certificate)) return false; in equals() 50 byte[] b = ((X509Certificate) o).getEncoded(); in equals()
|
/tools/test/graphicsbenchmark/performance_tests/hostside/src/com/android/game/qualification/metric/ |
D | MetricSummary.java | 113 public boolean equals(Object o) { in equals() argument 114 if (this == o) return true; in equals() 115 if (o == null || getClass() != o.getClass()) return false; in equals() 116 MetricSummary summary = (MetricSummary) o; in equals()
|
D | LoopSummary.java | 172 public boolean equals(Object o) { in equals() argument 173 if (this == o) return true; in equals() 174 if (o == null || getClass() != o.getClass()) return false; in equals() 175 LoopSummary that = (LoopSummary) o; in equals()
|
/tools/apksig/src/main/java/com/android/apksig/internal/apk/stamp/ |
D | SourceStampCertificateLineage.java | 178 public boolean equals(Object o) { in equals() argument 179 if (this == o) return true; in equals() 180 if (!(o instanceof SigningCertificateNode)) return false; in equals() 182 SigningCertificateNode that = (SigningCertificateNode) o; in equals()
|
/tools/security/remote_provisioning/attestation_testing/java/com/google/attestationexample/ |
D | AttestationPackageInfo.java | 79 public boolean equals(Object o) { in equals() argument 80 return (o instanceof AttestationPackageInfo) in equals() 81 && (0 == compareTo((AttestationPackageInfo) o)); in equals()
|
D | AttestationApplicationId.java | 133 public boolean equals(Object o) { in equals() argument 134 return (o instanceof AttestationApplicationId) in equals() 135 && (0 == compareTo((AttestationApplicationId) o)); in equals()
|
/tools/apksig/src/main/java/com/android/apksig/internal/apk/v3/ |
D | V3SigningCertificateLineage.java | 263 public boolean equals(Object o) { in equals() argument 264 if (this == o) return true; in equals() 265 if (!(o instanceof SigningCertificateNode)) return false; in equals() 267 SigningCertificateNode that = (SigningCertificateNode) o; in equals()
|
/tools/security/gdb/gdb_json_printer/test_examples/ |
D | basic_types.cpp | 38 Animal o = CAT; in main() local 60 const Animal o = DOG; in main() local
|
/tools/apkzlib/src/test/resources/testData/packaging/text-files/ |
D | rfc2460.txt | 79 o Expanded Addressing Capabilities 89 o Header Format Simplification 95 o Improved Support for Extensions and Options 102 o Flow Labeling Capability 119 o Authentication and Privacy Capabilities 1082 o 1083 o 1084 o 1282 o If the desired action is for the destination node to discard 1300 o If any other action is desired, the information must be encoded [all …]
|
/tools/security/gdb/heap_print/ |
D | README.md | 27 g++ -O0 -g test/sample_heap_test.cc -o test/sample_heap_test.o
|
/tools/asuite/atest-py2/ |
D | test_mapping.py | 62 self.options.sort(key=lambda o: o[0])
|
/tools/trebuchet/trebuchet/system-server-analyzer/ |
D | README.md | 8 `./gradlew :trebuchet:system-server-analyzer:run --args="<trace_file> [-t threshold_ms] [-o output_… 16 `adb shell atrace -o /sdcard/atrace-ss.txt -t 10 ss`
|
/tools/asuite/atest/ |
D | test_mapping.py | 60 self.options.sort(key=lambda o: o[0])
|
/tools/trebuchet/trebuchet/user-switch-analyzer/ |
D | README.md | 10 `./gradlew :trebuchet:system-server-analyzer:run --args="<trace_file> [-u user_Id] [-o output_filen… 18 `adb shell atrace -o /sdcard/atrace-ss.txt -t 15 ss`
|
/tools/dexter/slicer/ |
D | dex_bytecode.cc | 33 #define INSTRUCTION_DESCR(o, c, p, format, index, flags, e, vflags) \ argument 124 #define INSTRUCTION_NAME(o, c, pname, f, i, a, e, v) pname, argument
|
/tools/ndkports/ |
D | Dockerfile | 8 RUN curl -o ndk.zip \
|
/tools/metalava/ |
D | Android.bp | 76 …"$(genDir)/private-stub-annotations) && ($(location soong_zip) -o $(out) -C $(genDir) -D $(genDir)…
|
/tools/asuite/atest/unittest_data/ |
D | test_record.proto.testonly | 31 …lder11786903975647270050/bootstrap-test-dir16841822681343991638/host_testcases3284826708541559531*o 58 o/tmp/atest_result/20200616_105829_apjgcqmm/log/invocation_10830271556174369472/host_log_4629798235… 71 …lder11786903975647270050/bootstrap-test-dir16841822681343991638/host_testcases3284826708541559531*o
|