Lines Matching refs:cmdinfo
1643 def genCmd(self, cmdinfo, cmdname, alias): argument
1646 OutputGenerator.genCmd(self, cmdinfo, cmdname, alias)
1647 members = cmdinfo.elem.findall('.//param')
1693 self.cmd_info_data.append(self.CmdInfoData(name=cmdname, cmdinfo=cmdinfo))
1697 def GenDispatchFunctionPrototype(self, cmdinfo, ifdef_text): argument
1698 decls = self.makeCDecls(cmdinfo.elem)
1719 cmdinfo = cmd_info_dict[api_call.name]
1723 …self.appendSection('header_file', self.GenDispatchFunctionPrototype(cmdinfo, feature_extra_protect…
1726 decls = self.makeCDecls(cmdinfo.elem)
1732 (api_decls, api_pre, api_post) = self.generate_wrapping_code(cmdinfo.elem)
1741 decls = self.makeCDecls(cmdinfo.elem)
1749 dispatchable_type = cmdinfo.elem.find('param/type').text
1750 dispatchable_name = cmdinfo.elem.find('param/name').text
1753 params = cmdinfo.elem.findall('param/name')
1771 … api_func = cmdinfo.elem.attrib.get('name').replace('vk','layer_data->%s.',1) % dispatch_table_type
1780 resulttype = cmdinfo.elem.find('proto/type')