/ohos5.0/docs/zh-cn/device-dev/reference/hdi-apis/display/ |
H A D | interface_i_mapper_v10.md | 23 | [FlushCache](#flushcache) ([in] NativeBuffer handle) | 刷新Cache,刷新Cache里的内容到内存并且使Cache里的内容无效。 | 37 刷新Cache,刷新Cache里的内容到内存并且使Cache里的内容无效。 45 | handle | 待刷新Cache的handle指针。 |
|
H A D | interface_i_allocator_v10.md | 35 根据GUI图形系统传递的参数分配内存,分配的内存根据类型可分为共享内存、Cache内存和非Cache内存等。
|
/ohos5.0/docs/zh-cn/device-dev/kernel/ |
H A D | kernel-small-basic-memory-virtual.md | 15 | Normal zone | 加载内核代码段、数据段、堆和栈的地址区间。 | Cache | 16 | high mem zone | 可以分配连续的虚拟内存,但其所映射的物理内存不一定连续。 | Cache | 22 | 代码段 | 用户态代码段地址区间。 | Cache | 23 | 堆 | 用户态堆地址区间。 | Cache | 24 | 栈 | 用户态栈地址区间。 | Cache | 25 | 共享库 | 用于加载用户态共享库的地址区间,包括mmap所映射的区间。 | Cache |
|
H A D | kernel-small-debug-shell-net-ipdebug.md | 33 || Neighbor Cache Entries || 39 || Destination Cache Entries ||
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/common/ |
H A D | rs_common_def.cpp | 29 using Cache = std::vector<char*>; typedef in OHOS::Rosen::__anona1e65aa80110::MemAllocater 44 std::unordered_map<size_t, Cache> memCaches_; 71 Cache* cachePtr = nullptr; in Alloc() 74 Cache tempCache; in Alloc() 75 memCaches_.insert(std::pair<size_t, Cache>(size, tempCache)); in Alloc()
|
/ohos5.0/docs/en/application-dev/reference/common/ |
H A D | _j_s_v_m___v_m_info.md | 23 | uint32_t [cachedDataVersionTag](#cacheddataversiontag) | Cache data version tag. | 44 Cache data version tag.
|
/ohos5.0/docs/en/device-dev/kernel/ |
H A D | kernel-small-debug-shell-net-ipdebug.md | 33 || Neighbor Cache Entries || 39 || Destination Cache Entries ||
|
H A D | kernel-small-basic-memory-virtual.md | 15 … zone | Addresses for loading the kernel code segment, data segment, heap, and stack.| Cache | 16 …cating contiguous virtual memory. The mapped physical memory blocks may not be contiguous.| Cache | 22 | Code snippet| User-mode code segment address range.| Cache | 23 | Heap| User-mode heap address range.| Cache | 24 | Stack| User-mode stack address range.| Cache | 25 …ange for loading the user-mode shared library, including the address range mapped by mmap.| Cache |
|
/ohos5.0/docs/zh-cn/release-notes/changelogs/v4.0-beta1/ |
H A D | changelogs-web.md | 57 headerKey:"Cache-Control", 105 headerKey:"Cache-Control",
|
/ohos5.0/docs/zh-cn/release-notes/changelogs/OpenHarmony_4.0.7.3/ |
H A D | changelog-web.md | 58 headerKey:"Cache-Control", 105 headerKey:"Cache-Control",
|
/ohos5.0/commonlibrary/rust/ylong_json/src/reader/ |
H A D | io_reader.rs | 36 cache: Option<Cache>, 40 struct Cache { struct 45 impl Cache { implementation 193 let mut cache = Cache::new(); in start_caching()
|
H A D | slice_reader.rs | 28 cache: Option<Cache>, // A cache for storing accumulated characters. 33 struct Cache(usize); struct 107 self.cache = Some(Cache(self.index)); in start_caching()
|
/ohos5.0/docs/zh-cn/application-dev/web/ |
H A D | web-cookie-and-data-storage-mgmt.md | 44 在访问网站时,网络资源请求是相对比较耗时的。开发者可以通过Cache、Dom Storage等手段将资源保存到本地,以提升访问同一网站的速度。 47 ### Cache subsection
|
H A D | web-incognito-mode.md | 4 …e)设置为true,来开启Web组件的隐私模式。 当使用隐私模式时,浏览网页时的Cookie、 Cache Data等数据不会保存在本地的持久化文件,当隐私模式的Web组件被销毁时,Cookie、… 54 隐私模式提供了一系列接口,用于操作地理位置、Cookie以及Cache Data。
|
/ohos5.0/docs/en/application-dev/napi/ |
H A D | use-jsvm-about-code-cache.md | 1 # Accelerating Compilation Using a Code Cache 3 ## Introduction to Code Cache
|
H A D | jsvm-optimizations.md | 40 …d up compilation. For details, see [Accelerating Compilation Using a Code Cache](use-jsvm-about-co… 42 #### Hot Startup: Creating a Code Cache with Adequate Code 57 #### Reducing the Code Cache Impact in Cold Startup
|
/ohos5.0/foundation/arkui/ace_engine/test/mock/core/render/ |
H A D | mock_pixmap_image.cpp | 34 void PixelMapImage::Cache(const std::string& key) {} in Cache() function in OHOS::Ace::NG::PixelMapImage
|
H A D | mock_skia_image.cpp | 30 void DrawingImage::Cache(const std::string& key) {} in Cache() function in OHOS::Ace::NG::DrawingImage
|
/ohos5.0/docs/en/release-notes/changelogs/v4.0-beta1/ |
H A D | changelogs-web.md | 57 headerKey:"Cache-Control", 105 headerKey:"Cache-Control",
|
/ohos5.0/docs/en/release-notes/changelogs/OpenHarmony_4.0.7.3/ |
H A D | changelog-web.md | 58 headerKey:"Cache-Control", 105 headerKey:"Cache-Control",
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/render/adapter/ |
H A D | pixelmap_image.h | 42 void Cache(const std::string& key) override;
|
H A D | skia_image.h | 85 void Cache(const std::string& key) override;
|
/ohos5.0/docs/zh-cn/application-dev/napi/ |
H A D | jsvm-introduction.md | 32 - Code Cache:编译后的JS代码的缓存,能提升JS代码执行的启动速度。
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/render/ |
H A D | canvas_image.h | 100 virtual void Cache(const std::string& key) {} in Cache() function
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/render/adapter/rosen/ |
H A D | drawing_image.h | 84 void Cache(const std::string& key) override;
|