OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ProcessEntry
(Results
1 - 3
of
3
) sorted by null
/external/libchrome/base/process/
process_iterator.cc
11
ProcessEntry
::
ProcessEntry
() : pid_(0), ppid_(0), gid_(0) {}
12
ProcessEntry
::
ProcessEntry
(const
ProcessEntry
& other) = default;
13
ProcessEntry
::~
ProcessEntry
() = default;
16
const
ProcessEntry
* ProcessIterator::NextProcessEntry() {
28
while (const
ProcessEntry
* process_entry = NextProcessEntry()) {
process_iterator.h
36
struct
ProcessEntry
: public PROCESSENTRY32 {
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
found
[
all
...]
kill.cc
19
while (const
ProcessEntry
* entry = iter.NextProcessEntry()) {
Completed in 70 milliseconds