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

  /external/libchrome/base/memory/
protected_memory_unittest.cc 35 PROTECTED_MEMORY_SECTION ProtectedMemory<int> init;
38 static ProtectedMemory<int>::Initializer I(&init, 4);
42 PROTECTED_MEMORY_SECTION ProtectedMemory<Data> data;
67 ProtectedMemory<Data> writable_data;
72 ProtectedMemory<Data> data;
77 ProtectedMemory<void (*)(void)> data;
96 PROTECTED_MEMORY_SECTION ProtectedMemory<BadIcall> icall_pm1;
99 static ProtectedMemory<BadIcall>::Initializer I(
110 PROTECTED_MEMORY_SECTION ProtectedMemory<int (*)(int)> icall_pm2;
113 static ProtectedMemory<int (*)(int)>::Initializer I
    [all...]
protected_memory.h 7 // by attackers. ProtectedMemory is a simple wrapper around platform-specific
16 // ProtectedMemory is a container class intended to hold a single variable in
23 // Instances of ProtectedMemory must be declared in the PROTECTED_MEMORY_SECTION
33 // static PROTECTED_MEMORY_SECTION base::ProtectedMemory<Items> items;
43 // PROTECTED_MEMORY_SECTION base::ProtectedMemory<FnPtr> fnPtr;
46 // // initializer for a ProtectedMemory variable. It implicitly sets the
48 // static base::ProtectedMemory<FnPtr>::Initializer I(&fnPtr,
122 class ProtectedMemory {
124 ProtectedMemory() = default;
132 // Helper class for creating simple ProtectedMemory static initializers
    [all...]
protected_memory_cfi.h 30 // ProtectedMemory from cfi-icall checking. It's not secure to use directly, it
54 // These functions can be used to call function pointers in ProtectedMemory
61 // ProtectedMemory<void (*)(int)> p;
65 auto UnsanitizedCfiCall(const ProtectedMemory<T>& PM) {
73 // ProtectedMemory<S> p;
77 auto UnsanitizedCfiCall(const ProtectedMemory<T>& PM, Member member) {
  /external/libchrome/mojo/public/c/system/
thunks.cc 33 base::ProtectedMemory<MojoGetSystemThunksFunction> g_get_thunks;
36 PROTECTED_MEMORY_SECTION base::ProtectedMemory<MojoSystemThunks> g_thunks;

Completed in 344 milliseconds