| 141 | } |
| 142 | |
| 143 | bool HttpSession::contains(const QByteArray& key) const |
| 144 | { |
| 145 | bool found=false; |
| 146 | if (dataPtr) |
| 147 | { |
| 148 | dataPtr->lock.lockForRead(); |
| 149 | found=dataPtr->values.contains(key); |
| 150 | dataPtr->lock.unlock(); |
| 151 | } |
| 152 | return found; |
| 153 | } |
| 154 | |
| 155 | QMap<QByteArray,QVariant> HttpSession::getAll() const |
| 156 | { |
no outgoing calls
no test coverage detected