OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:workUnit
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/tools/aapt/
WorkQueue.cpp
38
status_t WorkQueue::schedule(
WorkUnit
*
workUnit
, size_t backlog) {
63
mWorkUnits.add(
workUnit
);
116
WorkUnit
*
workUnit
;
126
workUnit
= mWorkUnits.itemAt(0);
141
bool shouldContinue =
workUnit
->run();
142
delete
workUnit
;
WorkQueue.h
36
class
WorkUnit
{
38
WorkUnit
() { }
39
virtual ~
WorkUnit
() { }
70
status_t schedule(
WorkUnit
*
workUnit
, size_t backlog = 2);
114
Vector<
WorkUnit
*> mWorkUnits;
Completed in 69 milliseconds