Searched defs:ProcessEntry (Results 1 - 2 of 2) sorted by relevance

/external/libchrome/base/process/
H A Dprocess_iterator.cc11 ProcessEntry::ProcessEntry() : pid_(0), ppid_(0), gid_(0) {} function in class:base::ProcessEntry
12 ProcessEntry::ProcessEntry(const ProcessEntry& other) = default;
13 ProcessEntry::~ProcessEntry() {}
16 const ProcessEntry* ProcessIterator::NextProcessEntry() {
28 while (const ProcessEntry* process_entry = NextProcessEntry()) {
H A Dprocess_iterator.h36 struct ProcessEntry : public PROCESSENTRY32 { struct in namespace:base
42 struct BASE_EXPORT ProcessEntry {
43 ProcessEntry();
44 ProcessEntry(const ProcessEntry& other);
45 ~ProcessEntry();
68 virtual bool Includes(const ProcessEntry& entry) const = 0;
80 typedef std::list<ProcessEntry> ProcessEntries;
90 const ProcessEntry* NextProcessEntry();
92 // Takes a snapshot of all the ProcessEntry foun
[all...]

Completed in 286 milliseconds