Home
last modified time | relevance | path

Searched refs:command_string (Results 1 – 3 of 3) sorted by relevance

/aosp12/frameworks/native/cmds/dumpstate/
H A DDumpstateUtil.cpp258 std::string command_string; in RunCommandToFd() local
261 command_string += kSuPath; in RunCommandToFd()
263 command_string += " root "; in RunCommandToFd()
267 command_string += args[i + starting_index]; in RunCommandToFd()
269 command_string += " "; in RunCommandToFd()
274 const char* command = command_string.c_str(); in RunCommandToFd()
288 MYLOGI(logging_message.c_str(), command_string.c_str()); in RunCommandToFd()
300 dprintf(fd, "%s: skipped on dry run\n", command_string.c_str()); in RunCommandToFd()
/aosp12/system/logging/logd/
H A DCommandListener.h41 #define LogCmd(name, command_string) \ argument
45 : FrameworkCommand(#command_string), parent_(parent) {} \
/aosp12/bootable/recovery/updater/
H A Dblockimg.cpp143 static bool UpdateLastCommandIndex(size_t command_index, const std::string& command_string) { in UpdateLastCommandIndex() argument
146 std::string content = std::to_string(command_index) + "\n" + command_string; in UpdateLastCommandIndex()