Home
last modified time | relevance | path

Searched defs:Process (Results 1 – 4 of 4) sorted by relevance

/system/extras/simpleperf/
DJITDebugReader.h128 struct Process { struct
129 pid_t pid = -1;
130 bool initialized = false;
131 bool died = false;
155 void ReadProcess(Process& process, std::vector<JITDebugInfo>* debug_info); argument
/system/extras/simpleperf/scripts/inferno/
Ddata_types.py51 class Process(object): class
/system/core/adb/
Dsysdeps.h285 constexpr Process(Process&& other) : h_(std::exchange(other.h_, nullptr)) {} in Process() function
677 constexpr explicit Process(pid_t pid) : pid_(pid) {} in Process() function
678 constexpr Process(Process&& other) : pid_(std::exchange(other.pid_, -1)) {} in Process() function
/system/testing/gtest_extras/
DOptions.cpp294 bool Options::Process(const std::vector<const char*>& args, std::vector<char*>* child_args) { in Process() function in android::gtest_extras::Options