Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DObjectFile.cpp519 size_t section_dst_len = dst_len; in ReadSectionData() local
520 if (section_dst_len > section_bytes_left) in ReadSectionData()
521 section_dst_len = section_bytes_left; in ReadSectionData()
523 section_dst_len, dst); in ReadSectionData()
528 uint64_t section_dst_len = dst_len; in ReadSectionData() local
529 if (section_dst_len > section_bytes_left) in ReadSectionData()
530 section_dst_len = section_bytes_left; in ReadSectionData()
531 memset(dst, 0, section_dst_len); in ReadSectionData()
532 return section_dst_len; in ReadSectionData()