Searched defs:Process (Results 1 – 6 of 6) sorted by relevance
156 struct Process { struct157 pid_t pid = -1;158 bool initialized = false;159 bool died = false;183 bool ReadProcess(Process& process, std::vector<JITDebugInfo>* debug_info); argument
77 void Process() { in Process() function
75 bool SimpleperfETMProvider::Process(const fs::path& inputPath, const fs::path& outputPath, in Process() function in android::profcollectd::SimpleperfETMProvider
51 class Process(object): class
285 constexpr Process(Process&& other) : h_(std::exchange(other.h_, nullptr)) {} in Process() function681 constexpr explicit Process(pid_t pid) : pid_(pid) {} in Process() function682 constexpr Process(Process&& other) : pid_(std::exchange(other.pid_, -1)) {} in Process() function
310 bool Options::Process(const std::vector<const char*>& args, std::vector<char*>* child_args) { in Process() function in android::gtest_extras::Options