Home | History | Annotate | Download | only in task

Lines Matching defs:TaskGeneric

22 TaskGeneric::TaskGeneric(TaskType type):
29 bool deleteChildInstance(TaskGeneric* child, void* /*data*/)
35 TaskGeneric::~TaskGeneric()
41 bool TaskGeneric::addChild(TaskGeneric* child)
48 bool TaskGeneric::forEachChild(bool (*runForEachChild)(TaskGeneric* child, void* data), void* data)
50 std::list<TaskGeneric*>::iterator i = mChildren.begin();
51 std::list<TaskGeneric*>::iterator end = mChildren.end();
60 TaskGeneric* TaskGeneric::getParent()
65 TaskCase* TaskGeneric::getTestCase()
67 TaskGeneric* task = this;
76 LOGE("TaskGeneric::getTestCase no TaskCase found!");
80 void TaskGeneric::setParent(TaskGeneric* parent)
82 LOGD("TaskGeneric::setParent self %x, parent %x", this, parent);
86 bool runChild(TaskGeneric* child, void* data)
88 TaskGeneric::ExecutionResult* result = reinterpret_cast<TaskGeneric::ExecutionResult*>(data);
90 if (*result != TaskGeneric::EResultOK) {
97 TaskGeneric::ExecutionResult TaskGeneric::run()
104 bool TaskGeneric::parseAttribute(const android::String8& name, const android::String8& value)
116 void TaskGeneric::registerSupportedStringAttributes(const android::String8* keys[])
125 bool TaskGeneric::addStringAttribute(const android::String8& key, const android::String8& value)
135 bool TaskGeneric::findStringAttribute(const android::String8& key, android::String8& value) const