Searched refs:func_ (Results 1 – 11 of 11) sorted by relevance
/aosp12/art/compiler/optimizing/ |
H A D | escape.h | 45 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 D | thread_pool.h | 40 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 D | class_linker.h | 115 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 D | ScopedAlarm.h | 31 func_ = func; in ScopedAlarm() 34 act.sa_handler = [](int) { ScopedAlarm::func_(); }; in ScopedAlarm() 52 static std::function<void()> func_;
|
H A D | PtracerThread.cpp | 76 func_ = std::function<int()>{[&, func]() -> int { in PtracerThread() 103 reinterpret_cast<void*>(&func_)); in Start()
|
H A D | PtracerThread.h | 48 std::function<int()> func_; variable
|
/aosp12/system/update_engine/update_manager/ |
H A D | generic_variables.h | 150 : 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 D | real_system_provider.cc | 57 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 D | action.cpp | 50 : 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 D | action.h | 48 BuiltinFunction func_;
|
/aosp12/system/memory/libmemunreachable/tests/ |
H A D | Allocator_test.cpp | 24 std::function<void()> ScopedAlarm::func_; member in android::ScopedAlarm
|