Lines Matching refs:StripProperties
24 type StripProperties struct { struct
49 StripProperties StripProperties member
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)
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) {