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

1 2

  /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
NativeBridgeTest.h 26 constexpr const char* kCodeCache = "./code_cache";
27 constexpr const char* kCodeCacheStatFail = "./code_cache/temp";
NativeBridge2Signal_test.cpp 38 // Clean-up code_cache
NativeBridge3CreateNamespace_test.cpp 36 // Clean-up code_cache
NativeBridge3GetError_test.cpp 35 // Clean-up code_cache
NativeBridge3InitAnonymousNamespace_test.cpp 35 // Clean-up code_cache
NativeBridge3IsPathSupported_test.cpp 35 // Clean-up code_cache
NativeBridge3LoadLibraryExt_test.cpp 35 // Clean-up code_cache
NativeBridge3UnloadLibrary_test.cpp 35 // Clean-up code_cache
CodeCacheStatFail_test.cpp 26 // Tests that the bridge is initialized without errors if the code_cache is
CompleteFlow_test.cpp 43 // Clean-up code_cache
  /art/test/708-jit-cache-churn/
jit.cc 46 jit::JitCodeCache* code_cache = jit->GetCodeCache(); local
52 bool removed = code_cache->RemoveMethod(method, static_cast<bool>(releaseMemory));
  /art/test/566-polymorphic-inlining/
polymorphic_inline.cc 32 jit::JitCodeCache* code_cache = jit->GetCodeCache(); local
39 if (code_cache->ContainsPc(pc)) {
  /art/test/common/
runtime_state.cc 196 jit::JitCodeCache* code_cache = jit->GetCodeCache(); local
199 code_cache->SetGarbageCollectCode(false);
202 if (code_cache->ContainsPc(pc)) {
262 jit::JitCodeCache* code_cache = jit->GetCodeCache(); local
267 code_cache->GetProfiledMethods(unused_locations, unused_vector);
  /frameworks/native/cmds/installd/
CacheTracker.cpp 65 auto codeCachePath = read_path_inode(path, "code_cache", kXattrInodeCodeCache);
175 loadItemsFrom(read_path_inode(path, "code_cache", kXattrInodeCodeCache));
182 // TODO: sort code_cache last
InstalldNativeService.cpp 79 static constexpr const char* CODE_CACHE_DIR_POSTFIX = "/code_cache";
374 prepare_app_cache_dir(path, "code_cache", 02771, uid, cacheGid)) {
381 restorecon_app_data_lazy(path, "code_cache", seInfo, uid, existing)) {
388 write_path_inode(path, "code_cache", kXattrInodeCodeCache)) {
405 prepare_app_cache_dir(path, "code_cache", 02771, uid, cacheGid)) {
412 restorecon_app_data_lazy(path, "code_cache", seInfo, uid, existing)) {
523 path = read_path_inode(path, "code_cache", kXattrInodeCodeCache);
659 || !strcmp(child->fts_name, "code_cache")) {
    [all...]
  /art/compiler/
compiler.h 78 jit::JitCodeCache* code_cache ATTRIBUTE_UNUSED,
  /art/compiler/jit/
jit_compiler.cc 186 JitCodeCache* const code_cache = runtime->GetJit()->GetCodeCache(); local
188 self, code_cache, method, osr, jit_logger_.get());
  /art/runtime/jit/
profiling_info.cc 75 jit::JitCodeCache* code_cache = Runtime::Current()->GetJit()->GetCodeCache(); local
76 return code_cache->AddProfilingInfo(self, method, entries, retry_allocation) != nullptr;
  /external/v8/src/heap/
object-stats.cc 464 FixedArray* code_cache = map_obj->code_cache(); local
465 if (code_cache->IsCodeCacheHashTable()) {
466 RecordHashTableHelper(map_obj, CodeCacheHashTable::cast(code_cache),
469 RecordFixedArrayHelper(map_obj, code_cache, MAP_CODE_CACHE_SUB_TYPE, 0);
  /art/runtime/gc/space/
dlmalloc_space.cc 330 jit::JitCodeCache* code_cache = runtime->GetJit()->GetCodeCache(); local
331 if (code_cache->OwnsSpace(mspace)) {
332 return code_cache->MoreCore(mspace, increment);
  /external/v8/src/snapshot/
partial-serializer.cc 55 DCHECK(Map::cast(obj)->code_cache() == obj->GetHeap()->empty_fixed_array());
  /art/compiler/optimizing/
optimizing_compiler.cc 339 jit::JitCodeCache* code_cache,
    [all...]
  /art/runtime/
art_method.cc 643 jit::JitCodeCache* code_cache = jit->GetCodeCache(); local
644 OatQuickMethodHeader* method_header = code_cache->LookupMethodHeader(pc, this);
649 DCHECK(!code_cache->ContainsPc(reinterpret_cast<const void*>(pc)))
    [all...]

Completed in 1002 milliseconds

1 2