Home | History | Annotate | Download | only in memory

Lines Matching refs:weak_this

757   auto weak_this = weak_factory_.GetWeakPtr();
758 task_runner_->PostTask([weak_this, raw_alloc_rec] {
759 if (weak_this)
760 weak_this->HandleAllocRecord(std::move(*raw_alloc_rec));
768 auto weak_this = weak_factory_.GetWeakPtr();
769 task_runner_->PostTask([weak_this, raw_free_rec] {
770 if (weak_this)
771 weak_this->HandleFreeRecord(std::move(*raw_free_rec));
779 auto weak_this = weak_factory_.GetWeakPtr();
780 task_runner_->PostTask([weak_this, ds_id, pid, stats] {
781 if (weak_this)
782 weak_this->HandleSocketDisconnected(ds_id, pid, stats);