Home
last modified time | relevance | path

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

/art/runtime/dex/
Ddex_file_annotations.cc208 uint8_t header_byte = *(annotation++); in SkipAnnotationValue() local
209 uint8_t value_type = header_byte & DexFile::kDexAnnotationValueTypeMask; in SkipAnnotationValue()
210 uint8_t value_arg = header_byte >> DexFile::kDexAnnotationValueArgShift; in SkipAnnotationValue()
427 uint8_t header_byte = *(annotation++); in ProcessAnnotationValue() local
428 uint8_t value_type = header_byte & DexFile::kDexAnnotationValueTypeMask; in ProcessAnnotationValue()
429 uint8_t value_arg = header_byte >> DexFile::kDexAnnotationValueArgShift; in ProcessAnnotationValue()
1054 uint8_t header_byte = *(annotation++); in GetAnnotationDefaultValue() local
1055 if ((header_byte & DexFile::kDexAnnotationValueTypeMask) != DexFile::kDexAnnotationAnnotation) { in GetAnnotationDefaultValue()
/art/libdexfile/dex/
Ddex_file_verifier.cc951 uint8_t header_byte = *(ptr_++); in CheckEncodedValue() local
952 uint32_t value_type = header_byte & DexFile::kDexAnnotationValueTypeMask; in CheckEncodedValue()
953 uint32_t value_arg = header_byte >> DexFile::kDexAnnotationValueArgShift; in CheckEncodedValue()