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

/frameworks/base/services/core/java/com/android/server/am/
H A DTaskRecord.java138 static final int INVALID_TASK_ID = -1; field in class:TaskRecord
238 int mPrevAffiliateTaskId = INVALID_TASK_ID; // previous id for persistence.
240 int mNextAffiliateTaskId = INVALID_TASK_ID; // next id for persistence.
517 mPrevAffiliateTaskId = prevAffiliate == null ? INVALID_TASK_ID : prevAffiliate.taskId;
522 mNextAffiliateTaskId = nextAffiliate == null ? INVALID_TASK_ID : nextAffiliate.taskId;
1237 int taskId = INVALID_TASK_ID;
1241 int taskAffiliation = INVALID_TASK_ID;
1243 int prevTaskId = INVALID_TASK_ID;
1244 int nextTaskId = INVALID_TASK_ID;
1259 if (taskId == INVALID_TASK_ID) taskI
[all...]

Completed in 9 milliseconds