HomeSort by relevance Sort by last modified time
    Searched refs:map_result (Results 1 - 4 of 4) sorted by null

  /bionic/libc/system_properties/
contexts_serialized.cpp 48 void* const map_result = mmap(nullptr, context_nodes_mmap_size, PROT_READ | PROT_WRITE, local
50 if (map_result == MAP_FAILED) {
54 prctl(PR_SET_VMA, PR_SET_VMA_ANON_NAME, map_result, context_nodes_mmap_size,
57 context_nodes_ = reinterpret_cast<ContextNode*>(map_result);
prop_area.cpp 122 void* const map_result = mmap(nullptr, pa_size_, PROT_READ, MAP_SHARED, fd, 0); local
123 if (map_result == MAP_FAILED) {
127 prop_area* pa = reinterpret_cast<prop_area*>(map_result);
140 prop_area* map_result = map_fd_ro(fd);
143 return map_result;
  /bionic/libc/bionic/
grp_pwd_file.cpp 243 void* map_result = mmap(nullptr, mmap_size, PROT_READ, MAP_SHARED, fd, 0); local
246 if (map_result == MAP_FAILED) {
250 start_ = static_cast<const char*>(map_result);
254 munmap(map_result, mmap_size);
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
ValueMap.h 136 std::pair<typename MapT::iterator, bool> map_result= local
138 return std::make_pair(iterator(map_result.first), map_result.second);

Completed in 2441 milliseconds