Home
last modified time | relevance | path

Searched refs:ready_cb (Results 1 – 25 of 154) sorted by relevance

1234567

/dports/emulators/mess/mame-mame0226/src/mame/drivers/
H A Dti99_8.cpp713 m_mainboard->ready_cb().set(FUNC(ti99_8_state::console_ready)); in ti99_8()
719 m_gromport->ready_cb().set(TI998_MAINBOARD_TAG, FUNC(mainboard8_device::system_grom_ready)); in ti99_8()
732 m_ioport->ready_cb().set(TI998_MAINBOARD_TAG, FUNC(mainboard8_device::pbox_ready)); in ti99_8()
740 soundgen.ready_cb().set(TI998_MAINBOARD_TAG, FUNC(mainboard8_device::sound_ready)); in ti99_8()
749 vsp.ready_cb().set(TI998_MAINBOARD_TAG, FUNC(mainboard8_device::speech_ready)); in ti99_8()
772 …TMC0430(config, TI998_GLIB20_TAG, TI998_GROMLIB2_REG, 0x0000, 0).ready_cb().set(TI998_MAINBOARD_TA… in ti99_8()
773 …TMC0430(config, TI998_GLIB21_TAG, TI998_GROMLIB2_REG, 0x2000, 1).ready_cb().set(TI998_MAINBOARD_TA… in ti99_8()
774 …TMC0430(config, TI998_GLIB22_TAG, TI998_GROMLIB2_REG, 0x4000, 2).ready_cb().set(TI998_MAINBOARD_TA… in ti99_8()
775 …TMC0430(config, TI998_GLIB23_TAG, TI998_GROMLIB2_REG, 0x6000, 3).ready_cb().set(TI998_MAINBOARD_TA… in ti99_8()
776 …TMC0430(config, TI998_GLIB24_TAG, TI998_GROMLIB2_REG, 0x8000, 4).ready_cb().set(TI998_MAINBOARD_TA… in ti99_8()
[all …]
/dports/emulators/mame/mame-mame0226/src/mame/drivers/
H A Dti99_8.cpp713 m_mainboard->ready_cb().set(FUNC(ti99_8_state::console_ready)); in ti99_8()
719 m_gromport->ready_cb().set(TI998_MAINBOARD_TAG, FUNC(mainboard8_device::system_grom_ready)); in ti99_8()
732 m_ioport->ready_cb().set(TI998_MAINBOARD_TAG, FUNC(mainboard8_device::pbox_ready)); in ti99_8()
740 soundgen.ready_cb().set(TI998_MAINBOARD_TAG, FUNC(mainboard8_device::sound_ready)); in ti99_8()
749 vsp.ready_cb().set(TI998_MAINBOARD_TAG, FUNC(mainboard8_device::speech_ready)); in ti99_8()
772 …TMC0430(config, TI998_GLIB20_TAG, TI998_GROMLIB2_REG, 0x0000, 0).ready_cb().set(TI998_MAINBOARD_TA… in ti99_8()
773 …TMC0430(config, TI998_GLIB21_TAG, TI998_GROMLIB2_REG, 0x2000, 1).ready_cb().set(TI998_MAINBOARD_TA… in ti99_8()
774 …TMC0430(config, TI998_GLIB22_TAG, TI998_GROMLIB2_REG, 0x4000, 2).ready_cb().set(TI998_MAINBOARD_TA… in ti99_8()
775 …TMC0430(config, TI998_GLIB23_TAG, TI998_GROMLIB2_REG, 0x6000, 3).ready_cb().set(TI998_MAINBOARD_TA… in ti99_8()
776 …TMC0430(config, TI998_GLIB24_TAG, TI998_GROMLIB2_REG, 0x8000, 4).ready_cb().set(TI998_MAINBOARD_TA… in ti99_8()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/media/gpu/chromeos/
H A Dimage_processor.cc47 ImageProcessor::ClientCallback::ClientCallback(FrameReadyCB ready_cb) in ClientCallback() argument
48 : ready_cb(std::move(ready_cb)) {} in ClientCallback()
121 auto ready_cb = base::BindOnce(&ImageProcessor::OnProcessDoneThunk, in Process() local
127 std::move(output_frame), std::move(ready_cb))); in Process()
155 DCHECK(it->second.ready_cb); in OnProcessDone()
156 FrameReadyCB cb = std::move(it->second.ready_cb); in OnProcessDone()
169 auto ready_cb = base::BindOnce(&ImageProcessor::OnProcessLegacyDoneThunk, in Process() local
174 std::move(frame), std::move(ready_cb))); in Process()
H A Dimage_processor_with_pool.cc74 FrameReadyCB ready_cb) { in Process() argument
78 pending_frames_.push(std::make_pair(std::move(frame), std::move(ready_cb))); in Process()
100 FrameReadyCB ready_cb = std::move(pending_frames_.front().second); in PumpProcessFrames() local
107 std::move(ready_cb))); in PumpProcessFrames()
111 void ImageProcessorWithPool::OnFrameProcessed(FrameReadyCB ready_cb, in OnFrameProcessed() argument
118 std::move(ready_cb).Run(std::move(frame)); in OnFrameProcessed()
H A Dimage_processor_with_pool.h39 void Process(scoped_refptr<VideoFrame> frame, FrameReadyCB ready_cb);
58 void OnFrameProcessed(FrameReadyCB ready_cb, scoped_refptr<VideoFrame> frame);
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/media/gpu/chromeos/
H A Dimage_processor_with_pool.cc73 FrameReadyCB ready_cb) { in Process() argument
77 pending_frames_.push(std::make_pair(std::move(frame), std::move(ready_cb))); in Process()
99 FrameReadyCB ready_cb = std::move(pending_frames_.front().second); in PumpProcessFrames() local
106 std::move(ready_cb))); in PumpProcessFrames()
110 void ImageProcessorWithPool::OnFrameProcessed(FrameReadyCB ready_cb, in OnFrameProcessed() argument
117 std::move(ready_cb).Run(std::move(frame)); in OnFrameProcessed()
H A Dimage_processor.cc59 ImageProcessor::ClientCallback::ClientCallback(FrameReadyCB ready_cb) in ClientCallback() argument
60 : ready_cb(std::move(ready_cb)) {} in ClientCallback()
132 auto ready_cb = base::BindOnce(&ImageProcessor::OnProcessDoneThunk, in Process() local
138 std::move(output_frame), std::move(ready_cb))); in Process()
166 DCHECK(it->second.ready_cb); in OnProcessDone()
167 FrameReadyCB cb = std::move(it->second.ready_cb); in OnProcessDone()
180 auto ready_cb = base::BindOnce(&ImageProcessor::OnProcessLegacyDoneThunk, in Process() local
185 std::move(frame), std::move(ready_cb))); in Process()
H A Dimage_processor_with_pool.h39 void Process(scoped_refptr<VideoFrame> frame, FrameReadyCB ready_cb);
58 void OnFrameProcessed(FrameReadyCB ready_cb, scoped_refptr<VideoFrame> frame);
/dports/emulators/mess/mame-mame0226/src/devices/bus/ti99/peb/
H A Dforti.cpp109 m_generator1->ready_cb().set(FUNC(forti_device::ready_sound)); in device_add_mconfig()
113 m_generator2->ready_cb().set(FUNC(forti_device::ready_sound)); in device_add_mconfig()
117 m_generator3->ready_cb().set(FUNC(forti_device::ready_sound)); in device_add_mconfig()
121 m_generator4->ready_cb().set(FUNC(forti_device::ready_sound)); in device_add_mconfig()
/dports/emulators/mame/mame-mame0226/src/devices/bus/ti99/peb/
H A Dforti.cpp109 m_generator1->ready_cb().set(FUNC(forti_device::ready_sound)); in device_add_mconfig()
113 m_generator2->ready_cb().set(FUNC(forti_device::ready_sound)); in device_add_mconfig()
117 m_generator3->ready_cb().set(FUNC(forti_device::ready_sound)); in device_add_mconfig()
121 m_generator4->ready_cb().set(FUNC(forti_device::ready_sound)); in device_add_mconfig()
/dports/www/chromium-legacy/chromium-88.0.4324.182/media/base/
H A Dandroid_overlay_config.h69 if (ready_cb) in is_ready()
70 std::move(ready_cb).Run(overlay); in is_ready()
77 ReadyCB ready_cb; member
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/media/base/
H A Dandroid_overlay_config.h69 if (ready_cb) in is_ready()
70 std::move(ready_cb).Run(overlay); in is_ready()
77 ReadyCB ready_cb; member
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/history/core/browser/sync/
H A Ddelete_directive_handler_unittest.cc136 base::MockCallback<base::OnceClosure> ready_cb; in TEST_F() local
138 EXPECT_CALL(ready_cb, Run()); in TEST_F()
139 handler()->WaitUntilReadyToSync(ready_cb.Get()); in TEST_F()
145 base::MockCallback<base::OnceClosure> ready_cb; in TEST_F() local
146 EXPECT_CALL(ready_cb, Run()).Times(0); in TEST_F()
147 handler()->WaitUntilReadyToSync(ready_cb.Get()); in TEST_F()
148 EXPECT_CALL(ready_cb, Run()); in TEST_F()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/components/history/core/browser/sync/
H A Ddelete_directive_handler_unittest.cc136 base::MockCallback<base::OnceClosure> ready_cb; in TEST_F() local
138 EXPECT_CALL(ready_cb, Run()); in TEST_F()
139 handler()->WaitUntilReadyToSync(ready_cb.Get()); in TEST_F()
145 base::MockCallback<base::OnceClosure> ready_cb; in TEST_F() local
146 EXPECT_CALL(ready_cb, Run()).Times(0); in TEST_F()
147 handler()->WaitUntilReadyToSync(ready_cb.Get()); in TEST_F()
148 EXPECT_CALL(ready_cb, Run()); in TEST_F()
/dports/emulators/ppsspp/ppsspp-1.12.3/ext/miniupnp/miniupnpc-libevent/
H A Dminiupnpc-libevent.h82 upnpc_callback_fn ready_cb; member
95 upnpc_callback_fn ready_cb, upnpc_callback_fn soap_cb, void * cb_data);
/dports/emulators/ppsspp-qt5/ppsspp-1.12.3/ext/miniupnp/miniupnpc-libevent/
H A Dminiupnpc-libevent.h82 upnpc_callback_fn ready_cb; member
95 upnpc_callback_fn ready_cb, upnpc_callback_fn soap_cb, void * cb_data);
/dports/emulators/libretro-ppsspp/ppsspp-1.12.3/ext/miniupnp/miniupnpc-libevent/
H A Dminiupnpc-libevent.h82 upnpc_callback_fn ready_cb; member
95 upnpc_callback_fn ready_cb, upnpc_callback_fn soap_cb, void * cb_data);
/dports/lang/spidermonkey60/firefox-60.9.0/media/mtransport/third_party/nICEr/src/ice/
H A Dice_candidate.h96 NR_async_cb ready_cb; member
109 int nr_ice_candidate_initialize(nr_ice_candidate *cand, NR_async_cb ready_cb, void *cb_arg);
/dports/www/firefox-legacy/firefox-52.8.0esr/media/mtransport/third_party/nICEr/src/ice/
H A Dice_candidate.h95 NR_async_cb ready_cb;
108 int nr_ice_candidate_initialize(nr_ice_candidate *cand, NR_async_cb ready_cb, void *cb_arg);
/dports/www/firefox/firefox-99.0/dom/media/webrtc/transport/third_party/nICEr/src/ice/
H A Dice_candidate.h98 NR_async_cb ready_cb; member
111 int nr_ice_candidate_initialize(nr_ice_candidate *cand, NR_async_cb ready_cb, void *cb_arg);
/dports/www/firefox-esr/firefox-91.8.0/dom/media/webrtc/transport/third_party/nICEr/src/ice/
H A Dice_candidate.h98 NR_async_cb ready_cb; member
111 int nr_ice_candidate_initialize(nr_ice_candidate *cand, NR_async_cb ready_cb, void *cb_arg);
/dports/mail/thunderbird/thunderbird-91.8.0/dom/media/webrtc/transport/third_party/nICEr/src/ice/
H A Dice_candidate.h98 NR_async_cb ready_cb; member
111 int nr_ice_candidate_initialize(nr_ice_candidate *cand, NR_async_cb ready_cb, void *cb_arg);
/dports/lang/spidermonkey78/firefox-78.9.0/media/mtransport/third_party/nICEr/src/ice/
H A Dice_candidate.h98 NR_async_cb ready_cb; member
111 int nr_ice_candidate_initialize(nr_ice_candidate *cand, NR_async_cb ready_cb, void *cb_arg);
/dports/emulators/mess/mame-mame0226/src/devices/imagedev/
H A Dmfmhd.h57 typedef delegate<void (mfm_harddisk_device*, int)> ready_cb; typedef
61 void setup_ready_cb(ready_cb cb);
115 ready_cb m_ready_cb;
/dports/emulators/mame/mame-mame0226/src/devices/imagedev/
H A Dmfmhd.h57 typedef delegate<void (mfm_harddisk_device*, int)> ready_cb; typedef
61 void setup_ready_cb(ready_cb cb);
115 ready_cb m_ready_cb;

1234567