/art/build/apex/ |
D | art_postinstall_hook.sh | 23 if [ ! -d /data/ota/dalvik-cache ] ; then 33 FILES=`find /data/ota/dalvik-cache -type f` 40 rm -rf /data/ota/dalvik-cache 46 rm -rf /data/dalvik-cache/* || exit 102 47 mv /data/ota/dalvik-cache/* /data/dalvik-cache/ || exit 103 48 restorecon -R -F /data/dalvik-cache/* || exit 104
|
D | art_preinstall_hook.sh | 29 mkdir -p /data/ota/dalvik-cache || exit 102 31 mount -o bind /data/ota/dalvik-cache /data/dalvik-cache || exit 103 37 mkdir -p /data/ota/dalvik-cache/$ARCH || exit 104 38 rm -rf /data/ota/dalvik-cache/$ARCH/* || exit 105 46 FILES=`find /data/dalvik-cache -type f`
|
D | art_preinstall_hook_boot.sh | 66 --oat-file=/data/dalvik-cache/$DEX2OAT_TARGET_ARCH/system@framework@boot.oat \ 67 --oat-location=/data/dalvik-cache/$DEX2OAT_TARGET_ARCH/system@framework@boot.oat \ 68 --image=/data/dalvik-cache/$DEX2OAT_TARGET_ARCH/system@framework@boot.art --base=0x70000000 \
|
D | art_preinstall_hook_system_server.sh | 67 --boot-image=/data/dalvik-cache/system@framework@boot.art \ 70 --oat-file=/data/dalvik-cache/$DEX2OAT_TARGET_ARCH/$DALVIK_CACHE_NAME \
|
D | art_apex_boot_integrity.sh | 26 FILES=`find /data/dalvik-cache -type f -a -name 'system@framework@boot*' -o name 'system@framework@…
|
/art/runtime/verifier/ |
D | reg_type_test.cc | 41 RegTypeCache cache(true, allocator); in TEST_F() local 42 const RegType& ref_type_const_0 = cache.FromCat1Const(10, true); in TEST_F() 43 const RegType& ref_type_const_1 = cache.FromCat1Const(10, true); in TEST_F() 44 const RegType& ref_type_const_2 = cache.FromCat1Const(30, true); in TEST_F() 45 const RegType& ref_type_const_3 = cache.FromCat1Const(30, false); in TEST_F() 50 const RegType& ref_type_const_wide_0 = cache.FromCat2ConstHi(50, true); in TEST_F() 51 const RegType& ref_type_const_wide_1 = cache.FromCat2ConstHi(50, true); in TEST_F() 54 const RegType& ref_type_const_wide_2 = cache.FromCat2ConstLo(50, true); in TEST_F() 55 const RegType& ref_type_const_wide_3 = cache.FromCat2ConstLo(50, true); in TEST_F() 56 const RegType& ref_type_const_wide_4 = cache.FromCat2ConstLo(55, true); in TEST_F() [all …]
|
/art/test/717-integer-value-of/src/ |
D | Main.java | 44 Integer[] cache = (Integer[]) cacheField.get(integerCacheClass); in testValueOfArg() 45 Integer[] alt_cache = new Integer[cache.length]; in testValueOfArg() 46 System.arraycopy(cache, 0, alt_cache, 0, cache.length); in testValueOfArg() 54 cacheField.set(integerCacheClass, cache); in testValueOfArg() 94 Integer[] cache = (Integer[]) cacheField.get(integerCacheClass); in testValueOfConst() local 96 Integer old42 = cache[42 - low]; in testValueOfConst() 97 cache[42 - low] = new Integer(42); in testValueOfConst() 105 cache[42 - low] = old42; in testValueOfConst()
|
/art/test/667-jit-jni-stub/ |
D | jit_jni_stub_test.cc | 33 jit::JitCodeCache* cache = Runtime::Current()->GetJit()->GetCodeCache(); in isNextJitGcFull() local 34 MutexLock mu(self, cache->lock_); in isNextJitGcFull() 35 return cache->ShouldDoFullCollection(); in isNextJitGcFull() 52 jit::JitCodeCache* cache = Runtime::Current()->GetJit()->GetCodeCache(); in Java_Main_jitGc() local 54 cache->GarbageCollectCache(Thread::Current()); in Java_Main_jitGc()
|
/art/test/708-jit-cache-churn/ |
D | info.txt | 1 Tests JIT cache for page permission updates and CPU cache inconsistencies. Only runs when test runn…
|
/art/runtime/jit/ |
D | profiling_info.cc | 83 InlineCache* cache = GetInlineCache(dex_pc); in AddInvokeInfo() local 85 mirror::Class* existing = cache->classes_[i].Read<kWithoutReadBarrier>(); in AddInvokeInfo() 97 auto atomic_root = reinterpret_cast<Atomic<GcRoot<mirror::Class>>*>(&cache->classes_[i]); in AddInvokeInfo()
|
D | profiling_info.h | 104 InlineCache* cache = &cache_[i]; in ClearGcRootsInInlineCaches() local 105 memset(&cache->classes_[0], in ClearGcRootsInInlineCaches()
|
/art/test/707-checker-invalid-profile/ |
D | expected.txt | 1 Invalid inline cache in profile file.
|
/art/test/648-inline-caches-unresolved/ |
D | info.txt | 1 Test for inlining with inline cache into an unresolved method.
|
/art/test/643-checker-bogus-ic/ |
D | info.txt | 1 Verify the compiler can handle a bogus inline cache in a profile.
|
/art/compiler/optimizing/ |
D | select_generator.cc | 99 ScopedArenaSafeMap<HInstruction*, HSelect*> cache( in Run() local 200 auto it = cache.find(condition); in Run() 201 if (it == cache.end()) { in Run() 202 cache.Put(condition, select); in Run()
|
D | intrinsics.cc | 213 ObjPtr<mirror::ObjectArray<mirror::Object>> cache = in ComputeIntegerValueOfLocations() local 215 if (cache == nullptr) { in ComputeIntegerValueOfLocations() 219 if (!CheckIntegerCache(self, runtime->GetClassLinker(), boot_image_live_objects, cache)) { in ComputeIntegerValueOfLocations() 224 DCHECK(CheckIntegerCache(self, runtime->GetClassLinker(), boot_image_live_objects, cache)); in ComputeIntegerValueOfLocations() 236 static_cast<uint32_t>(cache->GetLength())) { in ComputeIntegerValueOfLocations()
|
/art/test/1003-metadata-section-strings/ |
D | info.txt | 1 Test that releasing the metadata cache doesn't break reference equality of string literals.
|
/art/test/666-dex-cache-itf/ |
D | info.txt | 1 We used to put wrong entries in the dex cache, which would
|
/art/test/613-inlining-dex-cache/ |
D | info.txt | 2 wrongly update the dex cache of a class loader.
|
/art/test/612-jit-dex-cache/ |
D | info.txt | 2 wrongly update the dex cache of a class loader.
|
/art/test/155-java-set-resolved-type/ |
D | info.txt | 2 type in the dex cache while it was not in the class loader's class table.
|
/art/test/606-erroneous-class/jasmin-multidex/ |
D | ClassA.j | 21 ; Obtain the ErrClass type from Dex cache of the first Dex file. Note that 26 ; the Dex cache of the second Dex file.
|
/art/test/626-const-class-linking/ |
D | info.txt | 3 clearing the dex cache type array.
|
/art/test/144-static-field-sigquit/ |
D | info.txt | 3 Tests that unresolved classes are not put into the dex cache by the verifier.
|
/art/tools/build/ |
D | var_cache.sh | 166 echo "Usage: $0 [--debug] [--show-commands] [--dump-cache] [--var <name>] [--var <name2>...]"
|