Home
last modified time | relevance | path

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

/test/vts/utils/python/library/elf/
Dstructs.py153 return self.st_info >> 4
157 return self.st_info & 0xf
182 self.st_info = (binding << 4) | (type_ & 0xf)
/test/suite_harness/common/util/src/com/android/compatibility/common/util/
DReadElf.java107 Symbol(String name, int st_info, int st_shndx, long st_value, long st_size, int st_other) { in Symbol() argument
109 this.bind = (st_info >> 4) & 0x0F; in Symbol()
110 this.type = st_info & 0x0F; in Symbol()
986 int st_info; in readSymbolTable() local
992 st_info = readByte(); in readSymbolTable()
1000 st_info = readByte(); in readSymbolTable()
1012 Symbol sym = new Symbol(symName, st_info, st_shndx, st_value, st_size, st_other); in readSymbolTable()