Home | History | Annotate | Download | only in memory_replay

Lines Matching refs:Action

28 #include "Action.h"
39 class EndThreadAction : public Action {
48 class AllocAction : public Action {
171 size_t Action::MaxActionSize() {
179 Action* Action::CreateAction(uintptr_t key_pointer, const char* type,
181 Action* action = nullptr;
183 action = new (action_memory) MallocAction(key_pointer, line);
185 action = new (action_memory) FreeAction(key_pointer);
187 action = new (action_memory) CallocAction(key_pointer, line);
189 action = new (action_memory) ReallocAction(key_pointer, line);
191 action = new (action_memory) MemalignAction(key_pointer, line);
193 action = new (action_memory) EndThreadAction();
196 if (action == nullptr || action->IsError()) {
199 return action;