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

  /external/libchrome/base/
callback_internal.cc 22 : bind_state_(std::move(c.bind_state_)),
29 bind_state_ = std::move(c.bind_state_);
37 // NULL the bind_state_ last, since it may be holding the last ref to whatever
39 bind_state_ = nullptr;
44 return bind_state_.get() == other.bind_state_.get() &&
50 : bind_state_(bind_state) {
51 DCHECK(!bind_state_.get() || bind_state_->ref_count_ == 1)
    [all...]
callback_internal.h 66 bool is_null() const { return bind_state_.get() == NULL; }
82 // Allow initializing of |bind_state_| via the constructor to avoid default
93 scoped_refptr<BindStateBase> bind_state_; member in class:base::internal::CallbackBase
callback.h 389 return f(this->bind_state_.get(), std::forward<Args>(args)...);

Completed in 226 milliseconds