Home
last modified time | relevance | path

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

/DragonOS/kernel/src/driver/block/
H A Dmod.rs1 pub mod cache; module
/DragonOS/user/
H A DMakefile44 …dadk --config-dir dadk/config --cache-dir $(DADK_CACHE_DIR) --dragonos-dir $(ROOT_PATH)/bin/sysroo…
45 …dadk --config-dir dadk/config --cache-dir $(DADK_CACHE_DIR) --dragonos-dir $(ROOT_PATH)/bin/sysroo…
/DragonOS/
H A D.gitignore20 .cache
/DragonOS/user/port/binutils/2.38/
H A DREADME.md18 docker build --no-cache -t dragonos-binutils-build .
/DragonOS/kernel/src/perf/
H A Dmod.rs304 if let Some(cache) = page_cache { in perf_event_open()
305 cache.set_inode(Arc::downgrade(&(perf_event.clone() as _)))?; in perf_event_open()
/DragonOS/kernel/src/driver/disk/ahci/
H A Dmod.rs8 use crate::driver::block::cache::cached_block_device::BlockCache;
/DragonOS/docs/community/ChangeLog/V0.1.x/
H A DV0.1.3.md63 - update: 更新github workflow,增加cache,加快build check的速度
242 * 更改build_gcc_toolchain.sh中的-save参数名为-save-cache
H A DV0.1.10.md60 - feat(fs): BlockCache-read cache支持 (#521)
587 BlockCache-read cache支持 (#521)
589 支持block cache的读缓存
H A DV0.1.9.md882 修复cache-toolchain.yml的格式问题 (#464)
1883 * cache toolchain yml
/DragonOS/kernel/src/libs/
H A Drbtree.rs1827 let mut cache = vec![]; in test_rev_iter() localVariable
1829 cache.push(e.0.clone()); in test_rev_iter()
1831 assert_eq!(&cache, &vec![3, 2, 1]); in test_rev_iter()
/DragonOS/kernel/src/driver/base/block/
H A Dblock_device.rs13 block::cache::{cached_block_device::BlockCache, BlockCacheError, BLOCK_SIZE},