Lines Matching refs:mod
102 def __is_chipsetsdk_tagged(self, mod):
103 if not "innerapi_tags" in mod:
105 if "chipsetsdk" in mod["innerapi_tags"]:
109 def __is_chipsetsdk_indirect(self, mod):
110 if not "innerapi_tags" in mod:
112 if "chipsetsdk_indirect" in mod["innerapi_tags"]:
153 for mod in self.__chipsetsdks:
154 for dep in mod["deps"]:
168 %s in %s with "chipsetsdk_indirect"' % (mod["name"], callee["name"], callee["labelPath"]))
182 for mod in self.get_mgr().get_all():
184 if self.__is_chipsetsdk_tagged(mod):
185 self.__modules_with_chipsetsdk_tag.append(mod)
188 if self.__is_chipsetsdk_indirect(mod):
189 self.__modules_with_chipsetsdk_indirect_tag.append(mod)
192 if mod["path"].startswith("system"):
196 for dep in mod["deps"]:
223 % (mod["name"], callee["name"], mod["labelPath"]))
229 for mod in self.__chipsetsdks:
230 if not self.__is_chipsetsdk_tagged(mod):
232 % (mod["name"], mod["labelPath"]))
234 for mod in self.__modules_with_chipsetsdk_tag:
235 if mod["name"] not in self.get_white_lists():
238 % (mod["name"], mod["labelPath"]))
240 for mod in self.__modules_with_chipsetsdk_indirect_tag:
241 if mod["name"] not in self.__indirects and mod["name"] not in self.get_white_lists():
243 % (mod["name"], mod["labelPath"]))