OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:trace_line
(Results
1 - 3
of
3
) sorted by null
/development/scripts/
stack_core.py
40
trace_line
= re.compile("$a")
variable in class:TraceConverter
78
self.
trace_line
= re.compile("(.*)\#([0-9]+)[ \t]+(..)[ \t]+([0-9a-f]" + self.width + ")[ \t]+([^\r\n \t]*)( \((.*)\))?") # pylint: disable-msg=C6310
186
if self.
trace_line
.match(line):
188
match = self.
trace_line
.match(line)
/external/chromium_org/third_party/android_platform/development/scripts/
stack_core.py
95
trace_line
= re.compile("(.*)\#(?P<frame>[0-9]+)[ \t]+(..)[ \t]+(0x)?(?P<address>[0-9a-f]{0,16})[ \t]+(?P<lib>[^\r\n \t]*)(?P<symbol_present> \((?P<symbol_name>.*)\))?") # pylint: disable-msg=C6310
100
# <symbol_name> so that it can interoperate with the |
trace_line
| regex.
140
match =
trace_line
.match(line) or debug_trace_line.match(line)
191
match =
trace_line
.match(line) or debug_trace_line.match(line)
/external/chromium_org/v8/tools/
gc-nvp-trace-processor.py
166
def get_field(
trace_line
, field):
169
return
trace_line
[field]
171
return field(
trace_line
)
Completed in 8975 milliseconds