Home | History | Annotate | Download | only in update_manager

Lines Matching defs:ec

33     EvaluationContext* ec,
42 if (ec->is_expired()) {
44 << ec->DumpContext();
45 ec->ResetExpiration();
49 ec->ResetEvaluation();
56 EvalStatus status = (policy_.get()->*policy_method)(ec, state_.get(), &error,
61 << "\nEvaluation context: " << ec->DumpContext();
63 status = (default_policy_.*policy_method)(ec, state_.get(), &error, result,
81 scoped_refptr<EvaluationContext> ec,
89 EvalStatus status = EvaluatePolicy(ec.get(), policy_method, &result, args...);
100 base::Unretained(this), ec, callback,
102 if (ec->RunOnValueChangeOrTimeout(reeval_callback))
120 scoped_refptr<EvaluationContext> ec(
127 EvalStatus ret = EvaluatePolicy<R, ExpectedArgs...>(ec.get(), policy_method,
143 scoped_refptr<EvaluationContext> ec =
150 if (!ec_repo_.insert(ec.get()).second) {
159 base::Unretained(this), ec, callback, policy_method, args...);