Searched refs:st_info (Results 1 – 1 of 1) sorted by relevance
/platform_testing/libraries/compatibility-common-util/src/com/android/compatibility/common/util/ |
D | ReadElf.java | 109 Symbol(String name, int st_info, int st_shndx, long st_value, long st_size, int st_other) { in Symbol() argument 111 this.bind = (st_info >> 4) & 0x0F; in Symbol() 112 this.type = st_info & 0x0F; in Symbol() 985 int st_info; in readSymbolTable() local 991 st_info = readByte(); in readSymbolTable() 999 st_info = readByte(); in readSymbolTable() 1011 Symbol sym = new Symbol(symName, st_info, st_shndx, st_value, st_size, st_other); in readSymbolTable()
|