Ignore:
Timestamp:
Mar 8, 2010, 12:52:58 PM (15 years ago)
Author:
Dmitry A. Kuminov
Message:

trunk: Merged in qt 4.6.2 sources.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/tools/runonphone/trk/launcher.h

    r561 r651  
    11/****************************************************************************
    22**
    3 ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
     3** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
    44** All rights reserved.
    55** Contact: Nokia Corporation (qt-info@nokia.com)
     
    9696    void setCopyFileName(const QString &srcName, const QString &dstName);
    9797    void setInstallFileName(const QString &name);
    98     void setCommandLineArgs(const QString &args);
     98    void setCommandLineArgs(const QStringList &args);
    9999    bool startServer(QString *errorMessage);
    100100    void setVerbose(int v);   
     
    109109    // becomes valid after successful execution of ActionPingOnly
    110110    QString deviceDescription(unsigned verbose = 0u) const;
     111
     112    static QByteArray startProcessMessage(const QString &executable,
     113                                          const QStringList &arguments);
     114    // Parse a TrkNotifyStopped message
     115    static bool parseNotifyStopped(const QByteArray &a,
     116                                   uint *pid, uint *tid, uint *address,
     117                                   QString *why = 0);
     118    // Helper message
     119    static QString msgStopped(uint pid, uint tid, uint address, const QString &why);
    111120
    112121signals:
     
    126135    void copyProgress(int percent);
    127136    void stateChanged(int);
    128     void stopped(uint pc, uint pid, uint tid, const QString& reason);
     137    void processStopped(uint pc, uint pid, uint tid, const QString& reason);
    129138
    130139public slots:
    131140    void terminate();
    132     void resume(uint pid, uint tid);
     141    void resumeProcess(uint pid, uint tid);
    133142
    134143private slots:
Note: See TracChangeset for help on using the changeset viewer.