Home
last modified time | relevance | path

Searched refs:cache (Results 1 – 25 of 240) sorted by relevance

12345678910

/system/bt/common/
Dlru_unittest.cc33 LruCache<int, int> cache(3, "testing"); // capacity = 3; in TEST() local
34 cache.Put(1, 10); in TEST()
35 EXPECT_EQ(cache.Size(), 1); in TEST()
36 EXPECT_FALSE(cache.Put(2, 20)); in TEST()
37 EXPECT_FALSE(cache.Put(3, 30)); in TEST()
38 EXPECT_EQ(cache.Size(), 3); in TEST()
41 EXPECT_TRUE(cache.Get(1, value)); in TEST()
43 EXPECT_TRUE(cache.Get(2, value)); in TEST()
45 EXPECT_TRUE(cache.Get(3, value)); in TEST()
47 EXPECT_EQ(cache.Size(), 3); in TEST()
[all …]
/system/bt/gd/common/
Dlru_cache_test.cc30 LruCache<int, int> cache(3); // capacity = 3; in TEST() local
31 EXPECT_EQ(cache.size(), 0); in TEST()
32 EXPECT_EQ(cache.find(42), cache.end()); in TEST()
33 cache.clear(); // should not crash in TEST()
34 EXPECT_EQ(cache.find(42), cache.end()); in TEST()
35 EXPECT_FALSE(cache.contains(42)); in TEST()
36 EXPECT_FALSE(cache.extract(42)); in TEST()
72 LruCache<int, int> cache(2); in TEST() local
73 cache.insert_or_assign(1, 10); in TEST()
74 cache.insert_or_assign(2, 20); in TEST()
[all …]
/system/core/libutils/
DLruCache_test.cpp154 LruCache<SimpleKey, StringValue> cache(100); in TEST_F() local
156 EXPECT_EQ(nullptr, cache.get(0)); in TEST_F()
157 EXPECT_EQ(0u, cache.size()); in TEST_F()
161 LruCache<SimpleKey, StringValue> cache(100); in TEST_F() local
163 cache.put(1, "one"); in TEST_F()
164 cache.put(2, "two"); in TEST_F()
165 cache.put(3, "three"); in TEST_F()
166 EXPECT_STREQ("one", cache.get(1)); in TEST_F()
167 EXPECT_STREQ("two", cache.get(2)); in TEST_F()
168 EXPECT_STREQ("three", cache.get(3)); in TEST_F()
[all …]
/system/core/liblog/
Dproperties.cpp54 struct cache { struct
60 struct cache cache; argument
64 static int check_cache(struct cache* cache) { in check_cache() argument
65 return cache->pinfo && __system_property_serial(cache->pinfo) != cache->serial; in check_cache()
71 static void refresh_cache(struct cache_char* cache, const char* key) { in refresh_cache() argument
74 if (!cache->cache.pinfo) { in refresh_cache()
75 cache->cache.pinfo = __system_property_find(key); in refresh_cache()
76 if (!cache->cache.pinfo) { in refresh_cache()
80 cache->cache.serial = __system_property_serial(cache->cache.pinfo); in refresh_cache()
81 __system_property_read(cache->cache.pinfo, 0, buf); in refresh_cache()
[all …]
/system/extras/simpleperf/
DCallChainJoiner_test.cpp26 static bool JoinCallChain(LRUCache& cache, uint32_t tid, in JoinCallChain() argument
33 cache.AddCallChain(tid, tmp_ip, tmp_sp); in JoinCallChain()
38 LRUCache cache(sizeof(CacheNode) * 2, 1); in TEST() local
39 ASSERT_EQ(cache.Stat().max_node_count, 2u); in TEST()
43 ASSERT_TRUE(JoinCallChain(cache, 0, ip, sp, ip, sp)); in TEST()
44 ASSERT_TRUE(JoinCallChain(cache, 1, ip, sp, ip, sp)); in TEST()
45 ASSERT_EQ(cache.Stat().used_node_count, 2u); in TEST()
46 ASSERT_EQ(cache.Stat().recycled_node_count, 0u); in TEST()
47 ASSERT_NE(cache.FindNode(0, ip[0], sp[0]), nullptr); in TEST()
48 ASSERT_NE(cache.FindNode(1, ip[0], sp[0]), nullptr); in TEST()
[all …]
/system/sepolicy/prebuilts/api/27.0/public/
Dotapreopt_slot.te4 # from /data/ota to /data/dalvik-cache.
10 # The otapreopt_slot renames the OTA dalvik-cache to the regular dalvik-cache, and cleans up
17 # Delete old content of the dalvik-cache.
26 # Needed so we can move artifacts into /data/dalvik-cache/dalvik-cache.
/system/sepolicy/prebuilts/api/28.0/public/
Dotapreopt_slot.te4 # from /data/ota to /data/dalvik-cache.
10 # The otapreopt_slot renames the OTA dalvik-cache to the regular dalvik-cache, and cleans up
17 # Delete old content of the dalvik-cache.
26 # Needed so we can move artifacts into /data/dalvik-cache/dalvik-cache.
/system/sepolicy/prebuilts/api/26.0/public/
Dotapreopt_slot.te4 # from /data/ota to /data/dalvik-cache.
10 # The otapreopt_slot renames the OTA dalvik-cache to the regular dalvik-cache, and cleans up
17 # Delete old content of the dalvik-cache.
26 # Needed so we can move artifacts into /data/dalvik-cache/dalvik-cache.
Dcppreopts.te10 # Allow cppreopts copy files into the dalvik-cache
21 # write into dalvik-cache
/system/sepolicy/private/
Dmediaprovider.te12 # DownloadProvider uses /cache.
15 # /cache is a symlink to /data/cache on some devices. Allow reading the link.
17 # mediaprovider searches through /cache looking for orphans
18 # Ignore denials to /cache/recovery and /cache/backup.
Dotapreopt_slot.te2 # from /data/ota to /data/dalvik-cache.
11 # The otapreopt_slot renames the OTA dalvik-cache to the regular dalvik-cache, and cleans up
18 # Delete old content of the dalvik-cache.
27 # Needed so we can move artifacts into /data/dalvik-cache/dalvik-cache.
Dfile_contexts_overlayfs4 /cache/overlay/(system|product)/upper u:object_r:system_file:s0
5 /cache/overlay/(vendor|odm)/upper u:object_r:vendor_file:s0
6 /cache/overlay/oem/upper u:object_r:vendor_file:s0
/system/sepolicy/prebuilts/api/29.0/private/
Dotapreopt_slot.te2 # from /data/ota to /data/dalvik-cache.
11 # The otapreopt_slot renames the OTA dalvik-cache to the regular dalvik-cache, and cleans up
18 # Delete old content of the dalvik-cache.
27 # Needed so we can move artifacts into /data/dalvik-cache/dalvik-cache.
Dmediaprovider.te12 # DownloadProvider uses /cache.
15 # /cache is a symlink to /data/cache on some devices. Allow reading the link.
17 # mediaprovider searches through /cache looking for orphans
18 # Ignore denials to /cache/recovery and /cache/backup.
Dfile_contexts_overlayfs4 /cache/overlay/(system|product)/upper u:object_r:system_file:s0
5 /cache/overlay/(vendor|odm)/upper u:object_r:vendor_file:s0
6 /cache/overlay/oem/upper u:object_r:vendor_file:s0
/system/sepolicy/prebuilts/api/28.0/private/
Dmediaprovider.te12 # DownloadProvider uses /cache.
15 # /cache is a symlink to /data/cache on some devices. Allow reading the link.
17 # mediaprovider searches through /cache looking for orphans
18 # Ignore denials to /cache/recovery and /cache/backup.
/system/sepolicy/prebuilts/api/30.0/private/
Dotapreopt_slot.te2 # from /data/ota to /data/dalvik-cache.
11 # The otapreopt_slot renames the OTA dalvik-cache to the regular dalvik-cache, and cleans up
18 # Delete old content of the dalvik-cache.
27 # Needed so we can move artifacts into /data/dalvik-cache/dalvik-cache.
Dmediaprovider.te12 # DownloadProvider uses /cache.
15 # /cache is a symlink to /data/cache on some devices. Allow reading the link.
17 # mediaprovider searches through /cache looking for orphans
18 # Ignore denials to /cache/recovery and /cache/backup.
Dfile_contexts_overlayfs4 /cache/overlay/(system|product)/upper u:object_r:system_file:s0
5 /cache/overlay/(vendor|odm)/upper u:object_r:vendor_file:s0
6 /cache/overlay/oem/upper u:object_r:vendor_file:s0
/system/bt/gd/storage/
Dlegacy_config_file.cc43 ConfigCache cache(temp_devices_capacity, Device::kLinkKeyProperties); in Read() local
67 cache.SetProperty(section, tokens[0], std::move(tokens[1])); in Read()
70 return cache; in Read()
73 bool LegacyConfigFile::Write(const ConfigCache& cache) { in Write() argument
74 return os::WriteToFile(path_, cache.SerializeToLegacyFormat()); in Write()
/system/extras/tests/pagingtest/
Dpageinout_test.c12 int pageinout_test(int test_runs, bool cache, unsigned long long file_size) { in pageinout_test() argument
47 if (!cache) { in pageinout_test()
88 printf("%scached page-in: %llu MB/s\n", cache ? "" : "un", in pageinout_test()
91 printf("%scached page-out (clean): %llu MB/s\n", cache ? "" : "un", in pageinout_test()
Dpagingtest.h17 int pageinout_test(int test_runs, bool cache, unsigned long long file_size);
18 int thrashing_test(int test_runs, bool cache);
Dthrashing_test.c14 int thrashing_test(int test_runs, bool cache) { in thrashing_test() argument
49 if (!cache) { in thrashing_test()
72 printf("%scached thrashing: %llu MB/s\n", cache ? "" : "un", in thrashing_test()
/system/sepolicy/prebuilts/api/27.0/private/
Dmediaprovider.te12 # DownloadProvider uses /cache.
15 # /cache is a symlink to /data/cache on some devices. Allow reading the link.
/system/extras/simpleperf/doc/
Dexecutable_commands_reference.md38 instructions have executed, or how many cache misses have happened.
100 List of hw-cache events:
114 the ARM PMU on the device. The kernel has wrapped part of them into hardware events and hw-cache
148 # Stat event cache-references and cache-misses.
149 $ simpleperf stat -e cache-references,cache-misses -p 11904 --duration 10
159 # Stat using event cache-references, cache-references:u,....
160 $ simpleperf stat -p 7394 -e cache-references,cache-references:u,cache-references:k \
161 -e cache-misses,cache-misses:u,cache-misses:k,instructions --duration 1
164 4,331,018 cache-references # 4.861 M/sec (87%)
165 3,064,089 cache-references:u # 3.439 M/sec (87%)
[all …]

12345678910