HomeSort by relevance Sort by last modified time
    Searched full:code_cache (Results 1 - 25 of 26) sorted by null

1 2

  /art/runtime/jit/
jit_code_cache_test.cc 35 std::unique_ptr<JitCodeCache> code_cache(
37 ASSERT_TRUE(code_cache.get() != nullptr) << error_msg;
38 ASSERT_TRUE(code_cache->CodeCachePtr() != nullptr);
39 ASSERT_EQ(code_cache->CodeCacheSize(), 0u);
40 ASSERT_GT(code_cache->CodeCacheRemain(), 0u);
41 ASSERT_TRUE(code_cache->DataCachePtr() != nullptr);
42 ASSERT_EQ(code_cache->DataCacheSize(), 0u);
43 ASSERT_GT(code_cache->DataCacheRemain(), 0u);
44 ASSERT_EQ(code_cache->CodeCacheRemain() + code_cache->DataCacheRemain(), kSize)
    [all...]
  /system/core/libnativebridge/tests/
CodeCacheCreate_test.cpp 25 // Tests that the bridge initialization creates the code_cache if it doesn't
28 // Make sure that code_cache does not exists
40 // Check that code_cache was created
CodeCacheExists_test.cpp 25 // Tests that the bridge is initialized without errors if the code_cache already
28 // Make sure that code_cache does not exists
33 // Create the code_cache
NativeBridge2Signal_test.cpp 38 // Clean-up code_cache
NativeBridgeTest.h 26 constexpr const char* kCodeCache = "./code_cache";
CompleteFlow_test.cpp 43 // Clean-up code_cache
  /art/compiler/jit/
jit_compiler.cc 210 JitCodeCache* const code_cache = runtime->GetJit()->GetCodeCache(); local
217 const uint8_t* base = code_cache->CodeCachePtr();
223 uint8_t* const mapping_table_ptr = code_cache->AddDataArray(
228 uint8_t* const vmap_table_ptr = code_cache->AddDataArray(
233 uint8_t* const gc_map_ptr = code_cache->AddDataArray(
240 uint8_t* const code_reserve = code_cache->ReserveCode(self, reserve_size);
261 << PrettySize(code_cache->CodeCacheSize()) << ": " << reinterpret_cast<void*>(code_ptr)
  /art/test/115-native-bridge/
expected.txt 1 Code cache exists: './code_cache'.
  /frameworks/native/cmds/installd/
installd.h 64 #define CODE_CACHE_DIR_POSTFIX "/code_cache"
  /external/v8/src/
heap-snapshot-generator.cc     [all...]
objects.cc     [all...]
factory.cc 791 Handle<CodeCache> code_cache = local
793 code_cache->set_default_cache(*empty_fixed_array(), SKIP_WRITE_BARRIER);
794 code_cache->set_normal_type_cache(*undefined_value(), SKIP_WRITE_BARRIER);
795 return code_cache;
    [all...]
heap-snapshot-generator.h 378 void ExtractCodeCacheReferences(int entry, CodeCache* code_cache);
serialize.cc     [all...]
objects-printer.cc 461 os << "\n - code cache: " << Brief(code_cache());
    [all...]
objects.h 533 V(CODE_CACHE, CodeCache, code_cache) \
    [all...]
objects-inl.h     [all...]
  /art/runtime/
instrumentation.cc 95 jit::JitCodeCache* code_cache = jit->GetCodeCache(); local
96 if (code_cache->ContainsCodePtr(old_code_ptr)) {
98 code_cache->SaveCompiledCode(method, old_code_ptr);
    [all...]
  /frameworks/multidex/library/src/android/support/multidex/
MultiDex.java 63 private static final String SECONDARY_FOLDER_NAME = "code_cache" + File.separator +
  /system/core/libnativebridge/
native_bridge.cc 97 static constexpr const char* kCodeCacheDir = "code_cache";
  /frameworks/base/core/java/android/app/backup/
BackupAgent.java 461 // and code_cache dirs.
472 Log.w(TAG, "lib, cache, code_cache, and no_backup files are not backed up");
    [all...]
  /frameworks/support/v4/java/android/support/v4/content/
ContextCompat.java 437 return createFilesDir(new File(appInfo.dataDir, "code_cache"));
  /frameworks/rs/cpu_ref/
rsCpuScript.cpp 161 // reinstalled, which would already clear the code_cache/ directory.
  /prebuilts/sdk/current/support/multidex/library/libs/
android-support-multidex.jar 
  /frameworks/base/core/java/android/app/
ContextImpl.java 511 mCodeCacheDir = new File(getDataDirFile(), "code_cache");
    [all...]

Completed in 1292 milliseconds

1 2