Home
last modified time | relevance | path

Searched refs:lineevents (Results 1 – 3 of 3) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/hotshot/
D__init__.py11 def __init__(self, logfn, lineevents=0, linetimings=1): argument
12 self.lineevents = lineevents and 1 or 0
13 self.linetimings = (linetimings and lineevents) and 1 or 0
15 logfn, self.lineevents, self.linetimings)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_hotshot.py44 def new_profiler(self, lineevents=0, linetimings=1): argument
46 return hotshot.Profile(self.logfn, lineevents, linetimings)
102 self.run_test(g, events, self.new_profiler(lineevents=1))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
D_hotshot.c81 int lineevents; member
967 if (self->lineevents) in do_start()
978 if (self->lineevents) in do_stop()
1183 {"lineevents", T_LONG, offsetof(ProfilerObject, lineevents), READONLY},
1439 (self->lineevents ? "yes" : "no")); in write_header()
1496 int lineevents = 0; in hotshot_profiler() local
1500 &lineevents, &linetimings)) { in hotshot_profiler()
1505 self->lineevents = lineevents ? 1 : 0; in hotshot_profiler()
1506 self->linetimings = (lineevents && linetimings) ? 1 : 0; in hotshot_profiler()
1559 self->lineevents = 1; in hotshot_coverage()