Home
last modified time | relevance | path

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

/external/pigweed/pw_tokenizer/py/pw_tokenizer/
Delf_reader.py132 SECTION_HEADER = _SectionHeader() variable
253 SECTION_HEADER.section_header_end)
259 names_table_base = reader.read(SECTION_HEADER.section_offset,
264 name_offset = reader.read(SECTION_HEADER.section_name_offset,
269 reader.read(SECTION_HEADER.section_address, base),
270 reader.read(SECTION_HEADER.section_offset, base),
271 reader.read(SECTION_HEADER.section_size, base),
/external/okhttp/okio/okio/src/main/java/okio/
DGzipSource.java33 private static final byte SECTION_HEADER = 0; field in GzipSource
39 private int section = SECTION_HEADER;
72 if (section == SECTION_HEADER) { in read()
/external/okhttp/repackaged/okio/okio/src/main/java/com/android/okhttp/okio/
DGzipSource.java35 private static final byte SECTION_HEADER = 0; field in GzipSource
41 private int section = SECTION_HEADER;
74 if (section == SECTION_HEADER) { in read()
/external/okio/okio/src/jvmMain/kotlin/okio/
DGzipSource.kt34 private var section = SECTION_HEADER
61 if (section == SECTION_HEADER) { in read()
209 private const val SECTION_HEADER: Byte = 0 constant