Searched refs:SymBind (Results 1 – 2 of 2) sorted by relevance
/bionic/benchmarks/linker_relocation/regen/ |
D | common_types.py | 43 class SymBind(Enum): class 48 return {SymBind.Global: 'global', SymBind.Weak: 'weak'}[self] 52 return {'global': SymBind.Global, 'weak': SymBind.Weak}[obj] 56 def __init__(self, name: str, kind: SymKind, bind: SymBind, defined: bool, argument 61 self.bind: SymBind = bind 80 SymBind.from_json(obj['bind']),
|
D | dump_relocs.py | 51 from common_types import LoadedLibrary, SymBind, SymKind, DynSymbol, DynSymbols, Relocations, \ 112 bind_lookup = { 'GLOBAL': SymBind.Global, 'WEAK': SymBind.Weak } 180 is_weak = syms[sym_idx].bind == SymBind.Weak
|