reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/Target/Process.cpp
 1988   if (dst && max_bytes && type_width && max_bytes >= type_width) {
 1988   if (dst && max_bytes && type_width && max_bytes >= type_width) {
 1992     size_t bytes_left = max_bytes - type_width;
 1995     assert(sizeof(terminator) >= type_width && "Attempting to validate a "
 2016       size_t aligned_start = total_bytes_read - total_bytes_read % type_width;
 2018            i + type_width <= total_bytes_read + bytes_read; i += type_width)
 2018            i + type_width <= total_bytes_read + bytes_read; i += type_width)
 2019         if (::memcmp(&dst[i], terminator, type_width) == 0) {