Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DObjectFile.cpp513 size_t section_dst_len = dst_len; in ReadSectionData() local
514 if (section_dst_len > section_bytes_left) in ReadSectionData()
515 section_dst_len = section_bytes_left; in ReadSectionData()
517 section_dst_len, dst); in ReadSectionData()
522 uint64_t section_dst_len = dst_len; in ReadSectionData() local
523 if (section_dst_len > section_bytes_left) in ReadSectionData()
524 section_dst_len = section_bytes_left; in ReadSectionData()
525 memset(dst, 0, section_dst_len); in ReadSectionData()
526 return section_dst_len; in ReadSectionData()