Line | Source | Count |
1 | | - |
2 | | - |
3 | | - |
4 | | - |
5 | | - |
6 | | - |
7 | | - |
8 | | - |
9 | | - |
10 | | - |
11 | | - |
12 | | - |
13 | | - |
14 | | - |
15 | | - |
16 | | - |
17 | | - |
18 | | - |
19 | | - |
20 | | - |
21 | | - |
22 | | - |
23 | | - |
24 | | - |
25 | | - |
26 | | - |
27 | | - |
28 | | - |
29 | | - |
30 | | - |
31 | | - |
32 | | - |
33 | | - |
34 | #include "qthreadstorage.h" | - |
35 | | - |
36 | #ifndef QT_NO_THREAD | - |
37 | #include "qthread.h" | - |
38 | #include "qthread_p.h" | - |
39 | #include "qmutex.h" | - |
40 | | - |
41 | #include <string.h> | - |
42 | | - |
43 | QT_BEGIN_NAMESPACE | - |
44 | | - |
45 | | - |
46 | #ifdef THREADSTORAGE_DEBUG | - |
47 | # define DEBUG_MSG qtsDebug | - |
48 | | - |
49 | # include <stdio.h> | - |
50 | # include <stdarg.h> | - |
51 | void qtsDebug(const char *fmt, ...) | - |
52 | { | - |
53 | va_list va; | - |
54 | va_start(va, fmt); | - |
55 | | - |
56 | fprintf(stderr, "QThreadStorage: "); | - |
57 | vfprintf(stderr, fmt, va); | - |
58 | fprintf(stderr, "\n"); | - |
59 | | - |
60 | va_end(va); | - |
61 | } | - |
62 | #else | - |
63 | # define DEBUG_MSG if(false)qDebug | - |
64 | #endif | - |
65 | | - |
66 | static QBasicMutex destructorsMutex; | - |
67 | typedef QVector<void (*)(void *)> DestructorMap; | - |
68 | Q_GLOBAL_STATIC(DestructorMap, destructors)executed 258 times by 235 tests: end of block Executed by:- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_languagechange - unknown status
- tst_largefile - unknown status
- tst_modeltest - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractprintdialog - unknown status
- tst_qabstractproxymodel - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractslider - unknown status
- tst_qabstractspinbox - unknown status
- tst_qabstracttextdocumentlayout - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- tst_qactiongroup - unknown status
- tst_qalgorithms - unknown status
- tst_qanimationgroup - unknown status
- tst_qapplication - unknown status
- tst_qbackingstore - unknown status
- tst_qboxlayout - unknown status
- tst_qbrush - unknown status
- tst_qbuttongroup - unknown status
- tst_qcalendarwidget - unknown status
- ...
executed 258 times by 235 tests: guard.store(QtGlobalStatic::Destroyed); Executed by:- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_languagechange - unknown status
- tst_largefile - unknown status
- tst_modeltest - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractprintdialog - unknown status
- tst_qabstractproxymodel - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractslider - unknown status
- tst_qabstractspinbox - unknown status
- tst_qabstracttextdocumentlayout - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- tst_qactiongroup - unknown status
- tst_qalgorithms - unknown status
- tst_qanimationgroup - unknown status
- tst_qapplication - unknown status
- tst_qbackingstore - unknown status
- tst_qboxlayout - unknown status
- tst_qbrush - unknown status
- tst_qbuttongroup - unknown status
- tst_qcalendarwidget - unknown status
- ...
executed 4610 times by 477 tests: return &holder.value; Executed by:- tst_Compiler
- tst_Gestures
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
TRUE | evaluated 258 times by 235 testsEvaluated by:- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_languagechange - unknown status
- tst_largefile - unknown status
- tst_modeltest - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractprintdialog - unknown status
- tst_qabstractproxymodel - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractslider - unknown status
- tst_qabstractspinbox - unknown status
- tst_qabstracttextdocumentlayout - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- tst_qactiongroup - unknown status
- tst_qalgorithms - unknown status
- tst_qanimationgroup - unknown status
- tst_qapplication - unknown status
- tst_qbackingstore - unknown status
- tst_qboxlayout - unknown status
- tst_qbrush - unknown status
- tst_qbuttongroup - unknown status
- tst_qcalendarwidget - unknown status
- ...
| FALSE | never evaluated |
| 0-4610 |
69 | | - |
70 | QThreadStorageData::QThreadStorageData(void (*func)(void *)) | - |
71 | { | - |
72 | QMutexLocker locker(&destructorsMutex); | - |
73 | DestructorMap *destr = destructors(); | - |
74 | if (!destr) {TRUE | never evaluated | FALSE | evaluated 619 times by 294 testsEvaluated by:- tst_Compiler
- tst_Gestures
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
|
| 0-619 |
75 | | - |
76 | | - |
77 | | - |
78 | | - |
79 | | - |
80 | | - |
81 | | - |
82 | | - |
83 | | - |
84 | QThreadData *data = QThreadData::current(); | - |
85 | id = data->tls.count(); | - |
86 | DEBUG_MSG("QThreadStorageData: Allocated id %d, destructor %p cannot be stored", id, func); dead code: QMessageLogger(__FILE__, 86, __PRETTY_FUNCTION__).debug("QThreadStorageData: Allocated id %d, destructor %p cannot be stored", id, func); | - |
87 | return; never executed: return; | 0 |
88 | } | - |
89 | for (id = 0; id < destr->count(); id++) {TRUE | evaluated 663 times by 194 testsEvaluated by:- tst_Gestures
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAnimationGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QComplexText
- tst_QCssParser
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- ...
| FALSE | evaluated 619 times by 294 testsEvaluated by:- tst_Compiler
- tst_Gestures
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
|
| 619-663 |
90 | if (destr->at(id) == 0)TRUE | never evaluated | FALSE | evaluated 663 times by 194 testsEvaluated by:- tst_Gestures
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAnimationGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QComplexText
- tst_QCssParser
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- ...
|
| 0-663 |
91 | break; never executed: break; | 0 |
92 | }executed 663 times by 194 tests: end of block Executed by:- tst_Gestures
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAnimationGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QComplexText
- tst_QCssParser
- tst_QDataWidgetMapper
- tst_QDateTimeEdit
- ...
| 663 |
93 | if (id == destr->count()) {TRUE | evaluated 619 times by 294 testsEvaluated by:- tst_Compiler
- tst_Gestures
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
| FALSE | never evaluated |
| 0-619 |
94 | destr->append(func); | - |
95 | } else {executed 619 times by 294 tests: end of block Executed by:- tst_Compiler
- tst_Gestures
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
| 619 |
96 | (*destr)[id] = func; | - |
97 | } never executed: end of block | 0 |
98 | DEBUG_MSG("QThreadStorageData: Allocated id %d, destructor %p", id, func); dead code: QMessageLogger(__FILE__, 98, __PRETTY_FUNCTION__).debug("QThreadStorageData: Allocated id %d, destructor %p", id, func); | - |
99 | }executed 619 times by 294 tests: end of block Executed by:- tst_Compiler
- tst_Gestures
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
| 619 |
100 | | - |
101 | QThreadStorageData::~QThreadStorageData() | - |
102 | { | - |
103 | DEBUG_MSG("QThreadStorageData: Released id %d", id); dead code: QMessageLogger(__FILE__, 103, __PRETTY_FUNCTION__).debug("QThreadStorageData: Released id %d", id); | - |
104 | QMutexLocker locker(&destructorsMutex); | - |
105 | if (destructors())TRUE | evaluated 696 times by 282 testsEvaluated by:- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_largefile - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_platformsocketengine - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractprintdialog - unknown status
- tst_qabstractproxymodel - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractslider - unknown status
- tst_qabstractsocket - unknown status
- tst_qabstractspinbox - unknown status
- tst_qabstracttextdocumentlayout - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- tst_qactiongroup - unknown status
- tst_qalgorithms - unknown status
- tst_qanimationgroup - unknown status
- tst_qapplication - unknown status
- ...
| FALSE | never evaluated |
| 0-696 |
106 | (*destructors())[id] = 0;executed 696 times by 282 tests: (*destructors())[id] = 0; Executed by:- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_largefile - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_platformsocketengine - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractprintdialog - unknown status
- tst_qabstractproxymodel - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractslider - unknown status
- tst_qabstractsocket - unknown status
- tst_qabstractspinbox - unknown status
- tst_qabstracttextdocumentlayout - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- tst_qactiongroup - unknown status
- tst_qalgorithms - unknown status
- tst_qanimationgroup - unknown status
- tst_qapplication - unknown status
- ...
| 696 |
107 | }executed 696 times by 282 tests: end of block Executed by:- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_largefile - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_platformsocketengine - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractprintdialog - unknown status
- tst_qabstractproxymodel - unknown status
- tst_qabstractscrollarea - unknown status
- tst_qabstractslider - unknown status
- tst_qabstractsocket - unknown status
- tst_qabstractspinbox - unknown status
- tst_qabstracttextdocumentlayout - unknown status
- tst_qaccessibility - unknown status
- tst_qaction - unknown status
- tst_qactiongroup - unknown status
- tst_qalgorithms - unknown status
- tst_qanimationgroup - unknown status
- tst_qapplication - unknown status
- ...
| 696 |
108 | | - |
109 | void **QThreadStorageData::get() const | - |
110 | { | - |
111 | QThreadData *data = QThreadData::current(); | - |
112 | if (!data) {TRUE | never evaluated | FALSE | evaluated 21365276 times by 421 testsEvaluated by:- tst_Compiler
- tst_Gestures
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
|
| 0-21365276 |
113 | qWarning("QThreadStorage::get: QThreadStorage can only be used with threads started with QThread"); | - |
114 | return 0; never executed: return 0; | 0 |
115 | } | - |
116 | QVector<void *> &tls = data->tls; | - |
117 | if (tls.size() <= id)TRUE | evaluated 1947 times by 320 testsEvaluated by:- tst_Compiler
- tst_Gestures
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
| FALSE | evaluated 21363329 times by 333 testsEvaluated by:- tst_Compiler
- tst_Gestures
- tst_LargeFile
- tst_ModelTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- ...
|
| 1947-21363329 |
118 | tls.resize(id + 1);executed 1947 times by 320 tests: tls.resize(id + 1); Executed by:- tst_Compiler
- tst_Gestures
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
| 1947 |
119 | void **v = &tls[id]; | - |
120 | | - |
121 | DEBUG_MSG("QThreadStorageData: Returning storage %d, data %p, for thread %p", dead code: QMessageLogger(__FILE__, 121, __PRETTY_FUNCTION__).debug("QThreadStorageData: Returning storage %d, data %p, for thread %p", id, *v, data->thread.load()); | - |
122 | id, dead code: QMessageLogger(__FILE__, 121, __PRETTY_FUNCTION__).debug("QThreadStorageData: Returning storage %d, data %p, for thread %p", id, *v, data->thread.load()); | - |
123 | *v, dead code: QMessageLogger(__FILE__, 121, __PRETTY_FUNCTION__).debug("QThreadStorageData: Returning storage %d, data %p, for thread %p", id, *v, data->thread.load()); | - |
124 | data->thread.load()); dead code: QMessageLogger(__FILE__, 121, __PRETTY_FUNCTION__).debug("QThreadStorageData: Returning storage %d, data %p, for thread %p", id, *v, data->thread.load()); | - |
125 | | - |
126 | return *v ? v : 0;executed 21365276 times by 421 tests: return *v ? v : 0; Executed by:- tst_Compiler
- tst_Gestures
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
TRUE | evaluated 21353179 times by 293 testsEvaluated by:- tst_Compiler
- tst_Gestures
- tst_LargeFile
- tst_ModelTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QComplexText
- ...
| FALSE | evaluated 12097 times by 396 testsEvaluated by:- tst_Compiler
- tst_Gestures
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
|
| 12097-21365276 |
127 | } | - |
128 | | - |
129 | void **QThreadStorageData::set(void *p) | - |
130 | { | - |
131 | QThreadData *data = QThreadData::current(); | - |
132 | if (!data) {TRUE | never evaluated | FALSE | evaluated 12713 times by 340 testsEvaluated by:- tst_Compiler
- tst_Gestures
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
|
| 0-12713 |
133 | qWarning("QThreadStorage::set: QThreadStorage can only be used with threads started with QThread"); | - |
134 | return 0; never executed: return 0; | 0 |
135 | } | - |
136 | QVector<void *> &tls = data->tls; | - |
137 | if (tls.size() <= id)TRUE | never evaluated | FALSE | evaluated 12713 times by 340 testsEvaluated by:- tst_Compiler
- tst_Gestures
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
|
| 0-12713 |
138 | tls.resize(id + 1); never executed: tls.resize(id + 1); | 0 |
139 | | - |
140 | void *&value = tls[id]; | - |
141 | | - |
142 | if (value != 0) {TRUE | evaluated 208 times by 124 testsEvaluated by:- tst_QApplication
- tst_QFontCache
- tst_QNetworkReply
- tst_languagechange - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractspinbox - unknown status
- tst_qabstracttextdocumentlayout - unknown status
- tst_qaccessibility - unknown status
- tst_qapplication - unknown status
- tst_qboxlayout - unknown status
- tst_qbuttongroup - unknown status
- tst_qcalendarwidget - unknown status
- tst_qcheckbox - unknown status
- tst_qcolordialog - unknown status
- tst_qcolumnview - unknown status
- tst_qcombobox - unknown status
- tst_qcommandlinkbutton - unknown status
- tst_qcompleter - unknown status
- tst_qcomplextext - unknown status
- tst_qcssparser - unknown status
- tst_qdatawidgetmapper - unknown status
- tst_qdatetimeedit - unknown status
- tst_qdialog - unknown status
- tst_qdialogbuttonbox - unknown status
- ...
| FALSE | evaluated 12505 times by 317 testsEvaluated by:- tst_Compiler
- tst_Gestures
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
|
| 208-12505 |
143 | DEBUG_MSG("QThreadStorageData: Deleting previous storage %d, data %p, for thread %p", dead code: QMessageLogger(__FILE__, 143, __PRETTY_FUNCTION__).debug("QThreadStorageData: Deleting previous storage %d, data %p, for thread %p", id, value, data->thread.load()); | - |
144 | id, dead code: QMessageLogger(__FILE__, 143, __PRETTY_FUNCTION__).debug("QThreadStorageData: Deleting previous storage %d, data %p, for thread %p", id, value, data->thread.load()); | - |
145 | value, dead code: QMessageLogger(__FILE__, 143, __PRETTY_FUNCTION__).debug("QThreadStorageData: Deleting previous storage %d, data %p, for thread %p", id, value, data->thread.load()); | - |
146 | data->thread.load()); dead code: QMessageLogger(__FILE__, 143, __PRETTY_FUNCTION__).debug("QThreadStorageData: Deleting previous storage %d, data %p, for thread %p", id, value, data->thread.load()); | - |
147 | | - |
148 | QMutexLocker locker(&destructorsMutex); | - |
149 | DestructorMap *destr = destructors(); | - |
150 | void (*destructor)(void *) = destr ? destr->value(id) : 0;TRUE | evaluated 208 times by 124 testsEvaluated by:- tst_QApplication
- tst_QFontCache
- tst_QNetworkReply
- tst_languagechange - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractspinbox - unknown status
- tst_qabstracttextdocumentlayout - unknown status
- tst_qaccessibility - unknown status
- tst_qapplication - unknown status
- tst_qboxlayout - unknown status
- tst_qbuttongroup - unknown status
- tst_qcalendarwidget - unknown status
- tst_qcheckbox - unknown status
- tst_qcolordialog - unknown status
- tst_qcolumnview - unknown status
- tst_qcombobox - unknown status
- tst_qcommandlinkbutton - unknown status
- tst_qcompleter - unknown status
- tst_qcomplextext - unknown status
- tst_qcssparser - unknown status
- tst_qdatawidgetmapper - unknown status
- tst_qdatetimeedit - unknown status
- tst_qdialog - unknown status
- tst_qdialogbuttonbox - unknown status
- ...
| FALSE | never evaluated |
| 0-208 |
151 | locker.unlock(); | - |
152 | | - |
153 | void *q = value; | - |
154 | value = 0; | - |
155 | | - |
156 | if (destructor)TRUE | evaluated 208 times by 124 testsEvaluated by:- tst_QApplication
- tst_QFontCache
- tst_QNetworkReply
- tst_languagechange - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractspinbox - unknown status
- tst_qabstracttextdocumentlayout - unknown status
- tst_qaccessibility - unknown status
- tst_qapplication - unknown status
- tst_qboxlayout - unknown status
- tst_qbuttongroup - unknown status
- tst_qcalendarwidget - unknown status
- tst_qcheckbox - unknown status
- tst_qcolordialog - unknown status
- tst_qcolumnview - unknown status
- tst_qcombobox - unknown status
- tst_qcommandlinkbutton - unknown status
- tst_qcompleter - unknown status
- tst_qcomplextext - unknown status
- tst_qcssparser - unknown status
- tst_qdatawidgetmapper - unknown status
- tst_qdatetimeedit - unknown status
- tst_qdialog - unknown status
- tst_qdialogbuttonbox - unknown status
- ...
| FALSE | never evaluated |
| 0-208 |
157 | destructor(q);executed 208 times by 124 tests: destructor(q); Executed by:- tst_QApplication
- tst_QFontCache
- tst_QNetworkReply
- tst_languagechange - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractspinbox - unknown status
- tst_qabstracttextdocumentlayout - unknown status
- tst_qaccessibility - unknown status
- tst_qapplication - unknown status
- tst_qboxlayout - unknown status
- tst_qbuttongroup - unknown status
- tst_qcalendarwidget - unknown status
- tst_qcheckbox - unknown status
- tst_qcolordialog - unknown status
- tst_qcolumnview - unknown status
- tst_qcombobox - unknown status
- tst_qcommandlinkbutton - unknown status
- tst_qcompleter - unknown status
- tst_qcomplextext - unknown status
- tst_qcssparser - unknown status
- tst_qdatawidgetmapper - unknown status
- tst_qdatetimeedit - unknown status
- tst_qdialog - unknown status
- tst_qdialogbuttonbox - unknown status
- ...
| 208 |
158 | }executed 208 times by 124 tests: end of block Executed by:- tst_QApplication
- tst_QFontCache
- tst_QNetworkReply
- tst_languagechange - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractspinbox - unknown status
- tst_qabstracttextdocumentlayout - unknown status
- tst_qaccessibility - unknown status
- tst_qapplication - unknown status
- tst_qboxlayout - unknown status
- tst_qbuttongroup - unknown status
- tst_qcalendarwidget - unknown status
- tst_qcheckbox - unknown status
- tst_qcolordialog - unknown status
- tst_qcolumnview - unknown status
- tst_qcombobox - unknown status
- tst_qcommandlinkbutton - unknown status
- tst_qcompleter - unknown status
- tst_qcomplextext - unknown status
- tst_qcssparser - unknown status
- tst_qdatawidgetmapper - unknown status
- tst_qdatetimeedit - unknown status
- tst_qdialog - unknown status
- tst_qdialogbuttonbox - unknown status
- ...
| 208 |
159 | | - |
160 | | - |
161 | value = p; | - |
162 | DEBUG_MSG("QThreadStorageData: Set storage %d for thread %p to %p", id, data->thread.load(), p); dead code: QMessageLogger(__FILE__, 162, __PRETTY_FUNCTION__).debug("QThreadStorageData: Set storage %d for thread %p to %p", id, data->thread.load(), p); | - |
163 | return &value;executed 12713 times by 340 tests: return &value; Executed by:- tst_Compiler
- tst_Gestures
- tst_LargeFile
- tst_ModelTest
- tst_NetworkSelfTest
- tst_QAbstractAnimation
- tst_QAbstractButton
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractScrollArea
- tst_QAbstractSlider
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QActionGroup
- tst_QAlgorithms
- tst_QAnimationGroup
- tst_QApplication
- tst_QAuthenticator
- tst_QBackingStore
- tst_QBoxLayout
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QCheckBox
- ...
| 12713 |
164 | } | - |
165 | | - |
166 | void QThreadStorageData::finish(void **p) | - |
167 | { | - |
168 | QVector<void *> *tls = reinterpret_cast<QVector<void *> *>(p); | - |
169 | if (!tls || tls->isEmpty() || !destructors())TRUE | never evaluated | FALSE | evaluated 640462 times by 617 testsEvaluated by:- tst_QAbstractNetworkCache
- tst_QApplication
- tst_QAtomicInt
- tst_QCommandLineParser
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractInterface
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QDnsLookup_Appless
- tst_QEventLoop
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFreeList
- tst_QFtp
- tst_QFuture
- tst_QGlobal
- tst_QGlobalStatic
- tst_QGraphicsProxyWidget
- tst_QGuiApplication
- tst_QGuiEventLoop
- ...
|
TRUE | evaluated 639450 times by 607 testsEvaluated by:- tst_QApplication
- tst_QAtomicInt
- tst_QCommandLineParser
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractInterface
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QDnsLookup_Appless
- tst_QEventLoop
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFreeList
- tst_QFtp
- tst_QGlobal
- tst_QGlobalStatic
- tst_QGraphicsProxyWidget
- tst_QGuiApplication
- tst_QGuiEventLoop
- tst_QHostInfo
- tst_QLocalSocket
- ...
| FALSE | evaluated 1012 times by 270 testsEvaluated by:- tst_QAbstractNetworkCache
- tst_QApplication
- tst_QDnsLookup_Appless
- tst_QFuture
- tst_QGuiApplication
- tst_QHttpNetworkConnection
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkDiskCache
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QPainter
- tst_QSettings
- tst_QTcpSocket
- tst_QUuid
- tst_QXmlInputSource
- tst_Spdy
- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- ...
|
TRUE | never evaluated | FALSE | evaluated 1012 times by 270 testsEvaluated by:- tst_QAbstractNetworkCache
- tst_QApplication
- tst_QDnsLookup_Appless
- tst_QFuture
- tst_QGuiApplication
- tst_QHttpNetworkConnection
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkDiskCache
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QPainter
- tst_QSettings
- tst_QTcpSocket
- tst_QUuid
- tst_QXmlInputSource
- tst_Spdy
- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- ...
|
| 0-640462 |
170 | return; executed 639450 times by 607 tests: return; Executed by:- tst_QApplication
- tst_QAtomicInt
- tst_QCommandLineParser
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusAbstractInterface
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDBusPendingCall
- tst_QDBusThreading
- tst_QDnsLookup_Appless
- tst_QEventLoop
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QFreeList
- tst_QFtp
- tst_QGlobal
- tst_QGlobalStatic
- tst_QGraphicsProxyWidget
- tst_QGuiApplication
- tst_QGuiEventLoop
- tst_QHostInfo
- tst_QLocalSocket
- ...
| 639450 |
171 | | - |
172 | DEBUG_MSG("QThreadStorageData: Destroying storage for thread %p", QThread::currentThread()); dead code: QMessageLogger(__FILE__, 172, __PRETTY_FUNCTION__).debug("QThreadStorageData: Destroying storage for thread %p", QThread::currentThread()); | - |
173 | while (!tls->isEmpty()) {TRUE | evaluated 2749 times by 270 testsEvaluated by:- tst_QAbstractNetworkCache
- tst_QApplication
- tst_QDnsLookup_Appless
- tst_QFuture
- tst_QGuiApplication
- tst_QHttpNetworkConnection
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkDiskCache
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QPainter
- tst_QSettings
- tst_QTcpSocket
- tst_QUuid
- tst_QXmlInputSource
- tst_Spdy
- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- ...
| FALSE | evaluated 1012 times by 270 testsEvaluated by:- tst_QAbstractNetworkCache
- tst_QApplication
- tst_QDnsLookup_Appless
- tst_QFuture
- tst_QGuiApplication
- tst_QHttpNetworkConnection
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkDiskCache
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QPainter
- tst_QSettings
- tst_QTcpSocket
- tst_QUuid
- tst_QXmlInputSource
- tst_Spdy
- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- ...
|
| 1012-2749 |
174 | void *&value = tls->last(); | - |
175 | void *q = value; | - |
176 | value = 0; | - |
177 | int i = tls->size() - 1; | - |
178 | tls->resize(i); | - |
179 | | - |
180 | if (!q) {TRUE | evaluated 1370 times by 253 testsEvaluated by:- tst_QAbstractNetworkCache
- tst_QApplication
- tst_QDnsLookup_Appless
- tst_QGuiApplication
- tst_QHttpNetworkConnection
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkDiskCache
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QPainter
- tst_QTcpSocket
- tst_QXmlInputSource
- tst_Spdy
- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractprintdialog - unknown status
- tst_qabstractproxymodel - unknown status
- tst_qabstractscrollarea - unknown status
- ...
| FALSE | evaluated 1379 times by 188 testsEvaluated by:- tst_QAbstractNetworkCache
- tst_QApplication
- tst_QDnsLookup_Appless
- tst_QFuture
- tst_QHttpNetworkConnection
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkDiskCache
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QPainter
- tst_QSettings
- tst_QTcpSocket
- tst_QUuid
- tst_QXmlInputSource
- tst_Spdy
- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractspinbox - unknown status
- ...
|
| 1370-1379 |
181 | | - |
182 | continue;executed 1370 times by 253 tests: continue; Executed by:- tst_QAbstractNetworkCache
- tst_QApplication
- tst_QDnsLookup_Appless
- tst_QGuiApplication
- tst_QHttpNetworkConnection
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkDiskCache
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QPainter
- tst_QTcpSocket
- tst_QXmlInputSource
- tst_Spdy
- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractprintdialog - unknown status
- tst_qabstractproxymodel - unknown status
- tst_qabstractscrollarea - unknown status
- ...
| 1370 |
183 | } | - |
184 | | - |
185 | QMutexLocker locker(&destructorsMutex); | - |
186 | void (*destructor)(void *) = destructors()->value(i); | - |
187 | locker.unlock(); | - |
188 | | - |
189 | if (!destructor) {TRUE | never evaluated | FALSE | evaluated 1379 times by 188 testsEvaluated by:- tst_QAbstractNetworkCache
- tst_QApplication
- tst_QDnsLookup_Appless
- tst_QFuture
- tst_QHttpNetworkConnection
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkDiskCache
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QPainter
- tst_QSettings
- tst_QTcpSocket
- tst_QUuid
- tst_QXmlInputSource
- tst_Spdy
- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractspinbox - unknown status
- ...
|
| 0-1379 |
190 | if (QThread::currentThread())TRUE | never evaluated | FALSE | never evaluated |
| 0 |
191 | qWarning("QThreadStorage: Thread %p exited after QThreadStorage %d destroyed", never executed: QMessageLogger(__FILE__, 191, __PRETTY_FUNCTION__).warning("QThreadStorage: Thread %p exited after QThreadStorage %d destroyed", QThread::currentThread(), i); | 0 |
192 | QThread::currentThread(), i); never executed: QMessageLogger(__FILE__, 191, __PRETTY_FUNCTION__).warning("QThreadStorage: Thread %p exited after QThreadStorage %d destroyed", QThread::currentThread(), i); | 0 |
193 | continue; never executed: continue; | 0 |
194 | } | - |
195 | destructor(q); | - |
196 | | - |
197 | if (tls->size() > i) {TRUE | evaluated 26 times by 26 testsEvaluated by:- tst_gestures - unknown status
- tst_qabstractanimation - unknown status
- tst_qaccessibility - unknown status
- tst_qcolumnview - unknown status
- tst_qdockwidget - unknown status
- tst_qgraphicsproxywidget - unknown status
- tst_qlineedit - unknown status
- tst_qmainwindow - unknown status
- tst_qmdiarea - unknown status
- tst_qmdisubwindow - unknown status
- tst_qmenu - unknown status
- tst_qparallelanimationgroup - unknown status
- tst_qpauseanimation - unknown status
- tst_qprinter - unknown status
- tst_qprogressbar - unknown status
- tst_qpropertyanimation - unknown status
- tst_qscroller - unknown status
- tst_qsequentialanimationgroup - unknown status
- tst_qshortcut - unknown status
- tst_qstatemachine - unknown status
- tst_qstylesheetstyle - unknown status
- tst_qtoolbar - unknown status
- tst_qtreeview - unknown status
- tst_qwidget - unknown status
- tst_qwidget_window - unknown status
- ...
| FALSE | evaluated 1353 times by 188 testsEvaluated by:- tst_QAbstractNetworkCache
- tst_QApplication
- tst_QDnsLookup_Appless
- tst_QFuture
- tst_QHttpNetworkConnection
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkDiskCache
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QPainter
- tst_QSettings
- tst_QTcpSocket
- tst_QUuid
- tst_QXmlInputSource
- tst_Spdy
- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractspinbox - unknown status
- ...
|
| 26-1353 |
198 | | - |
199 | (*tls)[i] = 0; | - |
200 | }executed 26 times by 26 tests: end of block Executed by:- tst_gestures - unknown status
- tst_qabstractanimation - unknown status
- tst_qaccessibility - unknown status
- tst_qcolumnview - unknown status
- tst_qdockwidget - unknown status
- tst_qgraphicsproxywidget - unknown status
- tst_qlineedit - unknown status
- tst_qmainwindow - unknown status
- tst_qmdiarea - unknown status
- tst_qmdisubwindow - unknown status
- tst_qmenu - unknown status
- tst_qparallelanimationgroup - unknown status
- tst_qpauseanimation - unknown status
- tst_qprinter - unknown status
- tst_qprogressbar - unknown status
- tst_qpropertyanimation - unknown status
- tst_qscroller - unknown status
- tst_qsequentialanimationgroup - unknown status
- tst_qshortcut - unknown status
- tst_qstatemachine - unknown status
- tst_qstylesheetstyle - unknown status
- tst_qtoolbar - unknown status
- tst_qtreeview - unknown status
- tst_qwidget - unknown status
- tst_qwidget_window - unknown status
- ...
| 26 |
201 | }executed 1379 times by 188 tests: end of block Executed by:- tst_QAbstractNetworkCache
- tst_QApplication
- tst_QDnsLookup_Appless
- tst_QFuture
- tst_QHttpNetworkConnection
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkDiskCache
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QPainter
- tst_QSettings
- tst_QTcpSocket
- tst_QUuid
- tst_QXmlInputSource
- tst_Spdy
- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- tst_qabstractnetworkcache - unknown status
- tst_qabstractspinbox - unknown status
- ...
| 1379 |
202 | tls->clear(); | - |
203 | }executed 1012 times by 270 tests: end of block Executed by:- tst_QAbstractNetworkCache
- tst_QApplication
- tst_QDnsLookup_Appless
- tst_QFuture
- tst_QGuiApplication
- tst_QHttpNetworkConnection
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkDiskCache
- tst_QNetworkProxyFactory
- tst_QNetworkReply
- tst_QPainter
- tst_QSettings
- tst_QTcpSocket
- tst_QUuid
- tst_QXmlInputSource
- tst_Spdy
- tst_compiler - unknown status
- tst_gestures - unknown status
- tst_lancelot - unknown status
- tst_languagechange - unknown status
- tst_modeltest - unknown status
- tst_networkselftest - unknown status
- tst_qabstractanimation - unknown status
- tst_qabstractbutton - unknown status
- tst_qabstractitemview - unknown status
- ...
| 1012 |
204 | | - |
205 | | - |
206 | | - |
207 | | - |
208 | | - |
209 | | - |
210 | | - |
211 | | - |
212 | | - |
213 | | - |
214 | | - |
215 | | - |
216 | | - |
217 | | - |
218 | | - |
219 | | - |
220 | | - |
221 | | - |
222 | | - |
223 | | - |
224 | | - |
225 | | - |
226 | | - |
227 | | - |
228 | | - |
229 | | - |
230 | | - |
231 | | - |
232 | | - |
233 | | - |
234 | | - |
235 | | - |
236 | | - |
237 | | - |
238 | | - |
239 | | - |
240 | | - |
241 | | - |
242 | | - |
243 | | - |
244 | | - |
245 | | - |
246 | | - |
247 | | - |
248 | | - |
249 | | - |
250 | | - |
251 | | - |
252 | | - |
253 | | - |
254 | | - |
255 | | - |
256 | | - |
257 | | - |
258 | | - |
259 | | - |
260 | | - |
261 | | - |
262 | | - |
263 | | - |
264 | | - |
265 | | - |
266 | | - |
267 | | - |
268 | | - |
269 | | - |
270 | | - |
271 | | - |
272 | | - |
273 | | - |
274 | | - |
275 | | - |
276 | | - |
277 | | - |
278 | | - |
279 | | - |
280 | | - |
281 | | - |
282 | | - |
283 | | - |
284 | | - |
285 | | - |
286 | | - |
287 | | - |
288 | | - |
289 | | - |
290 | | - |
291 | | - |
292 | | - |
293 | | - |
294 | | - |
295 | | - |
296 | | - |
297 | | - |
298 | | - |
299 | | - |
300 | | - |
301 | | - |
302 | | - |
303 | | - |
304 | | - |
305 | | - |
306 | | - |
307 | | - |
308 | | - |
309 | | - |
310 | | - |
311 | | - |
312 | | - |
313 | | - |
314 | | - |
315 | | - |
316 | | - |
317 | | - |
318 | | - |
319 | | - |
320 | #endif // QT_NO_THREAD | - |
321 | | - |
322 | QT_END_NAMESPACE | - |
| | |