MCPcopy Create free account
hub / github.com/KDAB/GammaRay / waitForBytesWritten

Function waitForBytesWritten

core/probesettings.cpp:142–150  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

140}
141
142static void waitForBytesWritten(QLocalSocket &socket)
143{
144 while (socket.state() == QLocalSocket::ConnectedState && socket.bytesToWrite() > 0) {
145 if (!socket.waitForBytesWritten()) {
146 qWarning() << Q_FUNC_INFO << "Failed to wait for bytes written";
147 break;
148 }
149 }
150}
151
152void ProbeSettingsReceiver::sendServerAddress(const QUrl &address)
153{

Callers 2

sendServerAddressMethod · 0.85
sendServerLaunchErrorMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected