Home
last modified time | relevance | path

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

/openbsd-src/usr.sbin/nsd/
H A Dipc.c339 "main passed packet readup %d", (int)data->got_bytes)); in parent_handle_child_command()
340 if(data->got_bytes < sizeof(data->total_bytes)) in parent_handle_child_command()
343 (char*)&data->total_bytes+data->got_bytes, in parent_handle_child_command()
344 sizeof(data->total_bytes)-data->got_bytes)) == -1) { in parent_handle_child_command()
354 data->got_bytes += len; in parent_handle_child_command()
355 if(data->got_bytes < sizeof(data->total_bytes)) in parent_handle_child_command()
366 if(data->got_bytes-sizeof(data->total_bytes) < data->total_bytes) { in parent_handle_child_command()
368 data->total_bytes - (data->got_bytes-sizeof(data->total_bytes)) in parent_handle_child_command()
379 data->got_bytes += len; in parent_handle_child_command()
385 got_acl = data->got_bytes - sizeof(data->total_bytes) - data->total_bytes; in parent_handle_child_command()
[all …]
H A Dipc.h36 size_t got_bytes; member
H A Dserver.c472 ipc_data->got_bytes = 0; in restart_child_servers()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.cpp667 size_t got_bytes = response.GetHexBytesAvail(buffer_sp->GetData()); in ReadMemoryTags() local
670 if (response.GetBytesLeft() || (expected_bytes != got_bytes)) { in ReadMemoryTags()