Lines Matching refs:arr
82 def handle_config_feature(items: dict, arr: list, line: str):
84 items[SUBSYS] = arr[1]
85 items[COMPONENT] = arr[2].split("=")[0]
93 def handle_config_component(items: dict, arr: list, line: str):
95 items[SUBSYS] = arr[0].split("_", 1)[1]
96 items[COMPONENT] = arr[1].split("=")[0]
100 def handle_config_property(items: dict, arr: list, line: str):
101 items[PROPERTY] = arr[1].split("=")[0]
116 arr = line.split("$$")
117 if arr[0] == "CONFIG_feature":
118 handle_config_feature(items, arr, line)
119 elif arr[0] == "CONFIG_property":
120 handle_config_property(items, arr, line)
122 handle_config_component(items, arr, line)