Line | Source | Count |
1 | | - |
2 | | - |
3 | | - |
4 | | - |
5 | | - |
6 | | - |
7 | | - |
8 | | - |
9 | | - |
10 | | - |
11 | | - |
12 | QString QFileSystemEngine::slowCanonicalized(const QString &path) | - |
13 | { | - |
14 | if (path.isEmpty()TRUE | never evaluated | FALSE | never evaluated |
) | 0 |
15 | return never executed: return path; path;never executed: return path; | 0 |
16 | | - |
17 | QFileInfo fi; | - |
18 | const QChar slash(QLatin1Char('/')); | - |
19 | QString tmpPath = path; | - |
20 | int separatorPos = 0; | - |
21 | QSet<QString> nonSymlinks; | - |
22 | QSet<QString> known; | - |
23 | | - |
24 | known.insert(path); | - |
25 | do { | - |
26 | separatorPos = tmpPath.indexOf(slash, separatorPos + 1); | - |
27 | QString prefix = separatorPos == -1TRUE | never evaluated | FALSE | never evaluated |
? tmpPath : tmpPath.left(separatorPos); | 0 |
28 | if (!nonSymlinks.contains(prefix)TRUE | never evaluated | FALSE | never evaluated |
) { | 0 |
29 | fi.setFile(prefix); | - |
30 | if (fi.isSymLink()TRUE | never evaluated | FALSE | never evaluated |
) { | 0 |
31 | QString target = fi.symLinkTarget(); | - |
32 | if(QFileInfo(target).isRelative()TRUE | never evaluated | FALSE | never evaluated |
) | 0 |
33 | target = fi.absolutePath() + slash + target; never executed: target = fi.absolutePath() + slash + target; | 0 |
34 | if (separatorPos != -1TRUE | never evaluated | FALSE | never evaluated |
) { | 0 |
35 | if (fi.isDir()TRUE | never evaluated | FALSE | never evaluated |
&& !target.endsWith(slash)TRUE | never evaluated | FALSE | never evaluated |
) | 0 |
36 | target.append(slash); never executed: target.append(slash); | 0 |
37 | target.append(tmpPath.mid(separatorPos)); | - |
38 | } never executed: end of block | 0 |
39 | tmpPath = QDir::cleanPath(target); | - |
40 | separatorPos = 0; | - |
41 | | - |
42 | if (known.contains(tmpPath)TRUE | never evaluated | FALSE | never evaluated |
) | 0 |
43 | return never executed: return QString(); QString();never executed: return QString(); | 0 |
44 | known.insert(tmpPath); | - |
45 | } never executed: end of block else { | 0 |
46 | nonSymlinks.insert(prefix); | - |
47 | } never executed: end of block | 0 |
48 | } | - |
49 | } never executed: end of block while (separatorPos != -1TRUE | never evaluated | FALSE | never evaluated |
); | 0 |
50 | | - |
51 | return never executed: return QDir::cleanPath(tmpPath); QDir::cleanPath(tmpPath);never executed: return QDir::cleanPath(tmpPath); | 0 |
52 | } | - |
53 | | - |
54 | static inline bool _q_checkEntry(QFileSystemEntry &entry, QFileSystemMetaData &data, bool resolvingEntry) | - |
55 | { | - |
56 | if (resolvingEntryTRUE | evaluated 46 times by 2 testsEvaluated by:- tst_QDir
- tst_QNetworkReply
| FALSE | evaluated 544969 times by 300 testsEvaluated by:- tst_Gestures
- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- ...
|
) { | 46-544969 |
57 | if (!QFileSystemEngine::fillMetaData(entry, data, QFileSystemMetaData::ExistsAttribute)TRUE | never evaluated | FALSE | evaluated 46 times by 2 testsEvaluated by:- tst_QDir
- tst_QNetworkReply
|
| 0-46 |
58 | || !data.exists()TRUE | never evaluated | FALSE | evaluated 46 times by 2 testsEvaluated by:- tst_QDir
- tst_QNetworkReply
|
) { | 0-46 |
59 | data.clear(); | - |
60 | return never executed: return false; false;never executed: return false; | 0 |
61 | } | - |
62 | }executed 46 times by 2 tests: end of block Executed by:- tst_QDir
- tst_QNetworkReply
| 46 |
63 | | - |
64 | returnexecuted 545015 times by 300 tests: return true; Executed by:- tst_Gestures
- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- ...
true;executed 545015 times by 300 tests: return true; Executed by:- tst_Gestures
- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- ...
| 545015 |
65 | } | - |
66 | | - |
67 | static inline bool _q_checkEntry(QAbstractFileEngine *&engine, bool resolvingEntry) | - |
68 | { | - |
69 | if (resolvingEntryTRUE | evaluated 1 time by 1 test | FALSE | evaluated 44726 times by 112 testsEvaluated by:- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDirIterator
- tst_QDnsLookup_Appless
- tst_QDoubleSpinBox
- tst_QErrorMessage
- tst_QFile
- ...
|
) { | 1-44726 |
70 | if (!(engine->fileFlags(QAbstractFileEngine::FlagsMask) & QAbstractFileEngine::ExistsFlag)TRUE | never evaluated | FALSE | evaluated 1 time by 1 test |
) { | 0-1 |
71 | delete engine; | - |
72 | engine = 0; | - |
73 | return never executed: return false; false;never executed: return false; | 0 |
74 | } | - |
75 | }executed 1 time by 1 test: end of block | 1 |
76 | | - |
77 | returnexecuted 44727 times by 112 tests: return true; Executed by:- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDirIterator
- tst_QDnsLookup_Appless
- tst_QDoubleSpinBox
- tst_QErrorMessage
- tst_QFile
- ...
true;executed 44727 times by 112 tests: return true; Executed by:- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDirIterator
- tst_QDnsLookup_Appless
- tst_QDoubleSpinBox
- tst_QErrorMessage
- tst_QFile
- ...
| 44727 |
78 | } | - |
79 | | - |
80 | static bool _q_resolveEntryAndCreateLegacyEngine_recursive(QFileSystemEntry &entry, QFileSystemMetaData &data, | - |
81 | QAbstractFileEngine *&engine, bool resolvingEntry = false) | - |
82 | { | - |
83 | QString const &filePath = entry.filePath(); | - |
84 | if ((TRUE | evaluated 53 times by 3 testsEvaluated by:- tst_QAbstractFileEngine
- tst_QDirIterator
- tst_QFile
| FALSE | evaluated 589768 times by 302 testsEvaluated by:- tst_Gestures
- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- ...
|
engine = qt_custom_file_engine_handler_create(filePath))TRUE | evaluated 53 times by 3 testsEvaluated by:- tst_QAbstractFileEngine
- tst_QDirIterator
- tst_QFile
| FALSE | evaluated 589768 times by 302 testsEvaluated by:- tst_Gestures
- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- ...
|
) | 53-589768 |
85 | returnexecuted 53 times by 3 tests: return _q_checkEntry(engine, resolvingEntry); Executed by:- tst_QAbstractFileEngine
- tst_QDirIterator
- tst_QFile
_q_checkEntry(engine, resolvingEntry);executed 53 times by 3 tests: return _q_checkEntry(engine, resolvingEntry); Executed by:- tst_QAbstractFileEngine
- tst_QDirIterator
- tst_QFile
| 53 |
86 | | - |
87 | | - |
88 | for (int prefixSeparator = 0; prefixSeparator < filePath.size()TRUE | evaluated 2156379 times by 302 testsEvaluated by:- tst_Gestures
- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- ...
| FALSE | evaluated 122542 times by 223 testsEvaluated by:- tst_Gestures
- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBackingStore
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- ...
|
; ++prefixSeparator) { | 122542-2156379 |
89 | QChar const ch = filePath[prefixSeparator]; | - |
90 | if (ch == QLatin1Char('/')TRUE | evaluated 422471 times by 295 testsEvaluated by:- tst_Gestures
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
| FALSE | evaluated 1733908 times by 237 testsEvaluated by:- tst_Gestures
- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBackingStore
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- ...
|
) | 422471-1733908 |
91 | break;executed 422471 times by 295 tests: break; Executed by:- tst_Gestures
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- ...
| 422471 |
92 | | - |
93 | if (ch == QLatin1Char(':')TRUE | evaluated 44755 times by 113 testsEvaluated by:- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDirIterator
- tst_QDnsLookup_Appless
- tst_QDoubleSpinBox
- tst_QErrorMessage
- tst_QFile
- ...
| FALSE | evaluated 1689153 times by 234 testsEvaluated by:- tst_Gestures
- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBackingStore
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- ...
|
) { | 44755-1689153 |
94 | if (prefixSeparator == 0TRUE | evaluated 44674 times by 112 testsEvaluated by:- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDirIterator
- tst_QDnsLookup_Appless
- tst_QDoubleSpinBox
- tst_QErrorMessage
- tst_QFile
- ...
| FALSE | evaluated 81 times by 5 testsEvaluated by:- tst_QAbstractFileEngine
- tst_QDir
- tst_QMimeDatabase
- tst_QNetworkReply
- tst_QUrl
|
) { | 81-44674 |
95 | engine = new QResourceFileEngine(filePath); | - |
96 | returnexecuted 44674 times by 112 tests: return _q_checkEntry(engine, resolvingEntry); Executed by:- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDirIterator
- tst_QDnsLookup_Appless
- tst_QDoubleSpinBox
- tst_QErrorMessage
- tst_QFile
- ...
_q_checkEntry(engine, resolvingEntry);executed 44674 times by 112 tests: return _q_checkEntry(engine, resolvingEntry); Executed by:- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDirIterator
- tst_QDnsLookup_Appless
- tst_QDoubleSpinBox
- tst_QErrorMessage
- tst_QFile
- ...
| 44674 |
97 | } | - |
98 | | - |
99 | if (prefixSeparator == 1TRUE | evaluated 2 times by 1 test | FALSE | evaluated 79 times by 5 testsEvaluated by:- tst_QAbstractFileEngine
- tst_QDir
- tst_QMimeDatabase
- tst_QNetworkReply
- tst_QUrl
|
) | 2-79 |
100 | break;executed 2 times by 1 test: break; | 2 |
101 | | - |
102 | const QStringList &paths = QDir::searchPaths(filePath.left(prefixSeparator)); | - |
103 | for (int i = 0; i < paths.count()TRUE | evaluated 47 times by 2 testsEvaluated by:- tst_QDir
- tst_QNetworkReply
| FALSE | evaluated 32 times by 5 testsEvaluated by:- tst_QAbstractFileEngine
- tst_QDir
- tst_QMimeDatabase
- tst_QNetworkReply
- tst_QUrl
|
; i++) { | 32-47 |
104 | entry = QFileSystemEntry(QDir::cleanPath(paths.at(i) % QLatin1Char('/') % filePath.midRef(prefixSeparator + 1))); | - |
105 | | - |
106 | if (_q_resolveEntryAndCreateLegacyEngine_recursive(entry, data, engine, true)TRUE | evaluated 47 times by 2 testsEvaluated by:- tst_QDir
- tst_QNetworkReply
| FALSE | never evaluated |
) | 0-47 |
107 | returnexecuted 47 times by 2 tests: return true; Executed by:- tst_QDir
- tst_QNetworkReply
true;executed 47 times by 2 tests: return true; Executed by:- tst_QDir
- tst_QNetworkReply
| 47 |
108 | } never executed: end of block | 0 |
109 | | - |
110 | | - |
111 | returnexecuted 32 times by 5 tests: return false; Executed by:- tst_QAbstractFileEngine
- tst_QDir
- tst_QMimeDatabase
- tst_QNetworkReply
- tst_QUrl
false;executed 32 times by 5 tests: return false; Executed by:- tst_QAbstractFileEngine
- tst_QDir
- tst_QMimeDatabase
- tst_QNetworkReply
- tst_QUrl
| 32 |
112 | } | - |
113 | | - |
114 | | - |
115 | | - |
116 | | - |
117 | | - |
118 | | - |
119 | | - |
120 | }executed 1689153 times by 234 tests: end of block Executed by:- tst_Gestures
- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBackingStore
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- ...
| 1689153 |
121 | | - |
122 | | - |
123 | returnexecuted 545015 times by 300 tests: return _q_checkEntry(entry, data, resolvingEntry); Executed by:- tst_Gestures
- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- ...
_q_checkEntry(entry, data, resolvingEntry);executed 545015 times by 300 tests: return _q_checkEntry(entry, data, resolvingEntry); Executed by:- tst_Gestures
- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- ...
| 545015 |
124 | } | - |
125 | QAbstractFileEngine *QFileSystemEngine::resolveEntryAndCreateLegacyEngine( | - |
126 | QFileSystemEntry &entry, QFileSystemMetaData &data) { | - |
127 | QFileSystemEntry copy = entry; | - |
128 | QAbstractFileEngine *engine = 0; | - |
129 | | - |
130 | if (_q_resolveEntryAndCreateLegacyEngine_recursive(copy, data, engine)TRUE | evaluated 589742 times by 302 testsEvaluated by:- tst_Gestures
- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- ...
| FALSE | evaluated 32 times by 5 testsEvaluated by:- tst_QAbstractFileEngine
- tst_QDir
- tst_QMimeDatabase
- tst_QNetworkReply
- tst_QUrl
|
) | 32-589742 |
131 | | - |
132 | entry = copy;executed 589742 times by 302 tests: entry = copy; Executed by:- tst_Gestures
- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- ...
| 589742 |
133 | else | - |
134 | data.clear();executed 32 times by 5 tests: data.clear(); Executed by:- tst_QAbstractFileEngine
- tst_QDir
- tst_QMimeDatabase
- tst_QNetworkReply
- tst_QUrl
| 32 |
135 | | - |
136 | returnexecuted 589774 times by 302 tests: return engine; Executed by:- tst_Gestures
- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- ...
engine;executed 589774 times by 302 tests: return engine; Executed by:- tst_Gestures
- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractButton
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAbstractSpinBox
- tst_QAbstractTextDocumentLayout
- tst_QAccessibility
- tst_QAction
- tst_QApplication
- tst_QBackingStore
- tst_QBoxLayout
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QCheckBox
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- ...
| 589774 |
137 | } | - |
138 | | - |
139 | | - |
140 | | - |
141 | | - |
142 | | - |
143 | bool QFileSystemEngine::fillMetaData(int fd, QFileSystemMetaData &data) | - |
144 | { | - |
145 | data.entryFlags &= ~QFileSystemMetaData::PosixStatFlags; | - |
146 | data.knownFlagsMask |= QFileSystemMetaData::PosixStatFlags; | - |
147 | | - |
148 | struct stat64 statBuffer; | - |
149 | if (::TRUE | evaluated 180608 times by 168 testsEvaluated by:- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCryptographicHash
- tst_QCssParser
- tst_QDataStream
- tst_QDateTime
- tst_QDateTimeEdit
- tst_QDebug
- ...
| FALSE | never evaluated |
fstat64(fd, &statBuffer) == 0TRUE | evaluated 180608 times by 168 testsEvaluated by:- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCryptographicHash
- tst_QCssParser
- tst_QDataStream
- tst_QDateTime
- tst_QDateTimeEdit
- tst_QDebug
- ...
| FALSE | never evaluated |
) { | 0-180608 |
150 | data.fillFromStatBuf(statBuffer); | - |
151 | returnexecuted 180608 times by 168 tests: return true; Executed by:- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCryptographicHash
- tst_QCssParser
- tst_QDataStream
- tst_QDateTime
- tst_QDateTimeEdit
- tst_QDebug
- ...
true;executed 180608 times by 168 tests: return true; Executed by:- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCryptographicHash
- tst_QCssParser
- tst_QDataStream
- tst_QDateTime
- tst_QDateTimeEdit
- tst_QDebug
- ...
| 180608 |
152 | } | - |
153 | | - |
154 | return never executed: return false; false;never executed: return false; | 0 |
155 | } | - |
156 | void QFileSystemMetaData::fillFromStatBuf(const struct stat64 &statBuffer) | - |
157 | { | - |
158 | | - |
159 | if (statBuffer.st_mode & 0400TRUE | evaluated 239257 times by 232 testsEvaluated by:- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCryptographicHash
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- ...
| FALSE | evaluated 27 times by 6 testsEvaluated by:- tst_QDir
- tst_QFile
- tst_QFileSystemModel
- tst_QLocalSocket
- tst_QMimeDatabase
- tst_QNetworkReply
|
) | 27-239257 |
160 | entryFlags |= QFileSystemMetaData::OwnerReadPermission;executed 239257 times by 232 tests: entryFlags |= QFileSystemMetaData::OwnerReadPermission; Executed by:- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCryptographicHash
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- ...
| 239257 |
161 | if (statBuffer.st_mode & 0200TRUE | evaluated 239135 times by 232 testsEvaluated by:- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCryptographicHash
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- ...
| FALSE | evaluated 149 times by 15 testsEvaluated by:- tst_QCompleter
- tst_QDir
- tst_QFile
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFileSystemWatcher
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QImageWriter
- tst_QItemModel
- tst_QLocalSocket
- tst_QLockFile
- tst_QMimeDatabase
- tst_QSaveFile
- tst_languageChange
|
) | 149-239135 |
162 | entryFlags |= QFileSystemMetaData::OwnerWritePermission;executed 239135 times by 232 tests: entryFlags |= QFileSystemMetaData::OwnerWritePermission; Executed by:- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCryptographicHash
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- ...
| 239135 |
163 | if (statBuffer.st_mode & 0100TRUE | evaluated 19117 times by 197 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- ...
| FALSE | evaluated 220167 times by 181 testsEvaluated by:- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCryptographicHash
- tst_QCssParser
- tst_QDataStream
- tst_QDateTime
- tst_QDateTimeEdit
- tst_QDebug
- ...
|
) | 19117-220167 |
164 | entryFlags |= QFileSystemMetaData::OwnerExecutePermission;executed 19117 times by 197 tests: entryFlags |= QFileSystemMetaData::OwnerExecutePermission; Executed by:- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- ...
| 19117 |
165 | | - |
166 | if (statBuffer.st_mode & (0400 >> 3)TRUE | evaluated 234699 times by 210 testsEvaluated by:- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCryptographicHash
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- ...
| FALSE | evaluated 4585 times by 60 testsEvaluated by:- tst_QAbstractFileEngine
- tst_QAbstractNetworkCache
- tst_QCompleter
- tst_QDir
- tst_QFile
- tst_QFileDialog2
- tst_QFileInfo
- tst_QFileSystemModel
- tst_QFileSystemWatcher
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QImageReader
- tst_QImageWriter
- tst_QItemModel
- tst_QLocalSocket
- tst_QMimeDatabase
- tst_QNetworkDiskCache
- tst_QNetworkReply
- tst_QPixmap
- tst_QPrinterInfo
- tst_QSaveFile
- tst_QSharedPointer
- tst_QSql
- tst_QStorageInfo
- tst_QTemporaryDir
- ...
|
) | 4585-234699 |
167 | entryFlags |= QFileSystemMetaData::GroupReadPermission;executed 234699 times by 210 tests: entryFlags |= QFileSystemMetaData::GroupReadPermission; Executed by:- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCryptographicHash
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- ...
| 234699 |
168 | if (statBuffer.st_mode & (0200 >> 3)TRUE | evaluated 710 times by 17 testsEvaluated by:- tst_QCompleter
- tst_QDir
- tst_QFile
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QItemModel
- tst_QLocalSocket
- tst_QProcess
- tst_QRawFont
- tst_QSidebar
- tst_QTemporaryFile
- tst_QUuid
- tst_languageChange
- tst_qstandardpaths
- tst_quuid - unknown status
| FALSE | evaluated 238574 times by 231 testsEvaluated by:- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCryptographicHash
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- ...
|
) | 710-238574 |
169 | entryFlags |= QFileSystemMetaData::GroupWritePermission;executed 710 times by 17 tests: entryFlags |= QFileSystemMetaData::GroupWritePermission; Executed by:- tst_QCompleter
- tst_QDir
- tst_QFile
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QItemModel
- tst_QLocalSocket
- tst_QProcess
- tst_QRawFont
- tst_QSidebar
- tst_QTemporaryFile
- tst_QUuid
- tst_languageChange
- tst_qstandardpaths
- tst_quuid - unknown status
| 710 |
170 | if (statBuffer.st_mode & (0100 >> 3)TRUE | evaluated 17072 times by 177 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDBusInterface
- ...
| FALSE | evaluated 222212 times by 207 testsEvaluated by:- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCryptographicHash
- tst_QCssParser
- tst_QDataStream
- tst_QDateTime
- tst_QDateTimeEdit
- tst_QDebug
- ...
|
) | 17072-222212 |
171 | entryFlags |= QFileSystemMetaData::GroupExecutePermission;executed 17072 times by 177 tests: entryFlags |= QFileSystemMetaData::GroupExecutePermission; Executed by:- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDBusInterface
- ...
| 17072 |
172 | | - |
173 | if (statBuffer.st_mode & ((0400 >> 3) >> 3)TRUE | evaluated 231092 times by 209 testsEvaluated by:- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCryptographicHash
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- ...
| FALSE | evaluated 8192 times by 62 testsEvaluated by:- tst_QAbstractFileEngine
- tst_QAbstractNetworkCache
- tst_QCompleter
- tst_QDir
- tst_QFile
- tst_QFileDialog2
- tst_QFileInfo
- tst_QFileSystemModel
- tst_QFileSystemWatcher
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QImageReader
- tst_QImageWriter
- tst_QItemModel
- tst_QLocalSocket
- tst_QMimeDatabase
- tst_QNetworkDiskCache
- tst_QNetworkReply
- tst_QPixmap
- tst_QPrinterInfo
- tst_QSaveFile
- tst_QSharedMemory
- tst_QSharedPointer
- tst_QSql
- tst_QStorageInfo
- ...
|
) | 8192-231092 |
174 | entryFlags |= QFileSystemMetaData::OtherReadPermission;executed 231092 times by 209 tests: entryFlags |= QFileSystemMetaData::OtherReadPermission; Executed by:- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCryptographicHash
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- ...
| 231092 |
175 | if (statBuffer.st_mode & ((0200 >> 3) >> 3)TRUE | evaluated 548 times by 17 testsEvaluated by:- tst_QCompleter
- tst_QDir
- tst_QFile
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QItemModel
- tst_QLocalSocket
- tst_QProcess
- tst_QRawFont
- tst_QSidebar
- tst_QTemporaryFile
- tst_QUuid
- tst_languageChange
- tst_qstandardpaths
- tst_quuid - unknown status
| FALSE | evaluated 238736 times by 231 testsEvaluated by:- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCryptographicHash
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- ...
|
) | 548-238736 |
176 | entryFlags |= QFileSystemMetaData::OtherWritePermission;executed 548 times by 17 tests: entryFlags |= QFileSystemMetaData::OtherWritePermission; Executed by:- tst_QCompleter
- tst_QDir
- tst_QFile
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QGraphicsProxyWidget
- tst_QItemModel
- tst_QLocalSocket
- tst_QProcess
- tst_QRawFont
- tst_QSidebar
- tst_QTemporaryFile
- tst_QUuid
- tst_languageChange
- tst_qstandardpaths
- tst_quuid - unknown status
| 548 |
177 | if (statBuffer.st_mode & ((0100 >> 3) >> 3)TRUE | evaluated 17073 times by 177 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDBusInterface
- ...
| FALSE | evaluated 222211 times by 207 testsEvaluated by:- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCryptographicHash
- tst_QCssParser
- tst_QDataStream
- tst_QDateTime
- tst_QDateTimeEdit
- tst_QDebug
- ...
|
) | 17073-222211 |
178 | entryFlags |= QFileSystemMetaData::OtherExecutePermission;executed 17073 times by 177 tests: entryFlags |= QFileSystemMetaData::OtherExecutePermission; Executed by:- tst_NetworkSelfTest
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- tst_QDBusConnectionNoBus
- tst_QDBusConnectionNoLibDBus1
- tst_QDBusConnection_Delayed
- tst_QDBusInterface
- ...
| 17073 |
179 | | - |
180 | | - |
181 | if ((TRUE | evaluated 223090 times by 195 testsEvaluated by:- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCryptographicHash
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
| FALSE | evaluated 16194 times by 183 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCssParser
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDirIterator
- tst_QDirModel
- ...
|
statBuffer.st_mode & 0170000) == 0100000TRUE | evaluated 223090 times by 195 testsEvaluated by:- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCryptographicHash
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
| FALSE | evaluated 16194 times by 183 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCssParser
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDirIterator
- tst_QDirModel
- ...
|
) | 16194-223090 |
182 | entryFlags |= QFileSystemMetaData::FileType;executed 223090 times by 195 tests: entryFlags |= QFileSystemMetaData::FileType; Executed by:- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCryptographicHash
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- tst_QDBusAbstractInterface
- ...
| 223090 |
183 | else if ((TRUE | evaluated 15610 times by 178 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCssParser
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDirIterator
- tst_QDirModel
- ...
| FALSE | evaluated 584 times by 13 testsEvaluated by:- tst_QFile
- tst_QFileSystemModel
- tst_QItemModel
- tst_QLocalSocket
- tst_QMimeDatabase
- tst_QPrinterInfo
- tst_QProcess
- tst_QRawFont
- tst_QUuid
- tst_qdbuscpp2xml - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qnetworkreply - unknown status
- tst_quuid - unknown status
|
statBuffer.st_mode & 0170000) == 0040000TRUE | evaluated 15610 times by 178 testsEvaluated by:- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCssParser
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDirIterator
- tst_QDirModel
- ...
| FALSE | evaluated 584 times by 13 testsEvaluated by:- tst_QFile
- tst_QFileSystemModel
- tst_QItemModel
- tst_QLocalSocket
- tst_QMimeDatabase
- tst_QPrinterInfo
- tst_QProcess
- tst_QRawFont
- tst_QUuid
- tst_qdbuscpp2xml - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qnetworkreply - unknown status
- tst_quuid - unknown status
|
) | 584-15610 |
184 | entryFlags |= QFileSystemMetaData::DirectoryType;executed 15610 times by 178 tests: entryFlags |= QFileSystemMetaData::DirectoryType; Executed by:- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCssParser
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDirIterator
- tst_QDirModel
- ...
| 15610 |
185 | else if ((TRUE | evaluated 566 times by 13 testsEvaluated by:- tst_QFile
- tst_QFileSystemModel
- tst_QItemModel
- tst_QLocalSocket
- tst_QMimeDatabase
- tst_QPrinterInfo
- tst_QProcess
- tst_QRawFont
- tst_QUuid
- tst_qdbuscpp2xml - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qnetworkreply - unknown status
- tst_quuid - unknown status
| FALSE | evaluated 18 times by 2 testsEvaluated by:- tst_QFileSystemModel
- tst_QItemModel
|
statBuffer.st_mode & 0170000) != 0060000TRUE | evaluated 566 times by 13 testsEvaluated by:- tst_QFile
- tst_QFileSystemModel
- tst_QItemModel
- tst_QLocalSocket
- tst_QMimeDatabase
- tst_QPrinterInfo
- tst_QProcess
- tst_QRawFont
- tst_QUuid
- tst_qdbuscpp2xml - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qnetworkreply - unknown status
- tst_quuid - unknown status
| FALSE | evaluated 18 times by 2 testsEvaluated by:- tst_QFileSystemModel
- tst_QItemModel
|
) | 18-566 |
186 | entryFlags |= QFileSystemMetaData::SequentialType;executed 566 times by 13 tests: entryFlags |= QFileSystemMetaData::SequentialType; Executed by:- tst_QFile
- tst_QFileSystemModel
- tst_QItemModel
- tst_QLocalSocket
- tst_QMimeDatabase
- tst_QPrinterInfo
- tst_QProcess
- tst_QRawFont
- tst_QUuid
- tst_qdbuscpp2xml - unknown status
- tst_qdbusxml2cpp - unknown status
- tst_qnetworkreply - unknown status
- tst_quuid - unknown status
| 566 |
187 | | - |
188 | | - |
189 | entryFlags |= QFileSystemMetaData::ExistsAttribute; | - |
190 | size_ = statBuffer.st_size; | - |
191 | creationTime_ = statBuffer.st_ctim.tv_secTRUE | evaluated 239281 times by 232 testsEvaluated by:- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCryptographicHash
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- ...
| FALSE | evaluated 3 times by 1 test |
? statBuffer.st_ctim.tv_sec : statBuffer.st_mtim.tv_sec; | 3-239281 |
192 | modificationTime_ = statBuffer.st_mtim.tv_sec; | - |
193 | accessTime_ = statBuffer.st_atim.tv_sec; | - |
194 | userId_ = statBuffer.st_uid; | - |
195 | groupId_ = statBuffer.st_gid; | - |
196 | }executed 239284 times by 232 tests: end of block Executed by:- tst_LargeFile
- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QByteArray
- tst_QCalendarWidget
- tst_QChar
- tst_QClipboard
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLineParser
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCoreApplication
- tst_QCryptographicHash
- tst_QCssParser
- tst_QDBusAbstractAdaptor
- ...
| 239284 |
197 | | - |
198 | void QFileSystemMetaData::fillFromDirEnt(const struct dirent64 &entry) | - |
199 | { | - |
200 | switch (entry.d_type) | - |
201 | { | - |
202 | caseexecuted 26197 times by 164 tests: case DT_DIR: Executed by:- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCssParser
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDirIterator
- tst_QDirModel
- tst_QDoubleSpinBox
- tst_QFactoryLoader
- ...
DT_DIR:executed 26197 times by 164 tests: case DT_DIR: Executed by:- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCssParser
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDirIterator
- tst_QDirModel
- tst_QDoubleSpinBox
- tst_QFactoryLoader
- ...
| 26197 |
203 | knownFlagsMask = QFileSystemMetaData::LinkType | - |
204 | | QFileSystemMetaData::FileType | - |
205 | | QFileSystemMetaData::DirectoryType | - |
206 | | QFileSystemMetaData::SequentialType | - |
207 | | QFileSystemMetaData::ExistsAttribute; | - |
208 | | - |
209 | entryFlags = QFileSystemMetaData::DirectoryType | - |
210 | | QFileSystemMetaData::ExistsAttribute; | - |
211 | | - |
212 | break;executed 26197 times by 164 tests: break; Executed by:- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QCssParser
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDirIterator
- tst_QDirModel
- tst_QDoubleSpinBox
- tst_QFactoryLoader
- ...
| 26197 |
213 | | - |
214 | caseexecuted 16 times by 2 tests: case DT_BLK: Executed by:- tst_QFileSystemModel
- tst_QItemModel
DT_BLK:executed 16 times by 2 tests: case DT_BLK: Executed by:- tst_QFileSystemModel
- tst_QItemModel
| 16 |
215 | knownFlagsMask = QFileSystemMetaData::LinkType | - |
216 | | QFileSystemMetaData::FileType | - |
217 | | QFileSystemMetaData::DirectoryType | - |
218 | | QFileSystemMetaData::BundleType | - |
219 | | QFileSystemMetaData::AliasType | - |
220 | | QFileSystemMetaData::SequentialType | - |
221 | | QFileSystemMetaData::ExistsAttribute; | - |
222 | | - |
223 | entryFlags = QFileSystemMetaData::ExistsAttribute; | - |
224 | | - |
225 | break;executed 16 times by 2 tests: break; Executed by:- tst_QFileSystemModel
- tst_QItemModel
| 16 |
226 | | - |
227 | caseexecuted 279 times by 2 tests: case DT_CHR: Executed by:- tst_QFileSystemModel
- tst_QItemModel
DT_CHR:executed 279 times by 2 tests: case DT_CHR: Executed by:- tst_QFileSystemModel
- tst_QItemModel
| 279 |
228 | caseexecuted 6 times by 3 tests: case DT_FIFO: Executed by:- tst_QFileSystemModel
- tst_QItemModel
- tst_QMimeDatabase
DT_FIFO:executed 6 times by 3 tests: case DT_FIFO: Executed by:- tst_QFileSystemModel
- tst_QItemModel
- tst_QMimeDatabase
| 6 |
229 | caseexecuted 3 times by 1 test: case DT_SOCK: DT_SOCK:executed 3 times by 1 test: case DT_SOCK: | 3 |
230 | | - |
231 | knownFlagsMask = QFileSystemMetaData::LinkType | - |
232 | | QFileSystemMetaData::FileType | - |
233 | | QFileSystemMetaData::DirectoryType | - |
234 | | QFileSystemMetaData::BundleType | - |
235 | | QFileSystemMetaData::AliasType | - |
236 | | QFileSystemMetaData::SequentialType | - |
237 | | QFileSystemMetaData::ExistsAttribute; | - |
238 | | - |
239 | entryFlags = QFileSystemMetaData::SequentialType | - |
240 | | QFileSystemMetaData::ExistsAttribute; | - |
241 | | - |
242 | break;executed 288 times by 3 tests: break; Executed by:- tst_QFileSystemModel
- tst_QItemModel
- tst_QMimeDatabase
| 288 |
243 | | - |
244 | caseexecuted 57916 times by 28 tests: case DT_LNK: Executed by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QCompleter
- tst_QDir
- tst_QDirIterator
- tst_QDirModel
- tst_QFile
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QHttpNetworkConnection
- tst_QItemModel
- tst_QMimeDatabase
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkDiskCache
- tst_QNetworkProxyFactory
- tst_QSaveFile
- tst_QSslCertificate
- tst_QSslEllipticCurve
- tst_QSslError
- tst_QSslSocket
- tst_QSslSocket_onDemandCertificates_member
- tst_QSslSocket_onDemandCertificates_static
- tst_QTcpSocket
- tst_QXmlInputSource
- ...
DT_LNK:executed 57916 times by 28 tests: case DT_LNK: Executed by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QCompleter
- tst_QDir
- tst_QDirIterator
- tst_QDirModel
- tst_QFile
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QHttpNetworkConnection
- tst_QItemModel
- tst_QMimeDatabase
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkDiskCache
- tst_QNetworkProxyFactory
- tst_QSaveFile
- tst_QSslCertificate
- tst_QSslEllipticCurve
- tst_QSslError
- tst_QSslSocket
- tst_QSslSocket_onDemandCertificates_member
- tst_QSslSocket_onDemandCertificates_static
- tst_QTcpSocket
- tst_QXmlInputSource
- ...
| 57916 |
245 | knownFlagsMask = QFileSystemMetaData::LinkType; | - |
246 | entryFlags = QFileSystemMetaData::LinkType; | - |
247 | break;executed 57916 times by 28 tests: break; Executed by:- tst_NetworkSelfTest
- tst_QAbstractNetworkCache
- tst_QCompleter
- tst_QDir
- tst_QDirIterator
- tst_QDirModel
- tst_QFile
- tst_QFileDialog2
- tst_QFileSystemModel
- tst_QFiledialog
- tst_QHttpNetworkConnection
- tst_QItemModel
- tst_QMimeDatabase
- tst_QNetworkAccessManager_And_QProgressDialog
- tst_QNetworkDiskCache
- tst_QNetworkProxyFactory
- tst_QSaveFile
- tst_QSslCertificate
- tst_QSslEllipticCurve
- tst_QSslError
- tst_QSslSocket
- tst_QSslSocket_onDemandCertificates_member
- tst_QSslSocket_onDemandCertificates_static
- tst_QTcpSocket
- tst_QXmlInputSource
- ...
| 57916 |
248 | | - |
249 | caseexecuted 15794 times by 147 tests: case DT_REG: Executed by:- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDirIterator
- tst_QDirModel
- tst_QDoubleSpinBox
- tst_QFactoryLoader
- tst_QFile
- ...
DT_REG:executed 15794 times by 147 tests: case DT_REG: Executed by:- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDirIterator
- tst_QDirModel
- tst_QDoubleSpinBox
- tst_QFactoryLoader
- tst_QFile
- ...
| 15794 |
250 | knownFlagsMask = QFileSystemMetaData::LinkType | - |
251 | | QFileSystemMetaData::FileType | - |
252 | | QFileSystemMetaData::DirectoryType | - |
253 | | QFileSystemMetaData::BundleType | - |
254 | | QFileSystemMetaData::SequentialType | - |
255 | | QFileSystemMetaData::ExistsAttribute; | - |
256 | | - |
257 | entryFlags = QFileSystemMetaData::FileType | - |
258 | | QFileSystemMetaData::ExistsAttribute; | - |
259 | | - |
260 | break;executed 15794 times by 147 tests: break; Executed by:- tst_NetworkSelfTest
- tst_QAbstractFileEngine
- tst_QAbstractItemView
- tst_QAbstractNetworkCache
- tst_QAbstractPrintDialog
- tst_QAbstractScrollArea
- tst_QAccessibility
- tst_QApplication
- tst_QBrush
- tst_QButtonGroup
- tst_QCalendarWidget
- tst_QColorDialog
- tst_QColumnView
- tst_QComboBox
- tst_QCommandLinkButton
- tst_QCompleter
- tst_QDataStream
- tst_QDateTimeEdit
- tst_QDialog
- tst_QDir
- tst_QDirIterator
- tst_QDirModel
- tst_QDoubleSpinBox
- tst_QFactoryLoader
- tst_QFile
- ...
| 15794 |
261 | | - |
262 | case never executed: case DT_UNKNOWN: DT_UNKNOWN:never executed: case DT_UNKNOWN: | 0 |
263 | default never executed: default: :never executed: default: | 0 |
264 | clear(); | - |
265 | } never executed: end of block | 0 |
266 | | - |
267 | | - |
268 | | - |
269 | } | - |
270 | | - |
271 | | - |
272 | | - |
273 | | - |
274 | QString QFileSystemEngine::resolveUserName(const QFileSystemEntry &entry, QFileSystemMetaData &metaData) | - |
275 | { | - |
276 | | - |
277 | | - |
278 | | - |
279 | | - |
280 | if (!metaData.hasFlags(QFileSystemMetaData::UserId)TRUE | never evaluated | FALSE | evaluated 1 time by 1 test |
) | 0-1 |
281 | QFileSystemEngine::fillMetaData(entry, metaData, QFileSystemMetaData::UserId); never executed: QFileSystemEngine::fillMetaData(entry, metaData, QFileSystemMetaData::UserId); | 0 |
282 | returnexecuted 1 time by 1 test: return resolveUserName(metaData.userId()); resolveUserName(metaData.userId());executed 1 time by 1 test: return resolveUserName(metaData.userId()); | 1 |
283 | | - |
284 | } | - |
285 | | - |
286 | | - |
287 | QString QFileSystemEngine::resolveGroupName(const QFileSystemEntry &entry, QFileSystemMetaData &metaData) | - |
288 | { | - |
289 | | - |
290 | | - |
291 | | - |
292 | | - |
293 | if (!metaData.hasFlags(QFileSystemMetaData::GroupId)TRUE | never evaluated | FALSE | evaluated 1 time by 1 test |
) | 0-1 |
294 | QFileSystemEngine::fillMetaData(entry, metaData, QFileSystemMetaData::GroupId); never executed: QFileSystemEngine::fillMetaData(entry, metaData, QFileSystemMetaData::GroupId); | 0 |
295 | returnexecuted 1 time by 1 test: return resolveGroupName(metaData.groupId()); resolveGroupName(metaData.groupId());executed 1 time by 1 test: return resolveGroupName(metaData.groupId()); | 1 |
296 | | - |
297 | } | - |
298 | | - |
299 | | - |
| | |