/third_party/flutter/engine/flutter/fml/ |
D | delayed_task.cc | 13 fml::TimePoint target_time) in DelayedTask() argument 14 : order_(order), task_(std::move(task)), target_time_(target_time) {} in DelayedTask()
|
D | task_runner.cc | 28 fml::TimePoint target_time) { in PostTaskForTime() argument 29 loop_->PostTask(std::move(task), target_time); in PostTaskForTime()
|
D | message_loop_impl.cc | 57 void MessageLoopImpl::PostTask(fml::closure task, fml::TimePoint target_time) { in PostTask() argument 65 task_queue_->RegisterTask(queue_id_, task, target_time); in PostTask()
|
D | delayed_task.h | 17 DelayedTask(size_t order, fml::closure task, fml::TimePoint target_time);
|
D | message_loop_impl.h | 38 void PostTask(fml::closure task, fml::TimePoint target_time);
|
D | task_runner.h | 25 virtual void PostTaskForTime(fml::closure task, fml::TimePoint target_time);
|
D | message_loop_task_queues.cc | 76 fml::TimePoint target_time) { in RegisterTask() argument 80 queue_entry->delayed_tasks.push({order, std::move(task), target_time}); in RegisterTask()
|
D | message_loop_task_queues.h | 84 fml::TimePoint target_time);
|
/third_party/flutter/engine/flutter/shell/platform/fuchsia/flutter/ |
D | task_runner_adapter.cc | 26 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/ |
D | embedder_task_runner.h | 32 fml::TimePoint target_time)> 84 void PostTaskForTime(fml::closure task, fml::TimePoint target_time) override;
|
D | embedder_task_runner.cc | 33 fml::TimePoint target_time) { in PostTaskForTime() argument 47 dispatch_table_.post_task_callback(this, baton, target_time); in PostTaskForTime()
|
D | embedder_thread_host.cc | 62 fml::TimePoint target_time) -> void { in CreateEmbedderTaskRunner() 69 post_task_callback_c(task, target_time.ToEpochDelta().ToNanoseconds(), in CreateEmbedderTaskRunner()
|
D | ace_embedder.cc | 1072 auto target_time = fml::TimePoint::FromEpochDelta( in FlutterEngineOnVsync() local 1076 baton, start_time, target_time)) { in FlutterEngineOnVsync()
|
D | embedder.cc | 1314 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/ |
D | platform_task_runner_adapter.cc | 29 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()
|
D | ace_vsync_waiter_embedder.cc | 57 auto target_time = in VSyncCallback() local 59 shared_base->FireCallback(frame_time, target_time); in VSyncCallback()
|
D | platform_task_runner_adapter.h | 24 void PostTaskForTime(fml::closure task, fml::TimePoint target_time) override;
|
/third_party/flutter/engine/flutter/shell/platform/android/ |
D | vsync_waiter_android.cc | 62 auto target_time = fml::TimePoint::FromEpochDelta( in OnNativeVsync() local 65 ConsumePendingCallback(java_baton, frame_time, target_time); in OnNativeVsync()
|
D | ace_vsync_waiter_android.cc | 69 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/ |
D | gstdashdemux.c | 863 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 …]
|
D | gstdashdemux.h | 112 GstClockTime target_time; member
|
/third_party/gstreamer/gstplugins_good/gst/multifile/ |
D | gstsplitmuxsink.c | 1482 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/ |
D | embedder_unittests.cc | 134 auto target_time = fml::TimePoint::FromEpochDelta( in GetEmbedderDescription() local 139 target_time); in GetEmbedderDescription()
|
/third_party/gstreamer/gstplugins_bad/ |
D | ChangeLog | 59278 dashdemux: Reset previous target_time when seeking 59376 pushed downstream we calculate a "target time" (target_time variable)
|