/aosp12/system/core/fs_mgr/libsnapshot/ |
H A D | PowerTest.md | 4 snapshot\_power\_test is a standalone test to simulate power failures during a snapshot-merge opera… 8 Start by creating two large files that will be used as the pre-merge and post-merge state. You can … 10 dd if=/dev/urandom of=pre-merge count=1024 bs=1048576 11 dd if=/dev/urandom of=post-merge count=1024 bs=1048576 15 adb push pre-merge /data/local/unencrypted 16 adb push post-merge /data/local/unencrypted 22 /data/local/unencrypted/pre-merge \ 23 /data/local/unencrypted/post-merge 32 `POST_MERGE_FILE` should be the path on the device of the image to validate the merge against. Exam… 34 run_power_test.sh /data/local/unencrypted/post-merge [all …]
|
/aosp12/art/test/549-checker-types-merge/ |
H A D | Android.bp | 3 // Build rules for ART run-test `549-checker-types-merge`. 16 name: "art-run-test-549-checker-types-merge", 21 ":art-run-test-549-checker-types-merge-expected-stdout", 22 ":art-run-test-549-checker-types-merge-expected-stderr", 31 name: "art-run-test-549-checker-types-merge-expected-stdout", 32 out: ["art-run-test-549-checker-types-merge-expected-stdout.txt"], 39 name: "art-run-test-549-checker-types-merge-expected-stderr", 40 out: ["art-run-test-549-checker-types-merge-expected-stderr.txt"],
|
/aosp12/hardware/interfaces/boot/1.1/ |
H A D | IBootControl.hal | 23 * Sets whether a snapshot-merge of any dynamic partition is in progress. 25 * After the merge status is set to a given value, subsequent calls to 28 * The merge status must be persistent across reboots. That is, getSnapshotMergeStatus 29 * must return the same value after a reboot if the merge status is not altered in any way 32 * Read/write access to the merge status must be atomic. When the HAL is processing a 39 * When the merge status is set to MERGING, the following operations must be prohibited from the 54 * Returns whether a snapshot-merge of any dynamic partition is in progress. 56 * This function must return the merge status set by the last setSnapshotMergeStatus call and 58 * bootloader such that the pending merge must be canceled (for example, if the super partition 61 * @return success True if the merge status is read successfully, false otherwise.
|
H A D | types.hal | 21 * No snapshot or merge is in progress. 26 * The merge status could not be determined. 31 * Partitions are being snapshotted, but no merge has been started. 36 * At least one partition has merge is in progress. 41 * A merge was in progress, but it was canceled by the bootloader.
|
/aosp12/frameworks/base/core/java/android/net/metrics/ |
H A D | NetworkMetrics.java | 70 summary.merge(s); in getPendingStats() 133 void merge(Summary that) { in merge() method in NetworkMetrics.Summary 134 dnsLatencies.merge(that.dnsLatencies); in merge() 135 dnsErrorRate.merge(that.dnsErrorRate); in merge() 136 connectLatencies.merge(that.connectLatencies); in merge() 137 connectErrorRate.merge(that.connectErrorRate); in merge() 138 tcpLossRate.merge(that.tcpLossRate); in merge() 166 void merge(Metrics that) { in merge() method in NetworkMetrics.Metrics
|
/aosp12/frameworks/base/tests/utils/testutils/java/com/android/test/filters/ |
H A D | SelectTestTests.java | 78 private static final Set<Description> TEST_CLASS_A1 = merge(TEST_METHOD_A1K, TEST_METHOD_A1L); 79 private static final Set<Description> TEST_CLASS_A2 = merge(TEST_METHOD_A2M, TEST_METHOD_A2N); 80 private static final Set<Description> TEST_CLASS_B3 = merge(TEST_METHOD_B3P, TEST_METHOD_B3Q); 81 private static final Set<Description> TEST_CLASS_B4 = merge(TEST_METHOD_B4R, TEST_METHOD_B4S); 82 private static final Set<Description> TEST_CLASS_C5 = merge(TEST_METHOD_C5W, TEST_METHOD_C5X); 84 private static final Set<Description> TEST_PACKAGE_A = merge(TEST_CLASS_A1, TEST_CLASS_A2); 85 private static final Set<Description> TEST_PACKAGE_B = merge(TEST_CLASS_B3, TEST_CLASS_B4); 86 private static final Set<Description> TEST_PACKAGE_C = merge(TEST_CLASS_C5, TEST_CLASS_C6); 88 merge(TEST_PACKAGE_A, TEST_PACKAGE_B, TEST_PACKAGE_C); 132 private static Set<Description> merge(Set<Description>... testSpecs) { in merge() method in SelectTestTests [all …]
|
/aosp12/system/core/fs_mgr/libsnapshot/android/snapshot/ |
H A D | snapshot.proto | 39 // No merge is in progress. 42 // Shrunk partitions can merge. 45 // Grown partitions can merge. 89 // the update and before the merge allows us to infer the progress of the 90 // merge process. 96 // the merge process. 115 // No update or merge is in progress. 127 // Post-merge cleanup steps could not be completed due to a transient 201 // Status of the update after the merge attempts. 205 // merge of all the snapshot devices. [all …]
|
/aosp12/art/test/552-checker-primitive-typeprop/smali/ |
H A D | TypePropagation.smali | 26 # p2 = merge(int,float) = conflict 31 # p2 = merge(conflict,float) = conflict 45 # p1 = merge(int,int) = int 57 # p2 = void (loop phi) => p2 = merge(int,int) = int 61 # p2 = merge(void,int) = int 74 # p1 = merge(int,long) = conflict 86 # p1 = merge(float,reference) = conflict 99 # p1 = merge(float,0x0) = float 111 # p1 = merge(int,float) = conflict 123 # p2 = merge(int,float) = float? => conflict
|
/aosp12/frameworks/native/services/surfaceflinger/tests/unittests/ |
H A D | LayerMetadataTest.cpp | 78 TEST_F(LayerMetadataTest, merge) { in TEST_F() argument 88 bool changed = metadata.merge(second); in TEST_F() 98 changed = metadata.merge(withErase, true /* eraseEmpty */); in TEST_F() 108 changed = metadata.merge(third); in TEST_F()
|
/aosp12/system/core/libutils/include/utils/ |
H A D | SortedVector.h | 116 ssize_t merge(const Vector<TYPE>& vector); 117 ssize_t merge(const SortedVector<TYPE>& vector); 235 ssize_t SortedVector<TYPE>::merge(const Vector<TYPE>& vector) { in merge() function 236 return SortedVectorImpl::merge(reinterpret_cast<const VectorImpl&>(vector)); in merge() 240 ssize_t SortedVector<TYPE>::merge(const SortedVector<TYPE>& vector) { in merge() function 241 return SortedVectorImpl::merge(reinterpret_cast<const SortedVectorImpl&>(vector)); in merge()
|
/aosp12/art/test/800-smali/smali/ |
H A D | b_27799205_1.smali | 13 # Make v0, v1 and v2 null. We'll use v0 as a merge of the inputs, v1 as null, and v2 as 0. 18 # Conditional jump so we have a merge point. 30 # At this point, v0 will be the unresolved merge.
|
H A D | b_27799205_2.smali | 13 # Make v0, v1 and v2 null. We'll use v0 as a merge of the inputs, v1 as null, and v2 as 0. 18 # Conditional jump so we have a merge point. 30 # At this point, v0 will be the unresolved merge.
|
H A D | b_27799205_3.smali | 12 # Use some non-object non-array input (non-Object because the merge should be Object). 15 # Make v0, v1 and v2 null. We'll use v0 as a merge of the inputs, v1 as null, and v2 as 0. 20 # Conditional jump so we have a merge point.
|
H A D | b_121245951_3.smali | 14 # Possibly throwing to merge v1 into catch handler as int. 19 # This should cause a runtime failure, and not merge into the
|
/aosp12/build/make/tools/releasetools/ |
H A D | rangelib.py | 170 for p, d in heapq.merge(zip(self.data, itertools.cycle((+1, -1))), 188 for p, d in heapq.merge(zip(self.data, itertools.cycle((+1, -1))), 207 for p, d in heapq.merge(zip(self.data, itertools.cycle((+1, -1))), 227 for _, d in heapq.merge(zip(self.data, itertools.cycle((+1, -1))), 268 for p, d in heapq.merge(zip(self.data, itertools.cycle((-5, +5))),
|
/aosp12/art/libartbase/base/ |
H A D | intrusive_forward_list.h | 320 void merge(IntrusiveForwardList& other) { in merge() function 321 merge(other, std::less<value_type>()); in merge() 323 void merge(IntrusiveForwardList&& other) { in merge() function 324 merge(other); // Use l-value overload. in merge() 327 void merge(IntrusiveForwardList& other, Compare cmp) { in merge() function 347 void merge(IntrusiveForwardList&& other, Compare cmp) { in merge() function 348 merge(other, cmp); // Use l-value overload. in merge() 363 merge(second_half, cmp); in sort()
|
/aosp12/frameworks/compile/mclinker/lib/Target/ |
H A D | ELFAttribute.cpp | 38 bool ELFAttribute::merge(const Input& pInput, LDSection& pInputAttrSectHdr) { in merge() function in mcld::ELFAttribute 113 if (!subsection->merge(pInput, vendor_data, vendor_data_size)) in merge() 186 bool ELFAttribute::Subsection::merge(const Input& pInput, in merge() function in mcld::ELFAttribute::Subsection 265 !m_AttrData.merge(m_Parent.config(), pInput, tag, in_attr)) { in merge()
|
/aosp12/frameworks/base/libs/hostgraphics/ui/ |
H A D | Fence.h | 34 static sp<Fence> merge(const char* name, const sp<Fence>& f1, const sp<Fence>& f2) { in merge() function 38 static sp<Fence> merge(const String8& name, const sp<Fence>& f1, const sp<Fence>& f2) { in merge() function
|
/aosp12/frameworks/compile/libbcc/lib/ |
H A D | Script.cpp | 81 if (!mSource->merge(*libclcore_source)) { in LinkRuntime() 90 bool Script::mergeSource(Source &pSource) { return mSource->merge(pSource); } in mergeSource()
|
/aosp12/frameworks/compile/mclinker/include/mcld/Target/ |
H A D | ELFAttribute.h | 57 bool merge(const Input& pInput, LDSection& pInputAttrSectHdr); 89 bool merge(const Input& pInput, ConstAddress pData, size_t pSize);
|
/aosp12/frameworks/native/libs/ui/include/ui/ |
H A D | Region.h | 80 const Region merge(const Rect& rhs) const; 86 const Region merge(const Region& rhs) const; 102 const Region merge(const Region& rhs, int dx, int dy) const WARN_UNUSED; 189 return merge(rhs);
|
/aosp12/frameworks/native/libs/ui/include_vndk/ui/ |
H A D | Region.h | 80 const Region merge(const Rect& rhs) const; 86 const Region merge(const Region& rhs) const; 102 const Region merge(const Region& rhs, int dx, int dy) const WARN_UNUSED; 189 return merge(rhs);
|
/aosp12/frameworks/native/include/ui/ |
H A D | Region.h | 80 const Region merge(const Rect& rhs) const; 86 const Region merge(const Region& rhs) const; 102 const Region merge(const Region& rhs, int dx, int dy) const WARN_UNUSED; 189 return merge(rhs);
|
/aosp12/frameworks/native/libs/ui/ |
H A D | Fence.cpp | 90 sp<Fence> Fence::merge(const char* name, const sp<Fence>& f1, in merge() function in android::Fence 116 sp<Fence> Fence::merge(const String8& name, const sp<Fence>& f1, in merge() function in android::Fence 118 return merge(name.string(), f1, f2); in merge()
|
/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/pm/ |
H A D | UserRestrictionsUtilsTest.java | 55 UserRestrictionsUtils.merge(a, b); in testMerge() 59 UserRestrictionsUtils.merge(a, null); in testMerge() 64 UserRestrictionsUtils.merge(a, a); in testMerge()
|