/third_party/musl/src/mman/ |
D | posix_madvise.c | 5 int posix_madvise(void *addr, size_t len, int advice) in posix_madvise() argument 7 if (advice == MADV_DONTNEED) return 0; in posix_madvise() 8 return -__syscall(SYS_madvise, addr, len, advice); in posix_madvise()
|
D | madvise.c | 4 int __madvise(void *addr, size_t len, int advice) in __madvise() argument 6 return syscall(SYS_madvise, addr, len, advice); in __madvise()
|
/third_party/musl/porting/liteos_a/user/src/mman/ |
D | posix_madvise.c | 6 int posix_madvise(void *addr, size_t len, int advice) in posix_madvise() argument 9 if (advice == MADV_DONTNEED) return 0; in posix_madvise() 10 return -__syscall(SYS_madvise, addr, len, advice); in posix_madvise()
|
/third_party/musl/src/fcntl/ |
D | posix_fadvise.c | 4 int posix_fadvise(int fd, off_t base, off_t len, int advice) in posix_fadvise() argument 10 return -__syscall(SYS_fadvise, fd, advice, in posix_fadvise() 14 __SYSCALL_LL_E(len), advice); in posix_fadvise()
|
/third_party/musl/porting/liteos_a/user/src/fcntl/ |
D | posix_fadvise.c | 6 int posix_fadvise(int fd, off_t base, off_t len, int advice) in posix_fadvise() argument 13 return -__syscall(SYS_fadvise, fd, advice, in posix_fadvise() 17 __SYSCALL_LL_E(len), advice); in posix_fadvise()
|
/third_party/rust/crates/rustix/src/backend/libc/mm/ |
D | syscalls.rs | 21 pub(crate) fn madvise(addr: *mut c::c_void, len: usize, advice: Advice) -> io::Result<()> { in madvise() 26 if let Advice::LinuxDontNeed = advice { in madvise() 32 let err = unsafe { c::posix_madvise(addr, len, advice as c::c_int) }; in madvise() 44 if let Advice::DontNeed = advice { in madvise() 49 unsafe { ret(c::madvise(addr, len, advice as c::c_int)) } in madvise()
|
/third_party/rust/crates/rustix/src/mm/ |
D | madvise.rs | 33 pub unsafe fn madvise(addr: *mut c_void, len: usize, advice: Advice) -> io::Result<()> { in madvise() 34 backend::mm::syscalls::madvise(addr, len, advice) in madvise()
|
/third_party/rust/crates/rustix/src/fs/ |
D | fadvise.rs | 17 pub fn fadvise<Fd: AsFd>(fd: Fd, offset: u64, len: u64, advice: Advice) -> io::Result<()> { in fadvise() 18 backend::fs::syscalls::fadvise(fd.as_fd(), offset, len, advice) in fadvise()
|
/third_party/ltp/testcases/kernel/syscalls/madvise/ |
D | madvise08.c | 154 static pid_t run_child(int advice) in run_child() argument 159 advice == MADV_DONTDUMP ? "MADV_DONTDUMP" : "MADV_DODUMP"; in run_child() 163 if (madvise(fmem, FMEMSIZE, advice) == -1) { in run_child()
|
D | madvise02.c | 63 int advice; member 91 switch (tc->advice) { in tcases_filter() 177 TEST(madvise(*(tc->addr), st.st_size, tc->advice)); in advice_test()
|
D | madvise01.c | 36 int advice; member 100 TEST(madvise(*(tc->addr), st.st_size, tc->advice)); in verify_madvise()
|
/third_party/rust/crates/rustix/src/backend/linux_raw/mm/ |
D | syscalls.rs | 24 pub(crate) fn madvise(addr: *mut c::c_void, len: usize, advice: Advice) -> io::Result<()> { in madvise() 30 c_uint(advice as c::c_uint) in madvise()
|
/third_party/PyYAML/packaging/build/ |
D | libyaml.sh | 7 git config --global advice.detachedHead false
|
/third_party/gstreamer/gst_libav/ |
D | README.md | 22 The above recommendations are not legal advice, and you are responsible for
|
/third_party/rust/crates/rustix/src/backend/linux_raw/fs/ |
D | syscalls.rs | 324 pub(crate) fn fadvise(fd: BorrowedFd<'_>, pos: u64, len: u64, advice: Advice) -> io::Result<()> { in fadvise() 332 advice, in fadvise() 346 advice, in fadvise() 365 advice in fadvise() 380 advice in fadvise() 390 advice in fadvise()
|
/third_party/rust/crates/nom/.github/ |
D | ISSUE_TEMPLATE.md | 5 nom, so following the advice here will make sure I will quickly understand
|
/third_party/mesa3d/include/CL/ |
D | cl_ext_intel.h | 673 cl_mem_advice_intel advice, 683 cl_mem_advice_intel advice,
|
/third_party/json/cmake/ |
D | download_test_data.cmake | 13 …COMMAND test -d json_test_data || ${GIT_EXECUTABLE} clone -c advice.detachedHead=false --branch v$…
|
/third_party/curl/docs/ |
D | GOVERNANCE.md | 71 forward. Contributing could be to provide advice, debug a problem, file a bug 153 ### Merge advice
|
/third_party/gn/src/gn/ |
D | command_check.cc | 51 advice on fixing problems. Targets can also opt-out of checking, see
|
/third_party/python/Misc/NEWS.d/ |
D | 3.6.0a2.rst | 558 update_idletasks solution to four test files. Record this additional advice 568 Revise idle_test/README.txt with advice about avoiding tk warning messages 569 from tests. Apply advice to several IDLE tests.
|
/third_party/skia/site/docs/dev/contrib/ |
D | bazel.md | 21 start using `tag="..."` or `branch="..."` and then follow the advice of Bazel
|
/third_party/node/deps/uvwasi/include/ |
D | uvwasi.h | 103 uvwasi_advice_t advice);
|
/third_party/skia/third_party/externals/angle2/include/CL/ |
D | cl_ext.h | 1567 cl_mem_advice_intel advice, 1577 cl_mem_advice_intel advice,
|
/third_party/rust/crates/rustix/src/backend/linux_raw/ |
D | conv.rs | 540 fn from(advice: crate::fs::Advice) -> Self { in from() 541 c_uint(advice as c::c_uint) in from()
|