HomeSort by relevance Sort by last modified time
    Searched refs:pstats (Results 1 - 25 of 32) sorted by null

1 2

  /external/chromium-trace/catapult/third_party/coverage/coverage/ctracer/
datastack.h 41 int DataStack_init(Stats * pstats, DataStack *pdata_stack);
42 void DataStack_dealloc(Stats * pstats, DataStack *pdata_stack);
43 int DataStack_grow(Stats * pstats, DataStack *pdata_stack);
datastack.c 10 DataStack_init(Stats *pstats, DataStack *pdata_stack)
19 DataStack_dealloc(Stats *pstats, DataStack *pdata_stack)
25 DataStack_grow(Stats *pstats, DataStack *pdata_stack)
32 STATS( pstats->stack_reallocs++; )
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_pstats.py 3 import pstats namespace
8 """Tests for pstats.add_callers helper."""
11 """pstats.add_callers should combine the call results of both target
16 new_callers = pstats.add_callers(target, source)
21 new_callers = pstats.add_callers(target, source)
test_profile.py 4 import pstats namespace
29 stats = pstats.Stats(prof, stream=s)
56 stats = pstats.Stats(prof, stream=s)
test_sundry.py 69 import pstats namespace
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_pstats.py 3 import pstats namespace
8 """Tests for pstats.add_callers helper."""
11 """pstats.add_callers should combine the call results of both target
16 new_callers = pstats.add_callers(target, source)
21 new_callers = pstats.add_callers(target, source)
test_profile.py 4 import pstats namespace
29 stats = pstats.Stats(prof, stream=s)
56 stats = pstats.Stats(prof, stream=s)
test_sundry.py 69 import pstats namespace
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pstats.py 3 import pstats namespace
8 """Tests for pstats.add_callers helper."""
11 """pstats.add_callers should combine the call results of both target
16 new_callers = pstats.add_callers(target, source)
21 new_callers = pstats.add_callers(target, source)
test_profile.py 4 import pstats namespace
29 stats = pstats.Stats(prof, stream=s)
56 stats = pstats.Stats(prof, stream=s)
test_sundry.py 69 import pstats namespace
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pstats.py 3 import pstats namespace
8 """Tests for pstats.add_callers helper."""
11 """pstats.add_callers should combine the call results of both target
16 new_callers = pstats.add_callers(target, source)
21 new_callers = pstats.add_callers(target, source)
test_profile.py 4 import pstats namespace
29 stats = pstats.Stats(prof, stream=s)
56 stats = pstats.Stats(prof, stream=s)
test_sundry.py 69 import pstats namespace
  /external/chromium-trace/catapult/tracing/tracing_build/
run_profile.py 7 import pstats namespace
53 ps = pstats.Stats(pr, stream=s).sort_stats(sortby)
  /prebuilts/gdb/darwin-x86/lib/python2.7/hotshot/
stats.py 4 import pstats namespace
35 # have to the seconds that the profile/pstats module work
52 return pstats.Stats(p)
  /prebuilts/gdb/linux-x86/lib/python2.7/hotshot/
stats.py 4 import pstats namespace
35 # have to the seconds that the profile/pstats module work
52 return pstats.Stats(p)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/hotshot/
stats.py 4 import pstats namespace
35 # have to the seconds that the profile/pstats module work
52 return pstats.Stats(p)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/hotshot/
stats.py 4 import pstats namespace
35 # have to the seconds that the profile/pstats module work
52 return pstats.Stats(p)
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
main.py 146 import pstats namespace
147 stats = pstats.Stats('profile.dat')
  /external/chromium-trace/catapult/third_party/beautifulsoup4/bs4/
diagnose.py 10 import pstats namespace
198 stats = pstats.Stats(filename)
  /external/vulkan-validation-layers/
genvk.py 332 import cProfile, pstats namespace
334 p = pstats.Stats('profile.txt')
  /prebuilts/gdb/darwin-x86/lib/python2.7/
cProfile.py 80 import pstats namespace
81 pstats.Stats(self).strip_dirs().sort_stats(sort).print_stats()
101 nc = entry.callcount # ncalls column of pstats (before '/')
102 cc = nc - entry.reccallcount # ncalls column of pstats (after '/')
103 tt = entry.inlinetime # tottime column of pstats
104 ct = entry.totaltime # cumtime column of pstats
172 help="Sort order when printing to stdout, based on pstats.Stats class",
  /prebuilts/gdb/linux-x86/lib/python2.7/
cProfile.py 80 import pstats namespace
81 pstats.Stats(self).strip_dirs().sort_stats(sort).print_stats()
101 nc = entry.callcount # ncalls column of pstats (before '/')
102 cc = nc - entry.reccallcount # ncalls column of pstats (after '/')
103 tt = entry.inlinetime # tottime column of pstats
104 ct = entry.totaltime # cumtime column of pstats
172 help="Sort order when printing to stdout, based on pstats.Stats class",
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cProfile.py 80 import pstats namespace
81 pstats.Stats(self).strip_dirs().sort_stats(sort).print_stats()
101 nc = entry.callcount # ncalls column of pstats (before '/')
102 cc = nc - entry.reccallcount # ncalls column of pstats (after '/')
103 tt = entry.inlinetime # tottime column of pstats
104 ct = entry.totaltime # cumtime column of pstats
172 help="Sort order when printing to stdout, based on pstats.Stats class",

Completed in 1269 milliseconds

1 2