/art/runtime/base/ |
timing_logger_test.cc | 32 const auto& timings = logger.GetTimings(); local 33 EXPECT_EQ(2U, timings.size()); // Start, End splits 34 EXPECT_TRUE(timings[0].IsStartTiming()); 35 EXPECT_STREQ(timings[0].GetName(), split1name); 36 EXPECT_TRUE(timings[1].IsEndTiming()); 49 // Get the timings and verify that they are sane. 50 const auto& timings = logger.GetTimings(); local 51 // 6 timings in the timing logger at this point. 52 EXPECT_EQ(6U, timings.size()); 53 EXPECT_TRUE(timings[0].IsStartTiming()) 79 const auto& timings = logger.GetTimings(); local 124 const auto& timings = logger.GetTimings(); local 154 const auto& timings = logger.GetTimings(); local [all...] |
timing_logger.h | 136 // Verify that all open timings have related closed timings. 138 // Clears current timings and labels. 149 // Returns the total duration of the timings (sum of total times). 175 // Return the time points of when each start / end timings start and finish.
|
/cts/tests/tests/util/src/android/util/cts/ |
TimingLoggerTest.java | 27 TimingLogger timings = new TimingLogger(LOG_TAG, "testTimingLogger"); local 31 timings.reset(LOG_TAG, "testReset"); 33 timings.reset(); 37 timings.addSplit("fisrt sleep"); 40 timings.addSplit("second sleep"); 43 timings.addSplit("third sleep"); 45 timings.dumpToLog();
|
/external/kernel-headers/original/uapi/linux/netfilter_bridge/ |
ebt_limit.h | 8 /* timings are in milliseconds. */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/netfilter_bridge/ |
ebt_limit.h | 6 /* timings are in milliseconds. */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter_bridge/ |
ebt_limit.h | 8 /* timings are in milliseconds. */
|
/frameworks/base/core/java/android/util/ |
TimingLogger.java | 24 * A utility class to help log timings splits throughout a method call. 28 * TimingLogger timings = new TimingLogger(TAG, "methodA"); 30 * timings.addSplit("work A"); 32 * timings.addSplit("work B"); 34 * timings.addSplit("work C"); 35 * timings.dumpToLog(); 52 * logging the timings. 73 * @param tag the log tag to use while logging the timings 85 * @param tag the log tag to use while logging the timings 130 * Dumps the timings to the log using Log.d(). If Log.isLoggable wa [all...] |
/external/iptables/include/linux/netfilter/ |
xt_limit.h | 6 /* timings are in milliseconds. */
|
xt_hashlimit.h | 6 /* timings are in milliseconds. */
|
/external/kernel-headers/original/uapi/linux/netfilter/ |
xt_limit.h | 6 /* timings are in milliseconds. */
|
xt_hashlimit.h | 6 /* timings are in milliseconds. */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/netfilter/ |
xt_limit.h | 6 /* timings are in milliseconds. */
|
xt_hashlimit.h | 6 /* timings are in milliseconds. */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter/ |
xt_limit.h | 6 /* timings are in milliseconds. */
|
xt_hashlimit.h | 6 /* timings are in milliseconds. */
|
/external/e2fsprogs/tests/f_badinode/ |
expect.1 | 10 i_file_acl for inode 13 (/timings) is 39, should be zero. 13 i_blocks_hi for inode 13 (/timings) is 1024, should be zero.
|
/art/patchoat/ |
patchoat.h | 47 static bool Patch(File* oat_in, off_t delta, File* oat_out, TimingLogger* timings, 53 TimingLogger* timings); 60 TimingLogger* timings); 67 PatchOat(ElfFile* oat_file, off_t delta, TimingLogger* timings) 69 isa_(kNone), space_map_(nullptr), timings_(timings) {} 71 MemMap* heap, off_t delta, TimingLogger* timings) 73 delta_(delta), isa_(isa), space_map_(nullptr), timings_(timings) {} 76 std::map<gc::space::ImageSpace*, std::unique_ptr<MemMap>>* map, TimingLogger* timings) 78 delta_(delta), isa_(isa), space_map_(map), timings_(timings) {}
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
profile.py | 135 self.timings[]. The index is always the name stored in self.cur[-3]. 153 self.timings = {} 291 timings = self.timings 292 if fn in timings: 293 cc, ns, tt, ct, callers = timings[fn] 294 timings[fn] = cc, ns + 1, tt, ct, callers 296 timings[fn] = 0, 0, 0, 0, {} 302 timings = self.timings [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/ |
profile.py | 135 self.timings[]. The index is always the name stored in self.cur[-3]. 153 self.timings = {} 291 timings = self.timings 292 if fn in timings: 293 cc, ns, tt, ct, callers = timings[fn] 294 timings[fn] = cc, ns + 1, tt, ct, callers 296 timings[fn] = 0, 0, 0, 0, {} 302 timings = self.timings [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
profile.py | 135 self.timings[]. The index is always the name stored in self.cur[-3]. 153 self.timings = {} 291 timings = self.timings 292 if fn in timings: 293 cc, ns, tt, ct, callers = timings[fn] 294 timings[fn] = cc, ns + 1, tt, ct, callers 296 timings[fn] = 0, 0, 0, 0, {} 302 timings = self.timings [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
profile.py | 135 self.timings[]. The index is always the name stored in self.cur[-3]. 153 self.timings = {} 291 timings = self.timings 292 if fn in timings: 293 cc, ns, tt, ct, callers = timings[fn] 294 timings[fn] = cc, ns + 1, tt, ct, callers 296 timings[fn] = 0, 0, 0, 0, {} 302 timings = self.timings [all...] |
/external/autotest/client/tests/kvm/tests/ |
hdparm.py | 10 2) Perform device/cache read timings then record the results. 12 4) Perform device/cache read timings then compare two results. 39 " timings \nOutput is: %s\n" % output)
|
/external/autotest/client/site_tests/platform_MemCheck/ |
platform_MemCheck.py | 96 # read spd timings 97 cmd = 'mosys memory spd print timings -s speeds' 111 logging.warning('Error parsing timings for dimm #%d (%s)', 115 logging.info('dimm #%d timings: %s', dimm, max_timing)
|
/external/autotest/server/cros/dynamic_suite/ |
constants.py | 36 # Timings
|
/packages/services/Telecomm/src/com/android/server/telecom/ |
Analytics.java | 107 put(Log.Events.Timings.ACCEPT_TIMING, 109 put(Log.Events.Timings.REJECT_TIMING, 111 put(Log.Events.Timings.DISCONNECT_TIMING, 113 put(Log.Events.Timings.HOLD_TIMING, 115 put(Log.Events.Timings.UNHOLD_TIMING, 117 put(Log.Events.Timings.OUTGOING_TIME_TO_DIALING_TIMING, 119 put(Log.Events.Timings.BIND_CS_TIMING, 121 put(Log.Events.Timings.SCREENING_COMPLETED_TIMING, 123 put(Log.Events.Timings.DIRECT_TO_VM_FINISHED_TIMING, 125 put(Log.Events.Timings.BLOCK_CHECK_FINISHED_TIMING 340 List<ParcelableCallAnalytics.EventTiming> timings; local [all...] |