Home
last modified time | relevance | path

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

/ohos5.0/drivers/hdf_core/framework/tools/hdf_dev_eco_tool/
H A Dhdf_utils.py88 def find_section(file_content, section_content): argument
89 if not file_content or not section_content:
91 start_pos = file_content.find(section_content.begin_flag)
94 end_pos = file_content.find(section_content.end_flag)
97 return SectionRange(start_pos, end_pos + len(section_content.end_flag) - 1)
100 def _write_one_section(file_obj, section_content): argument
101 if not file_obj or not section_content:
103 file_obj.write(section_content.begin_flag)
104 file_obj.write(section_content.content)
105 file_obj.write(section_content.end_flag)