From: Lluís Vilanova Date: Thu, 25 Feb 2016 16:43:27 +0000 (+0100) Subject: trace: Add helper function to cast event arguments X-Git-Tag: TizenStudio_2.0_p2.4~27^2~6^2~8^2~138^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bc9beb47c7822628cf7028ba177b390eabbe88a6;p=sdk%2Femulator%2Fqemu.git trace: Add helper function to cast event arguments Signed-off-by: Lluís Vilanova Message-id: 145641860680.30295.1873612736245870753.stgit@localhost Signed-off-by: Stefan Hajnoczi --- diff --git a/scripts/tracetool/__init__.py b/scripts/tracetool/__init__.py index 26878f4..9e02f73 100644 --- a/scripts/tracetool/__init__.py +++ b/scripts/tracetool/__init__.py @@ -121,6 +121,10 @@ class Arguments: """List of argument types.""" return [ type_ for type_, _ in self._args ] + def casted(self): + """List of argument names casted to their type.""" + return ["(%s)%s" % (type_, name) for type_, name in self._args] + def transform(self, *trans): """Return a new Arguments instance with transformed types.