Home
last modified time | relevance | path

Searched refs:end_time (Results 1 – 19 of 19) sorted by relevance

/hardware/google/pixel/power-libperfmgr/libperfmgr/
DRequestGroup.cc29 bool RequestGroup::AddRequest(const std::string& hint_type, ReqTime end_time) { in AddRequest() argument
31 request_map_.emplace(hint_type, end_time); in AddRequest()
34 if (request_map_[hint_type] < end_time) { in AddRequest()
35 request_map_[hint_type] = end_time; in AddRequest()
DNodeLooperThread.cc54 ReqTime end_time = ReqTime::max(); in Request() local
62 end_time = now + a.timeout_ms; in Request()
66 end_time) && in Request()
DNode.cc40 ReqTime end_time) { in AddRequest() argument
47 req_sorted_[value_index].AddRequest(hint_type, end_time); in AddRequest()
DHintManager.cc100 if (now > actions_.at(hint_type).status->end_time) { in DoHintStatus()
103 actions_.at(hint_type).status->end_time - in DoHintStatus()
108 actions_.at(hint_type).status->end_time = in DoHintStatus()
117 if (now < actions_.at(hint_type).status->end_time) { in EndHintStatus()
122 actions_.at(hint_type).status->end_time = now; in EndHintStatus()
/hardware/google/gfxstream/guest/mesa/src/util/
Dos_time.c129 int64_t end_time = start_time + timeout; in os_wait_until_zero() local
132 if (os_time_timeout(start_time, end_time, os_time_get_nano())) in os_wait_until_zero()
/hardware/google/camera/common/sensor_listener/tests/
Dgoog_sensor_motion_test.cc76 int64_t end_time = elapsedRealtimeNano(); in CheckQuerySensorEventsBetweenTimestamps() local
84 start_time, end_time, &timestamps, &motion_vector_x, &motion_vector_y, in CheckQuerySensorEventsBetweenTimestamps()
93 EXPECT_LE(timestamps.back(), end_time); in CheckQuerySensorEventsBetweenTimestamps()
99 start_time = end_time; in CheckQuerySensorEventsBetweenTimestamps()
/hardware/google/pixel/power-libperfmgr/libperfmgr/include/perfmgr/
DRequestGroup.h51 bool AddRequest(const std::string& hint_type, ReqTime end_time);
DHintManager.h51 end_time(std::chrono::steady_clock::time_point::min()) {} in HintStatus()
53 std::chrono::steady_clock::time_point end_time; member
DNode.h53 ReqTime end_time);
/hardware/google/pixel/pwrstats_util/
Dpwrstats_util.cpp183 auto end_time = std::chrono::system_clock::now(); in daemon() local
185 std::chrono::duration<double> elapsed_seconds = end_time - start_time; in daemon()
/hardware/google/camera/common/sensor_listener/
Dgoog_gyro_direct.h99 int64_t start_time, int64_t end_time,
Dgoog_sensor_motion.h149 int64_t start_time, int64_t end_time,
Dgoog_sensor_motion.cc139 int64_t start_time, int64_t end_time, in QuerySensorEventsBetweenTimestamps() argument
159 if (event_time <= start_time || event_time > end_time) { in QuerySensorEventsBetweenTimestamps()
Dgoog_gyro_direct.cc204 int64_t start_time, int64_t end_time, in QueryGyroEventsBetweenTimestamps() argument
246 if (event_vector[index].timestamp > end_time) { in QueryGyroEventsBetweenTimestamps()
/hardware/google/gfxstream/host/vulkan/emulated_textures/
DAstcTexture.cpp251 auto end_time = std::chrono::steady_clock::now(); in on_vkCmdCopyBufferToImageImpl() local
255 ms_elapsed += std::chrono::duration_cast<milliseconds>(end_time - start_time).count(); in on_vkCmdCopyBufferToImageImpl()
/hardware/google/gfxstream/guest/mesa/src/vulkan/wsi/
Dwsi_common_headless.c289 struct timespec start_time, end_time; in wsi_headless_swapchain_acquire_next_image() local
295 timespec_add(&end_time, &rel_timeout, &start_time); in wsi_headless_swapchain_acquire_next_image()
311 if (timespec_after(&current_time, &end_time)) in wsi_headless_swapchain_acquire_next_image()
Dwsi_common_wayland.c1679 struct timespec end_time; in wsi_wl_swapchain_wait_for_present() local
1690 timespec_from_nsec(&end_time, atimeout); in wsi_wl_swapchain_wait_for_present()
1726 &chain->present_ids.lock, &end_time); in wsi_wl_swapchain_wait_for_present()
1806 timespec_sub(&rel_timeout, &end_time, &current_time); in wsi_wl_swapchain_wait_for_present()
1850 struct timespec start_time, end_time; in wsi_wl_swapchain_acquire_next_image() local
1857 timespec_add(&end_time, &rel_timeout, &start_time); in wsi_wl_swapchain_acquire_next_image()
1879 if (timespec_after(&current_time, &end_time)) in wsi_wl_swapchain_acquire_next_image()
1898 timespec_sub(&rel_timeout, &end_time, &current_time); in wsi_wl_swapchain_acquire_next_image()
/hardware/google/camera/common/hal/google_camera_hal/
Dcamera_device_session.cc1876 struct timespec end_time; in RequestStreamBuffers() local
1877 if (clock_gettime(CLOCK_BOOTTIME, &end_time)) { in RequestStreamBuffers()
1880 end_timestamp = end_time.tv_sec * kNsPerSec + end_time.tv_nsec; in RequestStreamBuffers()
/hardware/google/gfxstream/third-party/astc-encoder/Source/
Dastcenccli_toplevel.cpp2273 double end_time = get_time(); in main() local
2278 …double total_time = (end_time - start_time) - ((repeats - 1.0) * avg_compression_time) - ((repeat… in main()