Home
last modified time | relevance | path

Searched refs:CreateAction (Results 1 – 9 of 9) sorted by relevance

/system/extras/memory_replay/tests/
DActionTest.cpp27 Action* action = Action::CreateAction(0x1234, "malloc", line, memory); in TEST()
42 Action* action = Action::CreateAction(0x1234, "malloc", line, memory); in TEST()
49 Action* action = Action::CreateAction(0x1234, "free", line, memory); in TEST()
62 Action* action = Action::CreateAction(0x1234, "calloc", line, memory); in TEST()
77 Action* action = Action::CreateAction(0, "free", line, memory); in TEST()
88 Action* action = Action::CreateAction(0x1234, "calloc", line1, memory); in TEST()
92 action = Action::CreateAction(0x1234, "calloc", line2, memory); in TEST()
99 Action* action = Action::CreateAction(0x1234, "realloc", line, memory); in TEST()
112 action = Action::CreateAction(0x1234, "realloc", null_line, memory); in TEST()
125 Action* action = Action::CreateAction(0x1234, "realloc", line1, memory); in TEST()
[all …]
DThreadsTest.cpp35 thread->CreateAction(0x1234, "thread_done", ""); in TEST()
69 thread1->CreateAction(0x1234, "thread_done", ""); in TEST()
70 thread2->CreateAction(0x1235, "thread_done", ""); in TEST()
71 thread3->CreateAction(0x1236, "thread_done", ""); in TEST()
97 thread->CreateAction(0x1234 + i, "malloc", "100"); in TEST()
101 thread->CreateAction(0x1234 + i, "free", ""); in TEST()
106 thread->CreateAction(0x1236, "thread_done", ""); in TEST()
DThreadTest.cpp106 Action* action = thread.CreateAction(0x1234, "thread_done", ""); in TEST()
/system/extras/memory_replay/
DThread.cpp60 Action* Thread::CreateAction(uintptr_t key_pointer, const char* type, const char* line) { in CreateAction() function in Thread
61 return Action::CreateAction(key_pointer, type, line, action_memory_); in CreateAction()
DAction.h38 static Action* CreateAction(uintptr_t key_pointer, const char* type,
DThread.h39 Action* CreateAction(uintptr_t key_pointer, const char* type, const char* line);
Dmain.cpp112 Action* action = thread->CreateAction(key_pointer, type, line + line_pos); in ProcessDump()
DThreads.cpp154 threads_[i].CreateAction(0, "thread_done", nullptr); in FinishAll()
DAction.cpp179 Action* Action::CreateAction(uintptr_t key_pointer, const char* type, in CreateAction() function in Action