OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CreateCommandInstance
(Results
1 - 12
of
12
) sorted by null
/system/extras/simpleperf/
command_test.cpp
31
TEST(command,
CreateCommandInstance
) {
32
ASSERT_TRUE(
CreateCommandInstance
("mock1") == nullptr);
34
ASSERT_TRUE(
CreateCommandInstance
("mock1") != nullptr);
36
ASSERT_TRUE(
CreateCommandInstance
("mock1") == nullptr);
cmd_dumprecord_test.cpp
23
return
CreateCommandInstance
("dump");
cmd_help.cpp
47
std::unique_ptr<Command> cmd =
CreateCommandInstance
(args[0]);
75
std::unique_ptr<Command> cmd =
CreateCommandInstance
(cmd_name);
cmd_list_test.cpp
24
list_cmd =
CreateCommandInstance
("list");
command.h
66
std::unique_ptr<Command>
CreateCommandInstance
(const std::string& cmd_name);
command.cpp
61
std::unique_ptr<Command>
CreateCommandInstance
(const std::string& cmd_name) {
132
std::unique_ptr<Command> command =
CreateCommandInstance
(args[0]);
cmd_report_sample_test.cpp
26
return
CreateCommandInstance
("report-sample");
cmd_kmem_test.cpp
32
return
CreateCommandInstance
("kmem");
cmd_stat_test.cpp
31
return
CreateCommandInstance
("stat");
cmd_report_test.cpp
33
return
CreateCommandInstance
("report");
478
return
CreateCommandInstance
("record");
cmd_kmem.cpp
468
std::unique_ptr<Command> record_cmd =
CreateCommandInstance
("record");
cmd_record_test.cpp
43
return
CreateCommandInstance
("record");
Completed in 3003 milliseconds