Lines Matching refs:Status
45 // Start getting ownership status.
76 OwnershipService::Status OwnershipService::GetStatus(bool blocking) {
77 Status status = OWNERSHIP_UNKNOWN;
81 status = ownership_status_;
83 if (status != OWNERSHIP_UNKNOWN || !blocking)
84 return status;
86 // status is still unknown after constructing OwnershipService.
94 status = is_owned ? OWNERSHIP_TAKEN : OWNERSHIP_NONE;
95 SetStatus(status);
96 return status;
228 Status status = IsAlreadyOwned() ? OWNERSHIP_TAKEN : OWNERSHIP_NONE;
229 SetStatus(status);
232 void OwnershipService::SetStatus(Status new_status) {