Home
last modified time | relevance | path

Searched refs:f_ (Results 1 – 4 of 4) sorted by relevance

/system/libbase/include/android-base/
Dscopeguard.h29 ScopeGuard(F&& f) : f_(std::forward<F>(f)), active_(true) {} in ScopeGuard()
31 ScopeGuard(ScopeGuard&& that) noexcept : f_(std::move(that.f_)), active_(that.active_) { in ScopeGuard()
36 ScopeGuard(ScopeGuard<Functor>&& that) : f_(std::move(that.f_)), active_(that.active_) { in ScopeGuard()
41 if (active_) f_(); in ~ScopeGuard()
57 F f_; variable
/system/teeui/libteeui/include/secure_input/
Devdev.h50 Fn f_;
54 explicit NonCopyableFunctionTypeEraser(Fn f) : f_(std::move(f)) {} in NonCopyableFunctionTypeEraser()
55 Ret operator()(Args... args) override { return f_(std::move(args)...); } in operator()
59 std::unique_ptr<NonCopyableFunctionBase> f_;
64 f_ = std::make_unique<NonCopyableFunctionTypeEraser<F>>(std::move(f)); in NonCopyableFunction()
72 if (f_) return (*f_)(std::move(args)...); in operator()
/system/core/trusty/confirmationui/
DTrustyConfirmationUI.cpp80 std::function<void()> f_; member in android::hardware::confirmationui::V1_0::implementation::__anon124ddc250111::Finalize
83 Finalize(std::function<void()> f) : f_(f) {} in Finalize()
85 if (f_) f_(); in ~Finalize()
87 void release() { f_ = {}; } in release()
/system/keymaster/include/keymaster/
Dandroid_keymaster_utils.h245 explicit final_action(F f) : f_(move(f)) {} in final_action()
246 ~final_action() { f_(); } in ~final_action()
249 F f_;