| 1394 | } |
| 1395 | |
| 1396 | string ConnectionsPool::Data::print() |
| 1397 | { |
| 1398 | string s; |
| 1399 | s.printf(" item 0x%08X, conn 0x%08X, hash %8u, used %" UQUADFORMAT ", next 0x%08X, prev 0x%08X, connected %s\n", |
| 1400 | this, m_conn, m_hash, m_lastUsed, m_next, m_prev, |
| 1401 | (m_conn && m_conn->isConnected()) ? "yes" : "NO"); |
| 1402 | return s; |
| 1403 | } |
| 1404 | |
| 1405 | int ConnectionsPool::Data::verify(ConnectionsPool* connPool, bool active) |
| 1406 | { |
no test coverage detected