Home
last modified time | relevance | path

Searched refs:func_ (Results 1 – 11 of 11) sorted by relevance

/aosp12/art/compiler/optimizing/
H A Descape.h45 explicit LambdaEscapeVisitor(F f) : func_(f) {} in LambdaEscapeVisitor()
47 return func_(escape); in Visit()
51 F func_;
73 explicit LambdaNoEscapeCheck(F f) : func_(f) {} in LambdaNoEscapeCheck()
75 return func_(ref, user); in NoEscape()
79 F func_;
/aosp12/art/runtime/
H A Dthread_pool.h40 explicit FunctionClosure(std::function<void(Thread*)>&& f) : func_(std::move(f)) {} in FunctionClosure()
42 func_(self); in Run()
46 std::function<void(Thread*)> func_;
65 explicit FunctionTask(std::function<void(Thread*)>&& func) : func_(std::move(func)) {} in FunctionTask()
68 func_(self); in Run()
72 std::function<void(Thread*)> func_;
H A Dclass_linker.h115 explicit ClassFuncVisitor(Func func) : func_(func) {} in ClassFuncVisitor()
117 return func_(klass); in operator()
121 Func func_;
134 explicit ClassLoaderFuncVisitor(Func func) : func_(func) {} in ClassLoaderFuncVisitor()
136 func_(cl); in Visit()
140 Func func_;
/aosp12/system/memory/libmemunreachable/
H A DScopedAlarm.h31 func_ = func; in ScopedAlarm()
34 act.sa_handler = [](int) { ScopedAlarm::func_(); }; in ScopedAlarm()
52 static std::function<void()> func_;
H A DPtracerThread.cpp76 func_ = std::function<int()>{[&, func]() -> int { in PtracerThread()
103 reinterpret_cast<void*>(&func_)); in Start()
H A DPtracerThread.h48 std::function<int()> func_; variable
/aosp12/system/update_engine/update_manager/
H A Dgeneric_variables.h150 : Variable<T>(name, kVariableModePoll), func_(func) {} in CallCopyVariable()
154 : Variable<T>(name, poll_interval), func_(func) {} in CallCopyVariable()
160 if (func_.is_null()) in GetValue()
162 return new T(func_.Run()); in GetValue()
169 base::Callback<T(void)> func_; variable
H A Dreal_system_provider.cc57 func_(func), in RetryPollVariable()
68 if (!func_.Run(result.get())) { in GetValue()
88 base::Callback<bool(T*)> func_; member in chromeos_update_manager::__anon874f02380110::RetryPollVariable
/aosp12/system/core/init/
H A Daction.cpp50 : func_(std::move(f)), in Command()
65 return RunBuiltinFunction(func_, *expanded_args, subcontext->context()); in InvokeFunc()
68 return RunBuiltinFunction(func_, args_, kInitContext); in InvokeFunc()
92 return func_(builtin_arguments); in CheckCommand()
H A Daction.h48 BuiltinFunction func_;
/aosp12/system/memory/libmemunreachable/tests/
H A DAllocator_test.cpp24 std::function<void()> ScopedAlarm::func_; member in android::ScopedAlarm