Home
last modified time | relevance | path

Searched refs:auth_key (Results 1 – 4 of 4) sorted by relevance

/system/core/adb/daemon/
Dauth.cpp55 std::string* auth_key) { in adbd_auth_verify() argument
69 *auth_key = line; in adbd_auth_verify()
97 auth_key->clear(); in adbd_auth_verify()
137 adbd_send_key_message_locked("DC", t->auth_key); in adb_disconnected()
139 connected_keys.erase(std::remove(connected_keys.begin(), connected_keys.end(), t->auth_key), in adb_disconnected()
183 adbd_send_key_message_locked("PK", t->auth_key); in adbd_auth_confirm_key()
227 if (std::find(connected_keys.begin(), connected_keys.end(), t->auth_key) == in adbd_notify_framework_connected_key()
229 connected_keys.push_back(t->auth_key); in adbd_notify_framework_connected_key()
232 adbd_send_key_message_locked("CK", t->auth_key); in adbd_notify_framework_connected_key()
/system/core/adb/
Dadb_auth.h54 std::string* auth_key);
Dadb.cpp340 std::string auth_key; in handle_packet()
341 if (adbd_auth_verify(t->token, sizeof(t->token), signature, &auth_key)) { in handle_packet()
344 t->auth_key = auth_key; in handle_packet()
354 t->auth_key = std::string(p->payload.data()); in handle_packet()
Dtransport.h278 std::string auth_key; variable