Home
last modified time | relevance | path

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

/art/runtime/dex/
Ddex_file_annotations.cc211 uint8_t header_byte = *(annotation++); in SkipAnnotationValue() local
212 uint8_t value_type = header_byte & DexFile::kDexAnnotationValueTypeMask; in SkipAnnotationValue()
213 uint8_t value_arg = header_byte >> DexFile::kDexAnnotationValueArgShift; in SkipAnnotationValue()
425 uint8_t header_byte = *(annotation++); in ProcessAnnotationValue() local
426 uint8_t value_type = header_byte & DexFile::kDexAnnotationValueTypeMask; in ProcessAnnotationValue()
427 uint8_t value_arg = header_byte >> DexFile::kDexAnnotationValueArgShift; in ProcessAnnotationValue()
1081 uint8_t header_byte = *(annotation++); in GetAnnotationDefaultValue() local
1082 if ((header_byte & DexFile::kDexAnnotationValueTypeMask) != DexFile::kDexAnnotationAnnotation) { in GetAnnotationDefaultValue()
/art/libdexfile/dex/
Ddex_file_verifier.cc1029 uint8_t header_byte = *(ptr_++); in CheckEncodedValue() local
1030 uint32_t value_type = header_byte & DexFile::kDexAnnotationValueTypeMask; in CheckEncodedValue()
1031 uint32_t value_arg = header_byte >> DexFile::kDexAnnotationValueArgShift; in CheckEncodedValue()