Lines Matching refs:stripper
53 func (stripper *Stripper) NeedsStrip(actx android.ModuleContext) bool {
54 forceDisable := Bool(stripper.StripProperties.Strip.None)
56 forceEnable := Bool(stripper.StripProperties.Strip.All) ||
57 Bool(stripper.StripProperties.Strip.Keep_symbols) ||
58 Bool(stripper.StripProperties.Strip.Keep_symbols_and_debug_frame)
62 func (stripper *Stripper) strip(actx android.ModuleContext, in android.Path, out android.ModuleOutP…
67 if Bool(stripper.StripProperties.Strip.Keep_symbols) {
69 } else if Bool(stripper.StripProperties.Strip.Keep_symbols_and_debug_frame) {
71 } else if len(stripper.StripProperties.Strip.Keep_symbols_list) > 0 {
72 flags.StripKeepSymbolsList = strings.Join(stripper.StripProperties.Strip.Keep_symbols_list, ",")
73 } else if !Bool(stripper.StripProperties.Strip.All) {
86 func (stripper *Stripper) StripExecutableOrSharedLib(actx android.ModuleContext, in android.Path,
88 stripper.strip(actx, in, out, flags, false)
94 func (stripper *Stripper) StripStaticLib(actx android.ModuleContext, in android.Path, out android.M…
96 stripper.strip(actx, in, out, flags, true)