Home
last modified time | relevance | path

Searched refs:SyncRequest (Results 1 – 3 of 3) sorted by relevance

/system/core/adb/client/
Dfile_sync_client.cpp294 std::vector<char> buf(sizeof(SyncRequest) + path_length); in SendRequest()
295 SyncRequest* req = reinterpret_cast<SyncRequest*>(&buf[0]); in SendRequest()
388 std::vector<char> buf(sizeof(SyncRequest) + path_length + in SendSmallFile()
389 sizeof(SyncRequest) + data_length + in SendSmallFile()
390 sizeof(SyncRequest)); in SendSmallFile()
393 SyncRequest* req_send = reinterpret_cast<SyncRequest*>(p); in SendSmallFile()
396 p += sizeof(SyncRequest); in SendSmallFile()
400 SyncRequest* req_data = reinterpret_cast<SyncRequest*>(p); in SendSmallFile()
403 p += sizeof(SyncRequest); in SendSmallFile()
407 SyncRequest* req_done = reinterpret_cast<SyncRequest*>(p); in SendSmallFile()
[all …]
/system/core/adb/
Dfile_sync_protocol.h34 struct SyncRequest { struct
/system/core/adb/daemon/
Dfile_sync_service.cpp516 SyncRequest request; in handle_sync_command()