Searched defs:Ashmem (Results 1 – 4 of 4) sorted by relevance
59 pub type Ashmem; typedef63 pub fn CloseAshmem(self: &Ashmem) -> (); in CloseAshmem()66 pub fn MapAshmem(self: &Ashmem, mapType: i32) -> bool; in MapAshmem()75 pub fn UnmapAshmem(self: &Ashmem) -> (); in UnmapAshmem()78 pub fn SetProtection(self: &Ashmem, protType: i32) -> bool; in SetProtection()91 self: &Ashmem, in WriteToAshmem()109 pub struct Ashmem { struct110 c_ashmem: SharedPtr<ffi::Ashmem>, argument114 impl Ashmem { impl116 pub fn new(c_ashmem: SharedPtr<ffi::Ashmem>) -> Ashmem { in new()[all …]
35 class Ashmem; variable
96 sptr<Ashmem> & /* buffer */) in Read()
148 Ashmem::Ashmem(int fd, int32_t size) : memoryFd_(fd), memorySize_(size), flag_(0), startAddr_(nullp… in Ashmem() function in OHOS::Ashmem