X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=dispatch.py;h=95bc36d761d0472ec265fe67fd358f2086d6a32a;hb=630471a20c46045950a0f8285d2150ab1f90d9c8;hp=adb16b71ab7f23682e90f53e42b7bb5d44134082;hpb=e9426dd61586757d23d7dddc85b3076f477e7f07;p=apitrace diff --git a/dispatch.py b/dispatch.py index adb16b7..95bc36d 100644 --- a/dispatch.py +++ b/dispatch.py @@ -54,7 +54,7 @@ class Dispatcher: def dispatch_api(self, api): for function in api.functions: - self.dispatch_function(function) + self.invokeFunction(function) # define standard name aliases for convenience, but only when not # tracing, as that would cause symbol clashing with the tracing @@ -65,7 +65,7 @@ class Dispatcher: print '#endif /* RETRACE */' print - def dispatch_function(self, function): + def invokeFunction(self, function): ptype = function_pointer_type(function) pvalue = function_pointer_value(function) print 'typedef ' + function.prototype('* %s' % ptype) + ';' @@ -82,24 +82,24 @@ class Dispatcher: print '}' print - def is_public_function(self, function): + def isFunctionPublic(self, function): return True def get_true_pointer(self, function): ptype = function_pointer_type(function) pvalue = function_pointer_value(function) - if self.is_public_function(function): + if self.isFunctionPublic(function): get_proc_address = '__getPublicProcAddress' else: get_proc_address = '__getPrivateProcAddress' print ' if (!%s) {' % (pvalue,) print ' %s = (%s)%s(__name);' % (pvalue, ptype, get_proc_address) print ' if (!%s) {' % (pvalue,) - self.fail_function(function) + self.failFunction(function) print ' }' print ' }' - def fail_function(self, function): + def failFunction(self, function): if function.type is stdapi.Void or function.fail is not None: print r' os::log("warning: ignoring call to unavailable function %s\n", __name);' if function.type is stdapi.Void: