Lines Matching refs:Greeter

35     Greeter::Greeter(QObject *parent) : QObject(parent) {  in Greeter()  function in SDDM::Greeter
40 Greeter::~Greeter() { in ~Greeter()
47 void Greeter::setDisplay(Display *display) { in setDisplay()
51 void Greeter::setAuthPath(const QString &authPath) { in setAuthPath()
55 void Greeter::setSocket(const QString &socket) { in setSocket()
59 void Greeter::setTheme(const QString &theme) { in setTheme()
74 bool Greeter::start() { in start()
106 …_process, QOverload<int, QProcess::ExitStatus>::of(&QProcess::finished), this, &Greeter::finished); in start()
108 … connect(m_process, &QProcess::readyReadStandardOutput, this, &Greeter::onReadyReadStandardOutput); in start()
109 … connect(m_process, &QProcess::readyReadStandardError, this, &Greeter::onReadyReadStandardError); in start()
150 connect(m_auth, &Auth::requestChanged, this, &Greeter::onRequestChanged); in start()
151 connect(m_auth, &Auth::sessionStarted, this, &Greeter::onSessionStarted); in start()
152 connect(m_auth, &Auth::finished, this, &Greeter::onHelperFinished); in start()
153 connect(m_auth, &Auth::info, this, &Greeter::authInfo); in start()
154 connect(m_auth, &Auth::error, this, &Greeter::authError); in start()
207 …void Greeter::insertEnvironmentList(QStringList names, QProcessEnvironment sourceEnv, QProcessEnvi… in insertEnvironmentList()
213 void Greeter::stop() { in stop()
231 void Greeter::finished() { in finished()
247 void Greeter::onRequestChanged() { in onRequestChanged()
251 void Greeter::onSessionStarted(bool success) { in onSessionStarted()
262 void Greeter::onHelperFinished(Auth::HelperExitStatus status) { in onHelperFinished()
274 void Greeter::onReadyReadStandardError() in onReadyReadStandardError()
281 void Greeter::onReadyReadStandardOutput() in onReadyReadStandardOutput()
288 void Greeter::authInfo(const QString &message, Auth::Info info) { in authInfo()
293 void Greeter::authError(const QString &message, Auth::Error error) { in authError()