Searched refs:curr_bytes_read (Results 1 - 3 of 3) sorted by relevance

/openbsd-current/gnu/llvm/lldb/tools/debugserver/source/MacOSX/
H A DMachVMMemory.cpp221 mach_msg_type_number_t curr_bytes_read = 0; local
224 &curr_bytes_read);
230 vm_memory, curr_bytes_read);
233 if (curr_bytes_read != curr_size) {
239 curr_bytes_read, curr_bytes_read, (uint64_t)curr_size);
241 ::memcpy(curr_data, (void *)vm_memory, curr_bytes_read);
242 ::vm_deallocate(mach_task_self(), vm_memory, curr_bytes_read); local
243 total_bytes_read += curr_bytes_read;
244 curr_addr += curr_bytes_read;
[all...]
/openbsd-current/gnu/llvm/lldb/source/Plugins/Process/mach-core/
H A DProcessMachCore.cpp597 const size_t curr_bytes_read = core_objfile->CopyData( local
600 if (curr_bytes_read == 0)
602 bytes_read += curr_bytes_read;
/openbsd-current/gnu/llvm/lldb/source/Target/
H A DProcess.cpp2053 const size_t curr_bytes_read =
2055 bytes_read += curr_bytes_read;
2056 if (curr_bytes_read == curr_size || curr_bytes_read == 0)

Completed in 362 milliseconds