Home
last modified time | relevance | path

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

/system/extras/simpleperf/
DJITDebugReader.h156 struct Process { struct
157 pid_t pid = -1;
158 bool initialized = false;
159 bool died = false;
183 bool ReadProcess(Process& process, std::vector<JITDebugInfo>* debug_info); argument
/system/extras/profcollectd/libprofcollectd/
Dinterface.cpp77 void Process() { in Process() function
Dsimpleperf_etm_provider.cpp75 bool SimpleperfETMProvider::Process(const fs::path& inputPath, const fs::path& outputPath, in Process() function in android::profcollectd::SimpleperfETMProvider
/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
681 constexpr explicit Process(pid_t pid) : pid_(pid) {} in Process() function
682 constexpr Process(Process&& other) : pid_(std::exchange(other.pid_, -1)) {} in Process() function
/system/testing/gtest_extras/
DOptions.cpp310 bool Options::Process(const std::vector<const char*>& args, std::vector<char*>* child_args) { in Process() function in android::gtest_extras::Options