/system/core/libmemunreachable/ |
ProcessMappings.cpp | 31 char map_buffer[1024]; local 32 snprintf(map_buffer, sizeof(map_buffer), "/proc/%d/maps", pid); 33 android::base::unique_fd fd(open(map_buffer, O_RDONLY)); 38 LineBuffer line_buf(fd, map_buffer, sizeof(map_buffer));
|
/system/extras/memory_replay/ |
NativeInfo.cpp | 34 static char map_buffer[65535]; local 35 LineBuffer line_buf(smaps_fd, map_buffer, sizeof(map_buffer));
|
/external/google-breakpad/src/google_breakpad/processor/ |
source_line_resolver_interface.h | 65 const string &map_buffer) = 0;
|
source_line_resolver_base.h | 79 const string &map_buffer);
|
/hardware/qcom/display/msm8084/libgralloc/ |
ionalloc.h | 47 virtual int map_buffer(void **pBase, size_t size,
|
memalloc.h | 68 virtual int map_buffer(void **pBase, size_t size,
|
mapper.cpp | 67 int err = memalloc->map_buffer(&mappedAddress, size, 79 err = memalloc->map_buffer(&mappedAddress, size,
|
ionalloc.cpp | 139 int IonAlloc::map_buffer(void **pBase, size_t size, size_t offset, int fd) function in class:IonAlloc
|
/hardware/qcom/display/msm8226/libgralloc/ |
ionalloc.h | 47 virtual int map_buffer(void **pBase, unsigned int size,
|
memalloc.h | 68 virtual int map_buffer(void **pBase, unsigned int size,
|
mapper.cpp | 67 int err = memalloc->map_buffer(&mappedAddress, size, 79 err = memalloc->map_buffer(&mappedAddress, size,
|
/hardware/qcom/display/msm8909/libgralloc/ |
ionalloc.h | 47 virtual int map_buffer(void **pBase, unsigned int size,
|
memalloc.h | 68 virtual int map_buffer(void **pBase, unsigned int size,
|
mapper.cpp | 74 err = memalloc->map_buffer(&mappedAddress, size, 90 err = memalloc->map_buffer(&mappedAddress, size,
|
/hardware/qcom/display/msm8960/libgralloc/ |
ionalloc.h | 47 virtual int map_buffer(void **pBase, size_t size,
|
memalloc.h | 68 virtual int map_buffer(void **pBase, size_t size,
|
mapper.cpp | 66 int err = memalloc->map_buffer(&mappedAddress, size, 78 err = memalloc->map_buffer(&mappedAddress, size,
|
/hardware/qcom/display/msm8994/libgralloc/ |
ionalloc.h | 47 virtual int map_buffer(void **pBase, unsigned int size,
|
memalloc.h | 68 virtual int map_buffer(void **pBase, unsigned int size,
|
mapper.cpp | 67 int ret = memalloc->map_buffer(&mappedAddress, size, 97 err = memalloc->map_buffer(&mappedAddress, size,
|
/hardware/qcom/display/msm8996/libgralloc/ |
ionalloc.h | 47 virtual int map_buffer(void **pBase, unsigned int size,
|
memalloc.h | 69 virtual int map_buffer(void **pBase, unsigned int size,
|
mapper.cpp | 77 err = memalloc->map_buffer(&mappedAddress, size, 93 err = memalloc->map_buffer(&mappedAddress, size,
|
/external/google-breakpad/src/processor/ |
source_line_resolver_base.cc | 187 const CodeModule *module, const string &map_buffer) { 198 size_t memory_buffer_size = map_buffer.size() + 1; 206 memcpy(memory_buffer, map_buffer.c_str(), map_buffer.size()); 207 memory_buffer[map_buffer.size()] = '\0';
|
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
radeon_fbo.c | 170 rrb->map_buffer = malloc(w * h * 4); 173 untiled_s8z24_map = rrb->map_buffer; 187 *out_map = rrb->map_buffer; 208 rrb->map_buffer = malloc(w * h * 2); 212 untiled_z16_map = rrb->map_buffer; 226 *out_map = rrb->map_buffer; 353 if (!rrb->map_buffer) 357 uint32_t *untiled_s8z24_map = rrb->map_buffer; 376 free(rrb->map_buffer); 377 rrb->map_buffer = NULL [all...] |