Home
last modified time | relevance | path

Searched refs:msync (Results 1 – 25 of 110) sorted by relevance

12345

/third_party/rust/crates/rustix/src/mm/
Dmod.rs6 mod msync; module
19 pub use msync::{msync, MsyncFlags};
Dmsync.rs30 pub unsafe fn msync(addr: *mut c_void, len: usize, flags: MsyncFlags) -> io::Result<()> { in msync() function
31 backend::mm::syscalls::msync(addr, len, flags) in msync()
/third_party/ltp/testcases/kernel/mce-test/tsrc/
Dtsimpleinj.c114 expecterr("msync expect error", msync(page, PS, MS_SYNC)); in main()
126 expecterr("hole msync expect error", msync(page, PS, MS_SYNC)); in main()
151 expecterr("rfp msync expect error", msync(page, PS, MS_SYNC)); in main()
/third_party/rust/crates/rustix/tests/mm/
Dmmap.rs152 use rustix::mm::{mmap_anonymous, msync, munmap, MapFlags, MsyncFlags, ProtFlags}; in test_msync()
158 msync(addr, 8192, MsyncFlags::SYNC).unwrap(); in test_msync()
159 msync(addr, 8192, MsyncFlags::ASYNC).unwrap(); in test_msync()
/third_party/ltp/testcases/open_posix_testsuite/conformance/definitions/sys/mman_h/
D15-1-buildonly.c25 dummyvar = msync; in dummyfcn()
/third_party/musl/src/mman/
Dmsync.c4 int msync(void *start, size_t len, int flags) in msync() function
/third_party/musl/porting/liteos_a/user/src/mman/
Dmsync.c5 int msync(void *start, size_t len, int flags) in msync() function
/third_party/musl/libc-test/src/functionalext/supplement/mman/
Dmsync.c47 int rev = msync(map, TEST_MS_SIZE, MS_ASYNC); in msync_0100()
Dtest_src_functionalext_supplement_mman.gni19 "msync",
/third_party/rust/crates/rustix/src/backend/libc/mm/
Dsyscalls.rs54 pub(crate) unsafe fn msync(addr: *mut c::c_void, len: usize, flags: MsyncFlags) -> io::Result<()> { in msync() function
55 let err = c::msync(addr, len, flags.bits()); in msync()
/third_party/node/deps/v8/src/codegen/arm/
Dcpu-arm.cc32 msync(start, size, MS_SYNC | MS_INVALIDATE_ICACHE); in FlushICache()
/third_party/musl/libc-test/src/functionalext/supplement/mman/mman_gtest/
Dmman_msync_test.cpp29 int rev = msync(map, testDataSize, MS_ASYNC);
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/mlockall/
D3-7.c62 result = msync(page_ptr, page_size, MS_SYNC | MS_INVALIDATE); in main()
D3-6.c71 result = msync(page_ptr, page_size, MS_SYNC | MS_INVALIDATE); in main()
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/mmap/
D12-1.c73 msync(pa, size, MS_SYNC); in main()
D7-2.c74 if (msync(pa, size, MS_SYNC) != 0) { in main()
D7-1.c74 if (msync(pa, size, MS_SYNC) != 0) { in main()
/third_party/musl/libc-test/src/api/
Dsys_mman.c51 {int(*p)(void*,size_t,int) = msync;} in f()
/third_party/libinput/test/
Dvalgrind.suppressions44 msync(start)
/third_party/ltp/testcases/kernel/syscalls/msync/
Dmsync02.c94 TEST(msync(addr, page_sz, MS_INVALIDATE)); in main()
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/munmap/
D4-1.c88 if ((rc = msync(pa, size, MS_SYNC)) != 0) { in main()
/third_party/ltp/testcases/kernel/io/ltp-aiodio/
Dcommon_sparse.h51 msync(p, size, MS_SYNC); in dirty_freeblocks()
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/
Dmman.h118 int msync (void *, size_t, int);
/third_party/musl/include/sys/
Dmman.h120 int msync (void *, size_t, int);
/third_party/musl/porting/uniproton/kernel/include/sys/
Dmman.h118 int msync (void *, size_t, int);

12345