| /openbmc/openbmc/poky/bitbake/lib/toaster/tests/functional/ |
| H A D | utils.py | 19 start_time = 0 23 if start_time > timeout: 42 start_time += 1 50 start_time = 0 53 if start_time > timeout: 77 start_time += 1
|
| /openbmc/openbmc/poky/scripts/pybootchartgui/pybootchartgui/ |
| H A D | process_tree.py | 59 self.start_time = self.get_start_time(self.process_tree) 61 self.duration = self.end_time - self.start_time 79 self.start_time = self.get_start_time(self.process_tree) 81 self.duration = self.end_time - self.start_time 114 …return min( [min(proc.start_time, self.get_start_time(proc.child_list)) for proc in process_subtre… 123 …return max( [max(proc.start_time + proc.duration, self.get_end_time(proc.child_list)) for proc in … 163 process_end = p.start_time + p.duration 165 process_end >= self.start_time + self.duration and \ 166 p.start_time > self.start_time and \ 288 p1time = p1.start_time [all …]
|
| H A D | samples.py | 128 def __init__(self, writer, process_map, sample_count, sample_period, start_time, end_time): argument 132 self.start_time = start_time 138 def __init__(self, writer, pid, cmd, ppid, start_time): argument 145 self.start_time = start_time 160 def split(self, writer, pid, cmd, ppid, start_time): argument 161 split = Process (writer, pid, cmd, ppid, start_time) 176 self.start_time = min(firstSample.time, self.start_time) 177 self.duration = lastSample.time - self.start_time + samplePeriod 202 return self.start_time + self.duration
|
| /openbmc/u-boot/arch/arm/mach-at91/ |
| H A D | clock.c | 72 ulong start_time, tmp_time; in at91_upll_clk_enable() local 77 start_time = get_timer(0); in at91_upll_clk_enable() 81 if ((tmp_time - start_time) > EN_UPLL_TIMEOUT) { in at91_upll_clk_enable() 93 ulong start_time, tmp_time; in at91_upll_clk_disable() local 95 start_time = get_timer(0); in at91_upll_clk_disable() 99 if ((tmp_time - start_time) > EN_UPLL_TIMEOUT) { in at91_upll_clk_disable()
|
| /openbmc/u-boot/arch/arm/mach-at91/arm920t/ |
| H A D | clock.c | 163 ulong start_time, tmp_time; in at91_pllb_clk_enable() local 165 start_time = get_timer(0); in at91_pllb_clk_enable() 169 if ((tmp_time - start_time) > EN_PLLB_TIMEOUT) { in at91_pllb_clk_enable() 181 ulong start_time, tmp_time; in at91_pllb_clk_disable() local 183 start_time = get_timer(0); in at91_pllb_clk_disable() 187 if ((tmp_time - start_time) > EN_PLLB_TIMEOUT) { in at91_pllb_clk_disable()
|
| /openbmc/openbmc/poky/meta/lib/oeqa/buildperf/ |
| H A D | base.py | 98 self.start_time = self.elapsed_time = None 130 self.start_time = datetime.utcnow() 134 self.elapsed_time = datetime.utcnow() - self.start_time 143 return sorted(compound, key=lambda info: info[1].start_time) 159 ('start_time', self.start_time), 167 ('start_time', test.start_time), 188 suite.set('timestamp', self.start_time.isoformat()) 202 testcase.set('timestamp', test.start_time.isoformat()) 254 self.start_time = None 287 self.start_time = datetime.now() [all …]
|
| /openbmc/u-boot/drivers/misc/ |
| H A D | tegra186_bpmp.c | 36 ulong start_time; in tegra186_bpmp_call() local 61 start_time = timer_get_us(); in tegra186_bpmp_call() 74 if ((timer_get_us() - start_time) > 20 * 1000) { in tegra186_bpmp_call() 175 ulong tx_base, rx_base, start_time; in tegra186_bpmp_probe() local 205 start_time = timer_get_us(); in tegra186_bpmp_probe() 212 if ((timer_get_us() - start_time) > 100 * 1000) { in tegra186_bpmp_probe()
|
| /openbmc/openbmc/poky/bitbake/lib/progressbar/ |
| H A D | progressbar.py | 134 self.start_time = None 159 if self.start_time is None: 165 if self.start_time is None: 262 if self.start_time is None: 266 self.seconds_elapsed = now - self.start_time 298 self.start_time = time.time() 300 self.last_update_time = self.start_time
|
| /openbmc/u-boot/arch/arm/mach-at91/arm926ejs/ |
| H A D | clock.c | 256 ulong start_time, tmp_time; in at91_pllb_clk_enable() local 258 start_time = get_timer(0); in at91_pllb_clk_enable() 262 if ((tmp_time - start_time) > EN_PLLB_TIMEOUT) { in at91_pllb_clk_enable() 274 ulong start_time, tmp_time; in at91_pllb_clk_disable() local 276 start_time = get_timer(0); in at91_pllb_clk_disable() 280 if ((tmp_time - start_time) > EN_PLLB_TIMEOUT) { in at91_pllb_clk_disable()
|
| /openbmc/u-boot/drivers/i2c/ |
| H A D | s3c24x0_i2c.c | 41 ulong start_time = get_timer(0); in WaitForXfer() local 47 } while (get_timer(start_time) < I2C_TIMEOUT_MS); in WaitForXfer() 112 ulong start_time = get_timer(0); in i2c_transfer() local 121 if (get_timer(start_time) > I2C_TIMEOUT_MS) in i2c_transfer() 283 ulong start_time; in s3c24x0_i2c_xfer() local 286 start_time = get_timer(0); in s3c24x0_i2c_xfer() 288 if (get_timer(start_time) > I2C_TIMEOUT_MS) { in s3c24x0_i2c_xfer()
|
| H A D | imx_lpi2c.c | 77 ulong start_time = get_timer(0); in bus_i2c_wait_for_tx_ready() local 87 if (get_timer(start_time) > LPI2C_TIMEOUT_MS) { in bus_i2c_wait_for_tx_ready() 122 ulong start_time = get_timer(0); in bus_i2c_receive() local 148 if (get_timer(start_time) > LPI2C_TIMEOUT_MS) { in bus_i2c_receive() 203 ulong start_time; in bus_i2c_stop() local 214 start_time = get_timer(0); in bus_i2c_stop() 226 if (get_timer(start_time) > LPI2C_NACK_TOUT_MS) { in bus_i2c_stop()
|
| /openbmc/u-boot/arch/arm/mach-imx/ |
| H A D | i2c-mxv7.c | 18 ulong elapsed, start_time; in force_idle_bus() local 42 start_time = get_timer(0); in force_idle_bus() 49 elapsed = get_timer(start_time); in force_idle_bus()
|
| /openbmc/u-boot/drivers/spi/ |
| H A D | lpc32xx_ssp.c | 116 int start_time; in spi_xfer() local 118 start_time = get_timer(0); in spi_xfer() 125 if (get_timer(start_time) >= CONFIG_LPC32XX_SSP_TIMEOUT) in spi_xfer()
|
| /openbmc/u-boot/drivers/mailbox/ |
| H A D | mailbox-uclass.c | 112 ulong start_time; in mbox_recv() local 118 start_time = timer_get_us(); in mbox_recv() 130 if ((timer_get_us() - start_time) >= timeout_us) in mbox_recv()
|
| /openbmc/openbmc/poky/bitbake/contrib/ |
| H A D | bbparse-torture.py | 55 start_time = time.monotonic() 57 max_wait_time = time.monotonic() - start_time
|
| /openbmc/openbmc/poky/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/ |
| H A D | 0002-ssaparse-enhance-SSA-text-lines-parsing.patch | 44 + GstClockTime start_time = G_MAXUINT64, end_time = 0; 111 + if (start_time > tmp) 112 + start_time = tmp; 182 + if (start_time != G_MAXUINT64) 183 + GST_BUFFER_TIMESTAMP (buf) = start_time; 189 + if (end_time > start_time) 190 + GST_BUFFER_DURATION (buf) = end_time - start_time;
|
| /openbmc/qemu/migration/ |
| H A D | dirtyrate.c | 262 info->start_time = DirtyStat.start_time; in query_dirty_rate_info() 303 DirtyStat.start_time = qemu_clock_get_ms(QEMU_CLOCK_HOST) / 1000; in init_dirtyrate_stat() 617 int64_t start_time; in calculate_dirtyrate_dirty_bitmap() local 644 start_time = qemu_clock_get_ms(QEMU_CLOCK_REALTIME); in calculate_dirtyrate_dirty_bitmap() 645 DirtyStat.start_time = qemu_clock_get_ms(QEMU_CLOCK_HOST) / 1000; in calculate_dirtyrate_dirty_bitmap() 647 DirtyStat.calc_time_ms = dirty_stat_wait(config.calc_time_ms, start_time); in calculate_dirtyrate_dirty_bitmap() 671 DirtyStat.start_time = qemu_clock_get_ms(QEMU_CLOCK_HOST) / 1000; in calculate_dirtyrate_dirty_ring() 697 DirtyStat.start_time = qemu_clock_get_ms(QEMU_CLOCK_HOST) / 1000; in calculate_dirtyrate_sample_vm() 867 info->start_time); in hmp_info_dirty_rate()
|
| /openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/ |
| H A D | binutils.py | 40 start_time = time.time() 52 self.ptest_section(ptestsuite, duration = int(end_time - start_time), logfile = logpath)
|
| H A D | glibc.py | 35 start_time = time.time() 44 self.ptest_section(ptestsuite, duration = int(end_time - start_time))
|
| H A D | rust.py | 46 start_time = time.time() 132 self.ptest_section(ptestsuite, duration = int(end_time - start_time), logfile=resultlog)
|
| /openbmc/qemu/tests/functional/ |
| H A D | replay_kernel.py | 35 start_time = time.time() 63 elapsed = time.time() - start_time
|
| /openbmc/qemu/tests/qtest/libqos/ |
| H A D | virtio.c | 184 gint64 start_time = g_get_monotonic_time(); in qvirtio_wait_queue_isr() local 190 g_assert(g_get_monotonic_time() - start_time <= timeout_us); in qvirtio_wait_queue_isr() 204 gint64 start_time = g_get_monotonic_time(); in qvirtio_wait_status_byte_no_isr() local 209 g_assert(g_get_monotonic_time() - start_time <= timeout_us); in qvirtio_wait_status_byte_no_isr() 229 gint64 start_time = g_get_monotonic_time(); in qvirtio_wait_used_elem() local 240 g_assert(g_get_monotonic_time() - start_time <= timeout_us); in qvirtio_wait_used_elem()
|
| /openbmc/openbmc/poky/scripts/lib/ |
| H A D | buildstats.py | 92 start_time = float(val) 93 bs_task['start_time'] = start_time 112 if start_time and not end_time and fallback_end: 114 if start_time and end_time: 115 bs_task['elapsed_time'] = end_time - start_time
|
| /openbmc/openbmc/poky/bitbake/bin/ |
| H A D | bitbake-hashclient | 94 start_time = time.perf_counter() 96 elapsed = time.perf_counter() - start_time 112 start_time = time.perf_counter() 120 total_elapsed = time.perf_counter() - start_time 269 start_time = time.perf_counter() 271 elapsed = time.perf_counter() - start_time
|
| /openbmc/qemu/tests/qtest/fuzz/ |
| H A D | virtio_net_fuzz.c | 87 gint64 start_time = g_get_monotonic_time(); in virtio_net_fuzz_multi() local 104 g_assert(g_get_monotonic_time() - start_time in virtio_net_fuzz_multi()
|