Home | History | Annotate | Download | only in base

Lines Matching refs:Task

28 #include "talk/base/task.h"
34 int32 Task::unique_id_seed_ = 0;
36 Task::Task(TaskParent *parent)
54 Task::~Task() {
55 // Is this task being deleted in the correct manner?
60 // If the task is being deleted without being done, it
62 // This happens if a task is deleted outside of TaskRunner.
68 int64 Task::CurrentTime() {
72 int64 Task::ElapsedTime() {
76 void Task::Start() {
79 // Set the start time before starting the task. Otherwise if the task
80 // finishes quickly and deletes the Task object, setting start_time_
86 void Task::Step() {
104 // obsolete - an errored task is not considered done now
153 void Task::Abort(bool nowake) {
168 // doesn't execute more than once (recursively) for the same task.
183 void Task::Wake() {
192 void Task::Error() {
199 std::string Task::GetStateName(int state) const {
218 int Task::Process(int state) {
246 void Task::Stop() {
251 void Task::set_timeout_seconds(const int timeout_seconds) {
256 bool Task::TimedOut() {
262 void Task::ResetTimeout() {
276 void Task::ClearTimeout() {
282 void Task::SuspendTimeout() {
289 void Task::ResumeTimeout() {