Home
last modified time | relevance | path

Searched refs:target_time (Results 1 – 24 of 24) sorted by relevance

/third_party/flutter/engine/flutter/fml/
Ddelayed_task.cc13 fml::TimePoint target_time) in DelayedTask() argument
14 : order_(order), task_(std::move(task)), target_time_(target_time) {} in DelayedTask()
Dtask_runner.cc28 fml::TimePoint target_time) { in PostTaskForTime() argument
29 loop_->PostTask(std::move(task), target_time); in PostTaskForTime()
Dmessage_loop_impl.cc57 void MessageLoopImpl::PostTask(fml::closure task, fml::TimePoint target_time) { in PostTask() argument
65 task_queue_->RegisterTask(queue_id_, task, target_time); in PostTask()
Ddelayed_task.h17 DelayedTask(size_t order, fml::closure task, fml::TimePoint target_time);
Dmessage_loop_impl.h38 void PostTask(fml::closure task, fml::TimePoint target_time);
Dtask_runner.h25 virtual void PostTaskForTime(fml::closure task, fml::TimePoint target_time);
Dmessage_loop_task_queues.cc76 fml::TimePoint target_time) { in RegisterTask() argument
80 queue_entry->delayed_tasks.push({order, std::move(task), target_time}); in RegisterTask()
Dmessage_loop_task_queues.h84 fml::TimePoint target_time);
/third_party/flutter/engine/flutter/shell/platform/fuchsia/flutter/
Dtask_runner_adapter.cc26 void PostTaskForTime(fml::closure task, fml::TimePoint target_time) override { in PostTaskForTime() argument
29 zx::time(target_time.ToEpochDelta().ToNanoseconds())); in PostTaskForTime()
/third_party/flutter/engine/flutter/shell/platform/embedder/
Dembedder_task_runner.h32 fml::TimePoint target_time)>
84 void PostTaskForTime(fml::closure task, fml::TimePoint target_time) override;
Dembedder_task_runner.cc33 fml::TimePoint target_time) { in PostTaskForTime() argument
47 dispatch_table_.post_task_callback(this, baton, target_time); in PostTaskForTime()
Dembedder_thread_host.cc62 fml::TimePoint target_time) -> void { in CreateEmbedderTaskRunner()
69 post_task_callback_c(task, target_time.ToEpochDelta().ToNanoseconds(), in CreateEmbedderTaskRunner()
Dace_embedder.cc1072 auto target_time = fml::TimePoint::FromEpochDelta( in FlutterEngineOnVsync() local
1076 baton, start_time, target_time)) { in FlutterEngineOnVsync()
Dembedder.cc1314 auto target_time = fml::TimePoint::FromEpochDelta( in FlutterEngineOnVsync() local
1318 baton, start_time, target_time)) { in FlutterEngineOnVsync()
/third_party/flutter/engine/flutter/shell/platform/ohos/
Dplatform_task_runner_adapter.cc29 void PlatformTaskRunnerAdapter::PostTaskForTime(fml::closure task, fml::TimePoint target_time) in PostTaskForTime() argument
31 eventHandler_->PostTimingTask(std::move(task), target_time.ToEpochDelta().ToMilliseconds(), ""); in PostTaskForTime()
Dace_vsync_waiter_embedder.cc57 auto target_time = in VSyncCallback() local
59 shared_base->FireCallback(frame_time, target_time); in VSyncCallback()
Dplatform_task_runner_adapter.h24 void PostTaskForTime(fml::closure task, fml::TimePoint target_time) override;
/third_party/flutter/engine/flutter/shell/platform/android/
Dvsync_waiter_android.cc62 auto target_time = fml::TimePoint::FromEpochDelta( in OnNativeVsync() local
65 ConsumePendingCallback(java_baton, frame_time, target_time); in OnNativeVsync()
Dace_vsync_waiter_android.cc69 auto target_time = fml::TimePoint::FromEpochDelta( in OnNativeVsync() local
72 ConsumePendingCallback(java_baton, frame_time, target_time); in OnNativeVsync()
/third_party/gstreamer/gstplugins_bad/ext/dash/
Dgstdashdemux.c863 stream->target_time = GST_CLOCK_TIME_NONE; in gst_dash_demux_setup_all_streams()
1497 dashstream->target_time = GST_CLOCK_TIME_NONE; in gst_dash_demux_stream_seek()
1589 GstClockTime target_time) in gst_dash_demux_stream_advance_sync_sample() argument
1595 if (GST_CLOCK_TIME_IS_VALID (target_time)) { in gst_dash_demux_stream_advance_sync_sample()
1601 GST_TIME_ARGS (target_time), in gst_dash_demux_stream_advance_sync_sample()
1609 (target_time - in gst_dash_demux_stream_advance_sync_sample()
1621 if (end_time < target_time) { in gst_dash_demux_stream_advance_sync_sample()
1626 target_time) / dashstream->current_fragment_keyframe_distance; in gst_dash_demux_stream_advance_sync_sample()
1985 GstClockTime target_time = GST_CLOCK_TIME_NONE; in gst_dash_demux_stream_advance_fragment() local
2050 target_time = dashstream->target_time; in gst_dash_demux_stream_advance_fragment()
[all …]
Dgstdashdemux.h112 GstClockTime target_time; member
/third_party/gstreamer/gstplugins_good/gst/multifile/
Dgstsplitmuxsink.c1482 GstClockTime target_time; in request_next_keyframe() local
1565 target_time = max_tc_time - tc_rounding_error; in request_next_keyframe()
1571 target_time = 0; in request_next_keyframe()
1584 target_time = newest_gop->start_time + splitmux->threshold_time; in request_next_keyframe()
1603 if (target_time < allowed_time) { in request_next_keyframe()
1607 GST_TIME_ARGS (target_time), in request_next_keyframe()
1613 target_time < splitmux->next_fku_time) { in request_next_keyframe()
1617 GST_TIME_ARGS (target_time), GST_TIME_ARGS (splitmux->next_fku_time)); in request_next_keyframe()
1622 next_fku_time = target_time + splitmux->threshold_time; in request_next_keyframe()
1627 GST_TIME_ARGS (target_time), GST_TIME_ARGS (next_fku_time)); in request_next_keyframe()
[all …]
/third_party/flutter/engine/flutter/shell/platform/embedder/tests/
Dembedder_unittests.cc134 auto target_time = fml::TimePoint::FromEpochDelta( in GetEmbedderDescription() local
139 target_time); in GetEmbedderDescription()
/third_party/gstreamer/gstplugins_bad/
DChangeLog59278 dashdemux: Reset previous target_time when seeking
59376 pushed downstream we calculate a "target time" (target_time variable)