Lines Matching refs:cmdinfo
1669 def genCmd(self, cmdinfo, cmdname, alias): argument
1672 OutputGenerator.genCmd(self, cmdinfo, cmdname, alias)
1673 members = cmdinfo.elem.findall('.//param')
1719 self.cmd_info_data.append(self.CmdInfoData(name=cmdname, cmdinfo=cmdinfo))
1723 def GenDispatchFunctionPrototype(self, cmdinfo, ifdef_text): argument
1724 decls = self.makeCDecls(cmdinfo.elem)
1746 cmdinfo = cmd_info_dict[api_call.name]
1750 …self.appendSection('header_file', self.GenDispatchFunctionPrototype(cmdinfo, feature_extra_protect…
1753 decls = self.makeCDecls(cmdinfo.elem)
1759 (api_decls, api_pre, api_post) = self.generate_wrapping_code(cmdinfo.elem)
1768 decls = self.makeCDecls(cmdinfo.elem)
1777 dispatchable_type = cmdinfo.elem.find('param/type').text
1778 dispatchable_name = cmdinfo.elem.find('param/name').text
1781 params = cmdinfo.elem.findall('param/name')
1799 … api_func = cmdinfo.elem.attrib.get('name').replace('vk','layer_data->%s.',1) % dispatch_table_type
1807 resulttype = cmdinfo.elem.find('proto/type')