Absolute File Name: | /home/qt/qt5_coco/qt5/qtbase/src/dbus/qdbuspendingreply.cpp |
Switch to Source code | Preprocessed file |
Line | Source | Count | ||||||
---|---|---|---|---|---|---|---|---|
1 | QDBusPendingReplyData::QDBusPendingReplyData() | - | ||||||
2 | : QDBusPendingCall(0) | - | ||||||
3 | { | - | ||||||
4 | } executed 274 times by 18 tests: end of block Executed by:
| 274 | ||||||
5 | - | |||||||
6 | QDBusPendingReplyData::~QDBusPendingReplyData() | - | ||||||
7 | { | - | ||||||
8 | } | - | ||||||
9 | - | |||||||
10 | void QDBusPendingReplyData::assign(const QDBusPendingCall &other) | - | ||||||
11 | { | - | ||||||
12 | QDBusPendingCall::operator=(other); | - | ||||||
13 | } executed 103 times by 18 tests: end of block Executed by:
| 103 | ||||||
14 | - | |||||||
15 | void QDBusPendingReplyData::assign(const QDBusMessage &message) | - | ||||||
16 | { | - | ||||||
17 | d = new QDBusPendingCallPrivate(QDBusMessage(), 0); | - | ||||||
18 | d->replyMessage = message; | - | ||||||
19 | } executed 177 times by 17 tests: end of block Executed by:
| 177 | ||||||
20 | - | |||||||
21 | QVariant QDBusPendingReplyData::argumentAt(int index) const | - | ||||||
22 | { | - | ||||||
23 | if (!d
| 0-211 | ||||||
24 | return never executed: QVariant();return QVariant(); never executed: return QVariant(); | 0 | ||||||
25 | - | |||||||
26 | d->waitForFinished(); | - | ||||||
27 | - | |||||||
28 | return executed 211 times by 18 tests: d->replyMessage.arguments().value(index);return d->replyMessage.arguments().value(index); Executed by:
executed 211 times by 18 tests: return d->replyMessage.arguments().value(index); Executed by:
| 211 | ||||||
29 | } | - | ||||||
30 | - | |||||||
31 | void QDBusPendingReplyData::setMetaTypes(int count, const int *types) | - | ||||||
32 | { | - | ||||||
33 | ((!(d)) ? qt_assert("d",__FILE__,290) : qt_noop()); | - | ||||||
34 | QMutexLocker locker(&d->mutex); | - | ||||||
35 | d->setMetaTypes(count, types); | - | ||||||
36 | d->checkReceivedSignature(); | - | ||||||
37 | } executed 278 times by 18 tests: end of block Executed by:
| 278 | ||||||
Switch to Source code | Preprocessed file |