HomeSort by relevance Sort by last modified time
    Searched refs:ScopeGuard (Results 1 - 3 of 3) sorted by null

  /bionic/libc/private/
ScopeGuard.h 24 class ScopeGuard {
26 ScopeGuard(F f) : f_(f), active_(true) {}
28 ScopeGuard(ScopeGuard&& that) : f_(that.f_), active_(that.active_) {
32 ~ScopeGuard() {
45 DISALLOW_IMPLICIT_CONSTRUCTORS(ScopeGuard);
49 ScopeGuard<T> make_scope_guard(T f) {
50 return ScopeGuard<T>(f);
  /bionic/linker/
linker_config.cpp 38 #include <private/ScopeGuard.h>
  /bionic/tests/
math_test.cpp 60 #include <private/ScopeGuard.h>
    [all...]

Completed in 153 milliseconds