| 248 | } |
| 249 | |
| 250 | bool Interception_Worker::doLoadInterception() |
| 251 | { |
| 252 | bool result = false; |
| 253 | s_InterceptionContext = interception_create_context(); |
| 254 | if (s_InterceptionContext == Q_NULLPTR) { |
| 255 | result = false; |
| 256 | #ifdef DEBUG_LOGOUT_ON |
| 257 | qDebug().nospace() << "[doLoadInterception] interception_create_context() Failed!!!"; |
| 258 | #endif |
| 259 | } |
| 260 | else { |
| 261 | result = true; |
| 262 | #ifdef DEBUG_LOGOUT_ON |
| 263 | qDebug().nospace() << "[doLoadInterception] interception_create_context() Success."; |
| 264 | #endif |
| 265 | } |
| 266 | |
| 267 | return result; |
| 268 | } |
| 269 | |
| 270 | void Interception_Worker::doUnloadInterception() |
| 271 | { |
nothing calls this directly
no outgoing calls
no test coverage detected