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

1 2 3 4

  /external/python/cpython3/Lib/test/
test_pstats.py 4 import pstats
9 """Tests for pstats.add_callers helper."""
12 # pstats.add_callers should combine the call results of both target
17 new_callers = pstats.add_callers(target, source)
22 new_callers = pstats.add_callers(target, source)
28 stats_file = support.findfile('pstats.pck')
29 self.stats = pstats.Stats(stats_file)
33 stats = pstats.Stats(stream=stream)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_pstats.py 3 import pstats
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)
  /external/python/cpython2/Lib/test/
test_pstats.py 3 import pstats
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)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_pstats.py 3 import pstats
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)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_pstats.py 3 import pstats
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)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pstats.py 3 import pstats
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)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pstats.py 3 import pstats
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)
  /frameworks/base/core/java/android/content/pm/
PackageStats.java 155 public PackageStats(PackageStats pStats) {
156 packageName = pStats.packageName;
157 userHandle = pStats.userHandle;
158 codeSize = pStats.codeSize;
159 dataSize = pStats.dataSize;
160 cacheSize = pStats.cacheSize;
161 externalCodeSize = pStats.externalCodeSize;
162 externalDataSize = pStats.externalDataSize;
163 externalCacheSize = pStats.externalCacheSize;
164 externalMediaSize = pStats.externalMediaSize
    [all...]
IPackageStatsObserver.aidl 29 void onGetStatsCompleted(in PackageStats pStats, boolean succeeded);
  /external/mesa3d/src/gallium/drivers/swr/
swr_context.cpp 406 swr_UpdateStats(HANDLE hPrivateContext, const SWR_STATS *pStats)
413 struct swr_query_result *pqr = (struct swr_query_result *)pDC->pStats;
417 pSwrStats->DepthPassCount += pStats->DepthPassCount;
418 pSwrStats->PsInvocations += pStats->PsInvocations;
419 pSwrStats->CsInvocations += pStats->CsInvocations;
423 swr_UpdateStatsFE(HANDLE hPrivateContext, const SWR_STATS_FE *pStats)
430 struct swr_query_result *pqr = (struct swr_query_result *)pDC->pStats;
433 p_atomic_add(&pSwrStats->IaVertices, pStats->IaVertices);
434 p_atomic_add(&pSwrStats->IaPrimitives, pStats->IaPrimitives);
435 p_atomic_add(&pSwrStats->VsInvocations, pStats->VsInvocations)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
cProfile.py 80 import pstats
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",
  /external/python/cpython2/Lib/
cProfile.py 80 import pstats
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",
  /external/python/cpython3/Lib/
cProfile.py 41 import pstats
42 pstats.Stats(self).strip_dirs().sort_stats(sort).print_stats()
61 nc = entry.callcount # ncalls column of pstats (before '/')
62 cc = nc - entry.reccallcount # ncalls column of pstats (after '/')
63 tt = entry.inlinetime # tottime column of pstats
64 ct = entry.totaltime # cumtime column of pstats
132 help="Sort order when printing to stdout, based on pstats.Stats class",
  /prebuilts/gdb/darwin-x86/lib/python2.7/
cProfile.py 80 import pstats
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
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
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/linux-x86/2.7.5/lib/python2.7/
cProfile.py 80 import pstats
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",
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/hotshot/
stats.py 4 import pstats
35 # have to the seconds that the profile/pstats module work
52 return pstats.Stats(p)
  /external/python/cpython2/Lib/hotshot/
stats.py 4 import pstats
35 # have to the seconds that the profile/pstats module work
52 return pstats.Stats(p)
  /prebuilts/gdb/darwin-x86/lib/python2.7/hotshot/
stats.py 4 import pstats
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
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
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
35 # have to the seconds that the profile/pstats module work
52 return pstats.Stats(p)
  /external/python/cpython2/Doc/library/
profile.rst 7 **Source code:** :source:`Lib/profile.py` and :source:`Lib/pstats.py`
23 can be formatted into reports via the :mod:`pstats` module.
143 The :class:`pstats.Stats` class reads profile results from a file and formats
153 ``-s`` specifies one of the :func:`~pstats.Stats.sort_stats` sort values to sort
156 The :mod:`pstats` module's :class:`~pstats.Stats` class has a variety of methods
159 import pstats
160 p = pstats.Stats('restats')
163 The :meth:`~pstats.Stats.strip_dirs` method removed the extraneous path from all
164 the module names. The :meth:`~pstats.Stats.sort_stats` method sorted all th
    [all...]
  /external/python/cpython3/Doc/library/
profile.rst 7 **Source code:** :source:`Lib/profile.py` and :source:`Lib/pstats.py`
23 can be formatted into reports via the :mod:`pstats` module.
120 The :class:`pstats.Stats` class reads profile results from a file and formats
130 ``-s`` specifies one of the :func:`~pstats.Stats.sort_stats` sort values to sort
133 The :mod:`pstats` module's :class:`~pstats.Stats` class has a variety of methods
136 import pstats
137 p = pstats.Stats('restats')
140 The :meth:`~pstats.Stats.strip_dirs` method removed the extraneous path from all
141 the module names. The :meth:`~pstats.Stats.sort_stats` method sorted all th
    [all...]

Completed in 972 milliseconds

1 2 3 4