Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/
H A DObjectFile.cpp499 size_t section_dst_len = dst_len; in ReadSectionData() local
500 if (section_dst_len > section_bytes_left) in ReadSectionData()
501 section_dst_len = section_bytes_left; in ReadSectionData()
503 section_dst_len, dst); in ReadSectionData()
508 uint64_t section_dst_len = dst_len; in ReadSectionData() local
509 if (section_dst_len > section_bytes_left) in ReadSectionData()
510 section_dst_len = section_bytes_left; in ReadSectionData()
511 memset(dst, 0, section_dst_len); in ReadSectionData()
512 return section_dst_len; in ReadSectionData()