HomeSort by relevance Sort by last modified time
    Searched full:evaluationcontext (Results 1 - 25 of 33) sorted by null

1 2

  /system/update_engine/update_manager/
evaluation_context.cc 67 EvaluationContext::EvaluationContext(
71 unique_ptr<Callback<void(EvaluationContext*)>> unregister_cb)
81 EvaluationContext::~EvaluationContext() {
87 unique_ptr<Closure> EvaluationContext::RemoveObserversAndTimeout() {
98 TimeDelta EvaluationContext::RemainingTime(Time monotonic_deadline) const {
105 Time EvaluationContext::MonotonicDeadline(TimeDelta timeout) {
110 void EvaluationContext::ValueChanged(BaseVariable* var) {
115 void EvaluationContext::OnTimeout()
    [all...]
evaluation_context.h 37 // The EvaluationContext class is the interface between a policy implementation
38 // and the state. The EvaluationContext tracks the variables used by a policy
40 // The same EvaluationContext should be re-used for all the evaluations of the
42 // re-evaluations). Each evaluation of the EvaluationContext is run at a given
49 // scoped_refptr<EvaluationContext> ec = new EvaluationContext(...);
53 // // evaluation time if the EvaluationContext isn't used right after its
65 class EvaluationContext : public base::RefCounted<EvaluationContext>,
68 EvaluationContext(
    [all...]
update_manager-inl.h 33 EvaluationContext* ec,
34 EvalStatus (Policy::*policy_method)(EvaluationContext*, State*,
81 scoped_refptr<EvaluationContext> ec,
83 EvalStatus (Policy::*policy_method)(EvaluationContext*, State*,
116 EvalStatus (Policy::*policy_method)(EvaluationContext*, State*,
120 scoped_refptr<EvaluationContext> ec(
121 new EvaluationContext(clock_, evaluation_timeout_));
123 // EvaluationContext.
139 EvalStatus (Policy::*policy_method)(EvaluationContext*, State*,
143 scoped_refptr<EvaluationContext> ec
    [all...]
default_policy.h 69 EvaluationContext* ec, State* state, std::string* error,
73 EvaluationContext* ec, State* state, std::string* error,
78 EvaluationContext* ec, State* state, std::string* error,
82 EvaluationContext* ec, State* state, std::string* error,
86 EvaluationContext* ec, State* state, std::string* error,
mock_policy.h 61 EvalStatus(EvaluationContext*, State*, std::string*,
65 EvalStatus(EvaluationContext*, State*, std::string*,
69 EvalStatus(EvaluationContext*, State*, std::string*,
73 EvalStatus(EvaluationContext*, State*, std::string*,
77 EvalStatus(EvaluationContext*, State*, std::string*,
update_manager.h 73 EvalStatus (Policy::*policy_method)(EvaluationContext*, State*,
89 EvalStatus (Policy::*policy_method)(EvaluationContext*, State*,
116 EvaluationContext* ec,
117 EvalStatus (Policy::*policy_method)(EvaluationContext*, State*,
130 scoped_refptr<EvaluationContext> ec,
132 EvalStatus (Policy::*policy_method)(EvaluationContext*, State*,
137 // Unregisters (removes from repo) a previously created EvaluationContext.
138 void UnregisterEvalContext(EvaluationContext* ec);
160 // Repository of previously created EvaluationContext objects. These are being
165 std::set<scoped_refptr<EvaluationContext>,
    [all...]
chromeos_policy.h 59 EvaluationContext* ec, State* state, std::string* error,
63 EvaluationContext* ec,
70 EvaluationContext* ec,
76 EvaluationContext* ec,
82 EvaluationContext* ec,
144 EvalStatus NextUpdateCheckTime(EvaluationContext* ec, State* state,
177 EvaluationContext* ec, State* state, std::string* error,
193 EvalStatus UpdateScattering(EvaluationContext* ec, State* state,
default_policy.cc 35 EvaluationContext* ec, State* state, std::string* error,
57 EvaluationContext* ec,
77 EvaluationContext* ec,
86 EvaluationContext* ec,
95 EvaluationContext* ec,
evaluation_context_unittest.cc 63 void ReadVar(scoped_refptr<EvaluationContext> ec, Variable<T>* var) {
69 void EvaluateRepeatedly(Closure evaluation, scoped_refptr<EvaluationContext> ec,
94 eval_ctx_ = new EvaluationContext(
96 unique_ptr<base::Callback<void(EvaluationContext*)>>(nullptr));
103 base::WeakPtr<EvaluationContext> eval_ctx_weak_alias =
126 scoped_refptr<EvaluationContext> eval_ctx_;
128 // FakeVariables used for testing the EvaluationContext. These are required
129 // here to prevent them from going away *before* the EvaluationContext under
167 // Check that if the variable changes, the EvaluationContext keeps returning
182 // EvaluationContext already got a null value
    [all...]
evaluation_context-inl.h 27 const T* EvaluationContext::GetValue(Variable<T>* var) {
policy_utils.h 25 // EvaluationContext::GetValue, for example:
random_provider.h 31 // returned by the variables are cached by the EvaluationContext, so the
update_manager.cc 44 void UpdateManager::UnregisterEvalContext(EvaluationContext* ec) {
policy.h 199 EvalStatus (Policy::*policy_method)(EvaluationContext*, State*,
225 // List of policy requests. A policy request takes an EvaluationContext as the
235 EvaluationContext* ec, State* state, std::string* error,
245 EvaluationContext* ec,
258 EvaluationContext* ec,
266 EvaluationContext* ec, State* state, std::string* error,
275 EvaluationContext* ec, State* state, std::string* error,
variable.h 37 // EvaluationContext caches the value even between different evaluations of
186 // Only allow to get values through the EvaluationContext class and not
188 friend class EvaluationContext;
real_random_provider.cc 45 // EvaluationContext cache the value between different evaluations of the same
update_manager_unittest.cc 104 EvalStatus UpdateCheckAllowed(EvaluationContext* ec, State* state,
122 EvalStatus UpdateCheckAllowed(EvaluationContext* ec, State* state,
142 EvalStatus UpdateCheckAllowed(EvaluationContext* ec, State* state,
chromeos_policy.cc 189 EvaluationContext* ec, State* state, string* error,
294 EvaluationContext* ec,
463 EvaluationContext* ec,
538 EvalStatus ChromeOSPolicy::P2PEnabled(EvaluationContext* ec,
574 EvalStatus ChromeOSPolicy::P2PEnabledChanged(EvaluationContext* ec,
585 EvalStatus ChromeOSPolicy::NextUpdateCheckTime(EvaluationContext* ec,
672 EvaluationContext* ec, State* state, string* error,
    [all...]
chromeos_policy_unittest.cc 49 eval_ctx_ = new EvaluationContext(&fake_clock_, TimeDelta::FromSeconds(5));
201 scoped_refptr<EvaluationContext> eval_ctx_;
    [all...]
  /external/smali/smalidea/src/main/java/org/jf/smalidea/debugging/value/
LazyValue.java 37 import com.intellij.debugger.engine.evaluation.EvaluationContext;
56 private EvaluationContext evaluationContext;
108 if (evaluationContext == null) {
110 evaluationContext = debuggerContext.createEvaluationContext();
111 if (evaluationContext == null) {
116 value = SmaliCodeFragmentFactory.evaluateRegister(evaluationContext, method, registerNumber, type);
117 evaluationContext = null;
139 if (evaluationContext != null) {
140 return ((VirtualMachineProxyImpl)evaluationContext.getDebugProcess().getVirtualMachineProxy()
    [all...]
  /external/smali/smalidea/src/test/java/org/jf/smalidea/
SmaliPositionManagerTest.java 41 import com.intellij.debugger.engine.evaluation.EvaluationContext;
166 @Override public Value invokeMethod(EvaluationContext evaluationContext, ObjectReference objRef, Method method, List args) throws EvaluateException { return null; }
167 @Override public Value invokeMethod(EvaluationContext evaluationContext, ClassType classType, Method method, List args) throws EvaluateException { return null; }
168 @Override public Value invokeInstanceMethod(EvaluationContext evaluationContext, ObjectReference objRef, Method method, List args, int invocationOptions) throws EvaluateException { return null; }
169 @Override public ReferenceType findClass(EvaluationContext evaluationContext, String name, ClassLoaderReference classLoader) throws EvaluateException { return null; }
171 @Override public ObjectReference newInstance(EvaluationContext evaluationContext, ClassType classType, Method constructor, List paramList) throws EvaluateExcepti (…)
    [all...]
  /external/smali/smalidea/src/main/java/org/jf/smalidea/debugging/
SmaliExpressionEvaluator.java 35 import com.intellij.debugger.engine.evaluation.EvaluationContext;
53 @Override public Value evaluate(EvaluationContext context) throws EvaluateException {
SmaliCodeFragmentFactory.java 277 public static Value evaluateRegister(EvaluationContext context, final SmaliMethod smaliMethod,
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.expressions_3.4.200.v20100505.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.core.expressions_3.4.200.v20100505.jar 

Completed in 732 milliseconds

1 2