Searched refs:flags_platform (Results 1 – 5 of 5) sorted by relevance
/external/llvm-project/lldb/source/Plugins/Platform/OpenBSD/ |
D | PlatformOpenBSD.cpp | 206 uint64_t flags_platform = 0; in GetMmapArgumentList() local 209 flags_platform |= MAP_PRIVATE; in GetMmapArgumentList() 211 flags_platform |= MAP_ANON; in GetMmapArgumentList() 213 MmapArgList args({addr, length, prot, flags_platform, fd, offset}); in GetMmapArgumentList()
|
/external/llvm-project/lldb/source/Plugins/Platform/NetBSD/ |
D | PlatformNetBSD.cpp | 240 uint64_t flags_platform = 0; in GetMmapArgumentList() local 243 flags_platform |= MAP_PRIVATE; in GetMmapArgumentList() 245 flags_platform |= MAP_ANON; in GetMmapArgumentList() 247 MmapArgList args({addr, length, prot, flags_platform, fd, offset}); in GetMmapArgumentList()
|
/external/llvm-project/lldb/source/Plugins/Platform/FreeBSD/ |
D | PlatformFreeBSD.cpp | 280 uint64_t flags_platform = 0; in GetMmapArgumentList() local 283 flags_platform |= MAP_PRIVATE; in GetMmapArgumentList() 285 flags_platform |= MAP_ANON; in GetMmapArgumentList() 287 MmapArgList args({addr, length, prot, flags_platform, fd, offset}); in GetMmapArgumentList()
|
/external/llvm-project/lldb/source/Plugins/Platform/Linux/ |
D | PlatformLinux.cpp | 273 uint64_t flags_platform = 0; in GetMmapArgumentList() local 277 flags_platform |= MAP_PRIVATE; in GetMmapArgumentList() 279 flags_platform |= map_anon; in GetMmapArgumentList() 281 MmapArgList args({addr, length, prot, flags_platform, fd, offset}); in GetMmapArgumentList()
|
/external/llvm-project/lldb/source/Target/ |
D | Platform.cpp | 1308 uint64_t flags_platform = 0; in GetMmapArgumentList() local 1310 flags_platform |= MAP_PRIVATE; in GetMmapArgumentList() 1312 flags_platform |= MAP_ANON; in GetMmapArgumentList() 1314 MmapArgList args({addr, length, prot, flags_platform, fd, offset}); in GetMmapArgumentList()
|