Home
last modified time | relevance | path

Searched refs:cmdline (Results 1 – 5 of 5) sorted by relevance

/bootable/recovery/tests/unit/
Dcommands_test.cpp201 ASSERT_EQ(input, command.cmdline()); in TEST()
221 ASSERT_EQ(input, command.cmdline()); in TEST()
237 ASSERT_EQ(input, command.cmdline()); in TEST()
258 ASSERT_EQ(input, command.cmdline()); in TEST()
280 ASSERT_EQ(input, command.cmdline()); in TEST()
300 ASSERT_EQ(input, command.cmdline()); in TEST()
316 ASSERT_EQ(input, command.cmdline()); in TEST()
332 ASSERT_EQ(input, command.cmdline()); in TEST()
348 ASSERT_EQ(input, command.cmdline()); in TEST()
/bootable/recovery/updater/include/private/
Dcommands.h305 Command(Type type, size_t index, std::string cmdline, PatchInfo patch, TargetInfo target, in Command() argument
309 cmdline_(std::move(cmdline)), in Command()
315 Command(Type type, size_t index, std::string cmdline, HashTreeInfo hash_tree_info);
333 const std::string& cmdline() const { in cmdline() function
/bootable/recovery/updater/
Dblockimg.cpp532 std::string cmdline; member
554 LOG(INFO) << "unexpected contents of source blocks in cmd:\n" << params.cmdline; in PrintHashForCorruptedSourceBlocks()
566 LOG(ERROR) << "failed to parse source range in cmd:\n" << params.cmdline; in PrintHashForCorruptedSourceBlocks()
573 LOG(ERROR) << "failed to parse source range in cmd:\n" << params.cmdline; in PrintHashForCorruptedSourceBlocks()
586 LOG(ERROR) << "Failed to parse range in " << params.cmdline; in PrintHashForCorruptedSourceBlocks()
1427 << params.cmdline << "]"; in PerformCommandDiff()
1495 LOG(ERROR) << "Invaild arguments count in hash computation " << params.cmdline; in PerformCommandComputeHashTree()
1502 LOG(ERROR) << "Invalid hash tree ranges in " << params.cmdline; in PerformCommandComputeHashTree()
1508 LOG(ERROR) << "Invalid source ranges in " << params.cmdline; in PerformCommandComputeHashTree()
1514 LOG(ERROR) << "Invalid hash algorithm in " << params.cmdline; in PerformCommandComputeHashTree()
[all …]
Dcommands.cpp40 Command::Command(Type type, size_t index, std::string cmdline, HashTreeInfo hash_tree_info) in Command() argument
43 cmdline_(std::move(cmdline)), in Command()
377 os << command.index() << ": " << command.cmdline(); in operator <<()
/bootable/recovery/recovery_ui/
Dui.cpp156 std::string cmdline; in Init() local
157 if (android::base::ReadFileToString("/proc/cmdline", &cmdline)) { in Init()
158 is_bootreason_recovery_ui_ = cmdline.find("bootreason=recovery_ui") != std::string::npos; in Init()