Home
last modified time | relevance | path

Searched refs:start_ (Results 1 – 4 of 4) sorted by relevance

/bionic/libc/malloc_debug/
DMapData.h44 : start_(start), end_(end), offset_(offset), name_(name, name_len), flags_(flags) {} in MapEntry()
46 explicit MapEntry(uintptr_t pc) : start_(pc), end_(pc) {} in MapEntry()
59 uintptr_t start() const { return start_; } in start()
68 uintptr_t start_;
DMapData.cpp88 if (__builtin_add_overflow(start_, SELFMAG, &end_addr) || end_addr >= end_) { in Init()
93 struct iovec src_io = {.iov_base = reinterpret_cast<void*>(start_), .iov_len = SELFMAG}; in Init()
111 struct iovec src_io = {.iov_base = reinterpret_cast<void*>(start_), .iov_len = sizeof(ehdr)}; in GetLoadBias()
118 uintptr_t addr = start_ + ehdr.e_phoff; in GetLoadBias()
/bionic/libc/bionic/
Dgrp_pwd_file.cpp203 size_t size = end_ - start_ + 1; in Unmap()
204 munmap(const_cast<char*>(start_), size); in Unmap()
206 start_ = nullptr; in Unmap()
214 *start = start_; in GetFile()
228 *start = start_; in GetFile()
248 start_ = static_cast<const char*>(map_result); in DoMmap()
249 end_ = start_ + mmap_size - 1; in DoMmap()
Dgrp_pwd_file.h66 const char* start_ = nullptr; variable