Home
last modified time | relevance | path

Searched refs:weakSelf (Results 1 – 7 of 7) sorted by relevance

/openbmc/telemetry/src/
H A Dsensor.cpp50 [lock, id = sensorId, weakSelf = weak_from_this()]( in async_read()
60 if (auto self = weakSelf.lock()) in async_read()
138 [weakSelf = weak_from_this()](sdbusplus::message_t& message) { in makeSignalMonitor()
139 signalProc(weakSelf, message); in makeSignalMonitor()
143 void Sensor::signalProc(const std::weak_ptr<Sensor>& weakSelf, in signalProc() argument
146 if (auto self = weakSelf.lock()) in signalProc()
H A Dsensor.hpp42 static void signalProc(const std::weak_ptr<Sensor>& weakSelf,
/openbmc/bmcweb/http/
H A Dserver_sent_event.hpp238 std::weak_ptr<Connection> weakSelf = weak_from_this(); in startTimeout() local
244 void onTimeoutCallback(const std::weak_ptr<Connection>& weakSelf, in onTimeoutCallback() argument
247 std::shared_ptr<Connection> self = weakSelf.lock(); in onTimeoutCallback()
H A Dhttp_client.hpp419 static void onTimeout(const std::weak_ptr<ConnectionInfo>& weakSelf, in onTimeout() argument
434 std::shared_ptr<ConnectionInfo> self = weakSelf.lock(); in onTimeout()
797 static void afterSendData(const std::weak_ptr<ConnectionPool>& weakSelf, in afterSendData() argument
807 std::shared_ptr<ConnectionPool> self = weakSelf.lock(); in afterSendData()
H A Dhttp_connection.hpp689 std::weak_ptr<Connection<Adaptor, Handler>> weakSelf = weak_from_this(); in startDeadline() local
691 timer.async_wait([weakSelf](const boost::system::error_code& ec) { in startDeadline()
695 weakSelf.lock(); in startDeadline()
/openbmc/dbus-sensors/src/
H A DNVMeBasicContext.cpp339 [weakSelf{weak_from_this()}, sensor, response]( in readAndProcessNVMeSensor()
353 if (auto self = weakSelf.lock()) in readAndProcessNVMeSensor()
375 scanTimer.async_wait([weakSelf{weak_from_this()}]( in pollNVMeDevices()
388 if (auto self = weakSelf.lock()) in pollNVMeDevices()
/openbmc/bmcweb/include/
H A Dobmc_console.hpp98 [this, weakSelf(weak_from_this())]( in doRead()
101 std::shared_ptr<ConsoleHandler> self = weakSelf.lock(); in doRead()