Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Platform/OpenBSD/
H A DPlatformOpenBSD.cpp210 uint64_t flags_platform = 0; in GetMmapArgumentList() local
213 flags_platform |= MAP_PRIVATE; in GetMmapArgumentList()
215 flags_platform |= MAP_ANON; in GetMmapArgumentList()
217 MmapArgList args({addr, length, prot, flags_platform, fd, offset}); in GetMmapArgumentList()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/
H A DPlatformFreeBSD.cpp314 uint64_t flags_platform = 0; in GetMmapArgumentList() local
317 flags_platform |= MAP_PRIVATE; in GetMmapArgumentList()
319 flags_platform |= MAP_ANON; in GetMmapArgumentList()
321 MmapArgList args({addr, length, prot, flags_platform, fd, offset}); in GetMmapArgumentList()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Platform/NetBSD/
H A DPlatformNetBSD.cpp359 uint64_t flags_platform = 0; in GetMmapArgumentList() local
362 flags_platform |= MAP_PRIVATE; in GetMmapArgumentList()
364 flags_platform |= MAP_ANON; in GetMmapArgumentList()
366 MmapArgList args({addr, length, prot, flags_platform, fd, offset}); in GetMmapArgumentList()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DPlatform.cpp1355 uint64_t flags_platform = 0; in GetMmapArgumentList() local
1357 flags_platform |= MAP_PRIVATE; in GetMmapArgumentList()
1359 flags_platform |= MAP_ANON; in GetMmapArgumentList()
1361 MmapArgList args({addr, length, prot, flags_platform, fd, offset}); in GetMmapArgumentList()