Searched defs:Process (Results 1 – 4 of 4) sorted by relevance
128 struct Process { struct129 pid_t pid = -1;130 bool initialized = false;131 bool died = false;155 void ReadProcess(Process& process, std::vector<JITDebugInfo>* debug_info); argument
51 class Process(object): class
285 constexpr Process(Process&& other) : h_(std::exchange(other.h_, nullptr)) {} in Process() function677 constexpr explicit Process(pid_t pid) : pid_(pid) {} in Process() function678 constexpr Process(Process&& other) : pid_(std::exchange(other.pid_, -1)) {} in Process() function
294 bool Options::Process(const std::vector<const char*>& args, std::vector<char*>* child_args) { in Process() function in android::gtest_extras::Options