Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | src/adbd-client.cpp: Fix cppcheck | Jami Kettunen | 2022-07-05 | 1 | -5/+5 |
| | | | | | | | | cppcheck test was failing both locally for me and on CI: .../src/adbd-client.cpp:128:80: style: C-style pointer casting [cstyleCast] g_debug("%s thread %p creating a client socket to '%s'", G_STRLOC, (void*)g_thread_self(), socket_path.c_str()); ^ | ||||
* | src/adbd-client.cpp: Fix several type warnings in g_debug calls() by casting ↵ | Mike Gabriel | 2021-08-04 | 1 | -5/+5 |
| | | | | to (void*). | ||||
* | add block braces as suggested by dobey | Charles Kerr | 2016-10-21 | 1 | -2/+4 |
| | |||||
* | remove dead code | Charles Kerr | 2016-10-19 | 1 | -2/+0 |
| | |||||
* | remove the temporary tracers from r34 and r35 | Charles Kerr | 2016-10-19 | 1 | -89/+0 |
| | |||||
* | use a std::atomic for adbd-client's m_pkresponse_ready | Charles Kerr | 2016-09-22 | 1 | -1/+2 |
| | |||||
* | fix tyop | Charles Kerr | 2016-09-22 | 1 | -14/+3 |
| | |||||
* | keep piling 'em on | Charles Kerr | 2016-09-22 | 1 | -0/+2 |
| | |||||
* | tweak the debug tracers | Charles Kerr | 2016-09-22 | 1 | -93/+93 |
| | |||||
* | The notifying thread does not need to hold the lock on the same mutex as the ↵ | Charles Kerr | 2016-09-22 | 1 | -1/+1 |
| | | | | one held by the waiting thread(s); in fact doing so is a pessimization. | ||||
* | fix r25 copypaste error, lock on the correct mutex | Charles Kerr | 2016-09-22 | 1 | -1/+1 |
| | |||||
* | GAdbdClient::Impl::on_public_key_response() doesn't need a condition ↵ | Charles Kerr | 2016-09-22 | 1 | -6/+7 |
| | | | | variable wait, so use std::lock_guard rather than std::unique_lock | ||||
* | add a plethora of log statements to help figure out what's causing the silo ↵ | Charles Kerr | 2016-09-22 | 1 | -0/+93 |
| | | | | test failures | ||||
* | adbd-client's std::condition_variable::wait() call seems to be the ↵ | Charles Kerr | 2016-09-21 | 1 | -6/+11 |
| | | | | system_error culprit, so wrapping in try-catch to be cautious | ||||
* | in adbd-client's dtor, check the worker thread's joinable() state before ↵ | Charles Kerr | 2016-09-21 | 1 | -2/+7 |
| | | | | calling join() on it | ||||
* | in PKIdleData, take the std::string argument as a const& to make cppcheck ↵ | Charles Kerr | 2016-09-21 | 1 | -1/+1 |
| | | | | happy on yakkety | ||||
* | add tracer g_debug() calls for the benefit of the integration tests | Charles Kerr | 2016-03-24 | 1 | -1/+4 |
| | |||||
* | if our USB device is disconnected while prompting the user for ADBD, cancel ↵ | Charles Kerr | 2016-03-21 | 1 | -0/+1 |
| | | | | the prompt. | ||||
* | add some debug stubs | Charles Kerr | 2016-03-15 | 1 | -2/+4 |
| | |||||
* | tweak a couple of 'auto' declarations that g++ 5.3.1 understands but 4.9.2 ↵ | Charles Kerr | 2016-03-15 | 1 | -2/+2 |
| | | | | on vivid doesn't | ||||
* | add human-readable fingerprint extraction from the adb public keys | Charles Kerr | 2016-03-09 | 1 | -0/+39 |
| | |||||
* | add ADB server/client + tests | Charles Kerr | 2016-03-06 | 1 | -0/+258 |