Line | Source Code | Coverage |
---|
1 | QDBusPendingReplyData::QDBusPendingReplyData() | - |
2 | : QDBusPendingCall(0) | - |
3 | { | - |
4 | } executed: } Execution Count:76 | 76 |
5 | | - |
6 | QDBusPendingReplyData::~QDBusPendingReplyData() | - |
7 | { | - |
8 | } | - |
9 | | - |
10 | void QDBusPendingReplyData::assign(const QDBusPendingCall &other) | - |
11 | { | - |
12 | QDBusPendingCall::operator=(other); | - |
13 | } executed: } Execution Count:67 | 67 |
14 | | - |
15 | void QDBusPendingReplyData::assign(const QDBusMessage &message) | - |
16 | { | - |
17 | d = new QDBusPendingCallPrivate(QDBusMessage(), 0); | - |
18 | d->replyMessage = message; | - |
19 | } executed: } Execution Count:15 | 15 |
20 | | - |
21 | QVariant QDBusPendingReplyData::argumentAt(int index) const | - |
22 | { | - |
23 | if (d) partially evaluated: d yes Evaluation Count:45 | no Evaluation Count:0 |
| 0-45 |
24 | d->waitForFinished(); executed: d->waitForFinished(); Execution Count:45 | 45 |
25 | | - |
26 | qt_noop(); | - |
27 | | - |
28 | | - |
29 | | - |
30 | return d->replyMessage.arguments().at(index); executed: return d->replyMessage.arguments().at(index); Execution Count:45 | 45 |
31 | } | - |
32 | | - |
33 | void QDBusPendingReplyData::setMetaTypes(int count, const int *types) | - |
34 | { | - |
35 | qt_noop(); | - |
36 | QMutexLocker locker(&d->mutex); | - |
37 | d->setMetaTypes(count, types); | - |
38 | d->checkReceivedSignature(); | - |
39 | } executed: } Execution Count:80 | 80 |
40 | | - |
| | |