Searched refs:map_result (Results 1 – 2 of 2) sorted by relevance
217 void* map_result = mmap(nullptr, mmap_size, PROT_READ, MAP_SHARED, fd, 0); in LoadPath() local218 if (map_result == MAP_FAILED) { in LoadPath()223 auto property_info_area = reinterpret_cast<PropertyInfoArea*>(map_result); in LoadPath()226 munmap(map_result, mmap_size); in LoadPath()232 mmap_base_ = map_result; in LoadPath()
124 auto map_result = function_map_->FindFunction(args); in RunCommand() local126 if (!map_result) { in RunCommand()127 result = Error() << "Cannot find command: " << map_result.error(); in RunCommand()129 result = RunBuiltinFunction(map_result->second, args, context_); in RunCommand()