Home
last modified time | relevance | path

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

/openbmc/telemetry/src/
H A Dsensor.cpp53 [lock, id = sensorId, weakSelf = weak_from_this()]( in async_read()
63 if (auto self = weakSelf.lock()) in async_read()
142 [weakSelf = weak_from_this()](sdbusplus::message_t& message) { in makeSignalMonitor()
143 signalProc(weakSelf, message); in makeSignalMonitor()
147 void Sensor::signalProc(const std::weak_ptr<Sensor>& weakSelf, in signalProc() argument
150 if (auto self = weakSelf.lock()) in signalProc()
H A Dsensor.hpp45 static void signalProc(const std::weak_ptr<Sensor>& weakSelf,
/openbmc/bmcweb/http/
H A Dserver_sent_event_impl.hpp226 std::weak_ptr<Connection> weakSelf = weak_from_this(); in startTimeout() local
232 void onTimeoutCallback(const std::weak_ptr<Connection>& weakSelf, in onTimeoutCallback() argument
235 std::shared_ptr<Connection> self = weakSelf.lock(); in onTimeoutCallback()
H A Dhttp_client.hpp446 static void onTimeout(const std::weak_ptr<ConnectionInfo>& weakSelf, in onTimeout() argument
461 std::shared_ptr<ConnectionInfo> self = weakSelf.lock(); in onTimeout()
818 static void afterSendData(const std::weak_ptr<ConnectionPool>& weakSelf, in afterSendData() argument
828 std::shared_ptr<ConnectionPool> self = weakSelf.lock(); in afterSendData()
H A Dhttp_connection.hpp878 void afterTimerWait(const std::weak_ptr<self_type>& weakSelf, in afterTimerWait() argument
883 std::shared_ptr<Connection<Adaptor, Handler>> self = weakSelf.lock(); in afterTimerWait()
936 std::weak_ptr<Connection<Adaptor, Handler>> weakSelf = weak_from_this(); in startDeadline() local
H A Dhttp2_connection.hpp312 [weakSelf = weak_from_this(), streamId](Response& completeRes) { in onRequestRecv()
314 if (auto self = weakSelf.lock(); self) in onRequestRecv()
/openbmc/dbus-sensors/src/nvme/
H A DNVMeBasicContext.cpp334 [weakSelf{weak_from_this()}, sensor, response]( in readAndProcessNVMeSensor()
349 if (auto self = weakSelf.lock()) in readAndProcessNVMeSensor()
371 scanTimer.async_wait([weakSelf{weak_from_this()}]( in pollNVMeDevices()
385 if (auto self = weakSelf.lock()) in pollNVMeDevices()
/openbmc/bmcweb/redfish-core/src/
H A Dsubscription.cpp134 void Subscription::onHbTimeout(const std::weak_ptr<Subscription>& weakSelf, in onHbTimeout() argument
153 std::shared_ptr<Subscription> self = weakSelf.lock(); in onHbTimeout()
/openbmc/bmcweb/features/serial/
H A Dobmc_console.hpp112 [this, weakSelf(weak_from_this())]( in doRead()
115 std::shared_ptr<ConsoleHandler> self = weakSelf.lock(); in doRead()
/openbmc/bmcweb/redfish-core/include/
H A Dsubscription.hpp67 void onHbTimeout(const std::weak_ptr<Subscription>& weakSelf,