Home
last modified time | relevance | path

Searched refs:utype (Results 1 – 2 of 2) sorted by relevance

/commonlibrary/memory_utils/libpurgeablemem/cpp/src/
Dpurgeable_mem.cpp87 unsigned int utype = MAP_ANONYMOUS; in CreatePurgeableData_() local
88 utype |= (UxpteIsEnabled() ? MAP_PURGEABLE : MAP_PRIVATE); in CreatePurgeableData_()
89 int type = static_cast<int>(utype); in CreatePurgeableData_()
/commonlibrary/memory_utils/libpurgeablemem/c/src/
Dpurgeable_mem_c.c433 unsigned int utype = MAP_ANONYMOUS; in GetMapType() local
434 utype |= (UxpteIsEnabled() ? MAP_PURGEABLE : MAP_PRIVATE); in GetMapType()
435 int type = (int) utype; in GetMapType()