• Home
  • Raw
  • Download

Lines Matching refs:appendSection

1645     def appendSection(self, section, text):  member in LayerChassisOutputGenerator
1664 self.appendSection('struct', body)
1703 self.appendSection('command', '')
1704 self.appendSection('command', self.makeCDecls(cmdinfo.elem)[0])
1737 self.appendSection('command', '')
1738 self.appendSection('command', '%s {' % decls[0][:-1])
1741 …self.appendSection('command', ' auto layer_data = GetLayerDataPtr(get_dispatch_key(%s), layer_d…
1762 self.appendSection('command', ' bool skip = false;')
1765 self.appendSection('command', ' %s' % self.precallvalidate_loop)
1766 self.appendSection('command', ' auto lock = intercept->write_lock();')
1767 …self.appendSection('command', ' skip |= intercept->PreCallValidate%s(%s);' % (api_function_…
1768 self.appendSection('command', ' if (skip) %s' % return_map[resulttype.text])
1769 self.appendSection('command', ' }')
1772 self.appendSection('command', ' %s' % self.precallrecord_loop)
1773 self.appendSection('command', ' auto lock = intercept->write_lock();')
1774 …self.appendSection('command', ' intercept->PreCallRecord%s(%s);' % (api_function_name[2:], …
1775 self.appendSection('command', ' }')
1779 self.appendSection('command', ' %s' % self.pre_dispatch_debug_utils_functions[name])
1782 self.appendSection('command', ' ' + assignresult + API + paramstext + ');')
1786 self.appendSection('command', ' %s' % self.post_dispatch_debug_utils_functions[name])
1789 self.appendSection('command', ' %s' % self.postcallrecord_loop)
1793 self.appendSection('command', ' auto lock = intercept->write_lock();')
1794 …self.appendSection('command', ' intercept->PostCallRecord%s(%s%s);' % (api_function_name[2:…
1795 self.appendSection('command', ' }')
1798 self.appendSection('command', ' return result;')
1799 self.appendSection('command', '}')