Home
last modified time | relevance | path

Searched refs:async (Results 1 – 25 of 502) sorted by relevance

12345678910>>...21

/openbmc/linux/drivers/comedi/
H A Dcomedi_buf.c55 struct comedi_async *async = s->async; in __comedi_buf_free() local
143 struct comedi_async *async = s->async; in __comedi_buf_alloc() local
230 struct comedi_async *async = s->async; in comedi_buf_map_from_subdev_get() local
259 struct comedi_async *async = s->async; in comedi_buf_alloc() local
292 struct comedi_async *async = s->async; in comedi_buf_reset() local
314 struct comedi_async *async = s->async; in comedi_buf_write_n_unalloc() local
322 struct comedi_async *async = s->async; in comedi_buf_write_n_available() local
342 struct comedi_async *async = s->async; in comedi_buf_write_alloc() local
367 struct comedi_async *async = s->async; in comedi_buf_munge() local
409 struct comedi_async *async = s->async; in comedi_buf_write_n_allocated() local
[all …]
H A Ddrivers.c169 if (s->async) { in comedi_device_detach_cleanup()
171 kfree(s->async); in comedi_device_detach_cleanup()
462 struct comedi_async *async = s->async; in __comedi_nscans_left() local
514 struct comedi_async *async = s->async; in comedi_nsamples_left() local
548 struct comedi_async *async = s->async; in comedi_inc_scan_progress() local
563 async->scans_done += nscans; in comedi_inc_scan_progress()
565 async->scans_done = UINT_MAX; in comedi_inc_scan_progress()
644 struct comedi_async *async; in __comedi_device_postconfig_async() local
663 async = kzalloc(sizeof(*async), GFP_KERNEL); in __comedi_device_postconfig_async()
664 if (!async) in __comedi_device_postconfig_async()
[all …]
H A Dcomedi_fops.c328 struct comedi_async *async = s->async; in resize_async_buffer() local
738 struct comedi_async *async = s->async; in do_become_nonbusy() local
742 if (async) { in do_become_nonbusy()
887 async = s->async; in do_bufconfig_ioctl()
889 if (!async) { in do_bufconfig_ioctl()
1127 async = s->async; in do_bufinfo_ioctl()
1767 async = s->async; in do_cmd_ioctl()
2359 async = s->async; in comedi_mmap()
2498 async = s->async; in comedi_write()
2634 async = s->async; in comedi_read()
[all …]
/openbmc/openbmc/poky/bitbake/lib/hashserv/
H A Dclient.py28 async def setup_connection(self):
40 async def proc():
54 async def stream_to_normal():
133 async def get_stats(self):
136 async def reset_stats(self):
139 async def backfill_wait(self):
142 async def remove(self, where):
179 async def get_all_users(self):
198 async def get_db_usage(self):
204 async def gc_status(self):
[all …]
H A Dsqlalchemy.py127 async def create(self):
195 async def __aenter__(self):
202 async def close(self):
242 async with self.db.begin():
267 async with self.db.begin():
289 async with self.db.begin():
297 async with self.db.begin():
312 async with self.db.begin():
371 async def gc_status(self):
406 async def gc_sweep(self):
[all …]
H A Dsqlite.py118 async def create(self):
194 async def __aenter__(self):
224 async def close(self):
321 async def remove(self, condition):
339 async def get_current_gc_mark(self):
343 async def gc_status(self):
386 async def gc_sweep(self):
402 async def clean_unused(self, oldest):
501 async def get_all_users(self):
537 async def get_usage(self):
[all …]
H A Dserver.py149 async def new_token():
157 async with token_refresh_semaphore:
192 async def wrap(self, request):
295 async def process_requests(self):
322 async def handle_get(self, request):
414 async def handler(l):
435 async def handler(l):
467 async def handle_report(self, data):
632 async def fail_auth():
828 async def create_admin_user(self):
[all …]
/openbmc/qemu/hw/usb/
H A Dhcd-uhci.c143 UHCIAsync *async; in uhci_queue_free() local
189 trace_usb_uhci_packet_add(async->queue->token, async->td_addr); in uhci_async_alloc()
191 return async; in uhci_async_alloc()
196 trace_usb_uhci_packet_del(async->queue->token, async->td_addr); in uhci_async_free()
198 if (async->buf != async->static_buf) { in uhci_async_free()
201 g_free(async); in uhci_async_free()
221 trace_usb_uhci_packet_cancel(async->queue->token, async->td_addr, in uhci_async_cancel()
730 if (async) { in uhci_handle_td()
781 if (async) { in uhci_handle_td()
829 async->buf = async->static_buf; in uhci_handle_td()
[all …]
H A Dhcd-ehci.c261 if (async) { in ehci_set_state()
289 if (async) { in ehci_set_fetch_addr()
555 q->async = async; in ehci_alloc_queue()
1335 if (q->async) { in ehci_execute_complete()
1527 if (async) { in ehci_state_waitlisthead()
1542 if (async) { in ehci_state_waitlisthead()
1709 assert(!async); in ehci_state_fetchitd()
1735 assert(!async); in ehci_state_fetchsitd()
1948 if (q->async) { in ehci_state_execute()
1961 if (q->async) { in ehci_state_execute()
[all …]
/openbmc/linux/drivers/base/regmap/
H A Dregmap-spi.c23 struct regmap_async_spi *async = data; in regmap_spi_complete() local
25 regmap_async_complete_cb(&async->core, async->m.status); in regmap_spi_complete()
64 async->t[0].tx_buf = reg; in regmap_spi_async_write()
65 async->t[0].len = reg_len; in regmap_spi_async_write()
66 async->t[1].tx_buf = val; in regmap_spi_async_write()
67 async->t[1].len = val_len; in regmap_spi_async_write()
69 spi_message_init(&async->m); in regmap_spi_async_write()
70 spi_message_add_tail(&async->t[0], &async->m); in regmap_spi_async_write()
72 spi_message_add_tail(&async->t[1], &async->m); in regmap_spi_async_write()
75 async->m.context = async; in regmap_spi_async_write()
[all …]
/openbmc/qemu/python/tests/
H A Dprotocol.py52 async def _do_accept(self):
120 async def _runner():
218 async def _asyncSetUp(self):
265 async def _watcher():
322 async def testBadINET(self):
329 async def testBadUNIX(self):
357 async def testTimeout(self):
377 async def testRequire(self):
445 async def _asyncSetUp(self):
501 async def _prod_session_api(
[all …]
/openbmc/linux/drivers/gpu/drm/msm/
H A Dmsm_atomic_trace.h12 TP_PROTO(bool async, unsigned crtc_mask),
13 TP_ARGS(async, crtc_mask),
15 __field(bool, async)
19 __entry->async = async;
23 __entry->async, __entry->crtc_mask)
27 TP_PROTO(bool async, unsigned crtc_mask),
28 TP_ARGS(async, crtc_mask),
30 __field(bool, async)
34 __entry->async = async;
38 __entry->async, __entry->crtc_mask)
/openbmc/openbmc/poky/bitbake/lib/bb/asyncrpc/
H A Dclient.py63 async def connect_sock():
70 async def connect_sock():
89 async def connect_sock():
121 async def connect(self):
126 async def disconnect(self):
131 async def close(self):
159 async def invoke(self, msg):
160 async def proc():
168 async def ping(self):
171 async def __aenter__(self):
[all …]
H A Dconnection.py51 async def send_message(self, msg):
56 async def recv_message(self):
75 async def send(self, msg):
79 async def recv(self):
98 async def close(self):
114 async def send_message(self, msg):
117 async def recv_message(self):
121 async def send(self, msg):
129 async def recv(self):
143 async def close(self):
/openbmc/linux/drivers/staging/vc04_services/interface/
H A DTESTING60 vchi ping (size 0, 0 async, 0 oneway) -> 122.000000us
61 vchi bulk (size 0, 0 async, 0 oneway) -> 546.000000us
64 vchi ping (size 0, 0 async, 0 oneway) -> 70.000000us
67 vchi ping (size 0, 1 async, 0 oneway) -> 65.000000us
69 vchi ping (size 0, 2 async, 0 oneway) -> 74.000000us
73 vchi ping (size 0, 0 async, 1 oneway) -> 70.000000us
74 vchi ping (size 0, 0 async, 2 oneway) -> 76.000000us
77 vchi ping (size 0, 100 async, 0 oneway) -> nanus
79 vchi ping (size 0, 0 async, 100 oneway) -> nanus
80 vchi ping (size 0, 100 async, 100 oneway) -> infus
[all …]
/openbmc/webui-vue/src/store/modules/Operations/
H A DControlStore.js52 async getLastPowerOperationTime({ commit }) {
64 async getLastBmcRebootTime({ commit }) {
74 async rebootBmc() {
89 async serverPowerOn({ dispatch, commit }) {
96 async serverSoftReboot({ dispatch, commit }) {
103 async serverHardReboot({ dispatch, commit }) {
110 async serverSoftPowerOff({ dispatch, commit }) {
117 async serverHardPowerOff({ dispatch, commit }) {
124 async serverPowerChange({ commit }, data) {
/openbmc/openbmc/poky/bitbake/lib/prserv/
H A Dclient.py16 async def getPR(self, version, pkgarch, checksum):
23 async def test_pr(self, version, pkgarch, checksum):
30 async def test_package(self, version, pkgarch):
37 async def max_package_pr(self, version, pkgarch):
44 async def importone(self, version, pkgarch, checksum, value):
51 async def export(self, version, pkgarch, checksum, colinfo):
58 async def is_readonly(self):
/openbmc/sdbusplus/include/sdbusplus/async/
H A Dclient.hpp5 namespace sdbusplus::async namespace
29 sdbusplus::async::proxy_ns::proxy<S, P, false, Preserved>>...
33 using Proxy = sdbusplus::async::proxy_ns::proxy<S, P, false, Preserved>;
42 explicit client(sdbusplus::async::context& ctx)
46 explicit client(sdbusplus::async::context& ctx) in client()
52 explicit client(sdbusplus::async::context& ctx, Proxy p) in client()
106 static sdbusplus::async::context& context(Self* self) in context()
/openbmc/sdbusplus/example/
H A Dcalculator-client.cpp6 auto startup(sdbusplus::async::context& ctx) -> sdbusplus::async::task<> in startup()
17 sdbusplus::async::client_t< in startup()
67 sdbusplus::async::context ctx; in main()
70 sdbusplus::async::execution::just() | in main()
71 sdbusplus::async::execution::then([&ctx]() { ctx.request_stop(); })); in main()
H A Dcalculator-aserver.cpp10 explicit Calculator(sdbusplus::async::context& ctx, auto path) : in Calculator()
22 auto y) -> sdbusplus::async::task<divide_t::return_type> in method_call()
36 auto method_call(clear_t) -> sdbusplus::async::task<> in method_call()
62 sdbusplus::async::context ctx; in main()
67 ctx.spawn([](sdbusplus::async::context& ctx) -> sdbusplus::async::task<> { in main()
/openbmc/sdbusplus/test/async/
H A Dcontext.cpp28 std::optional<sdbusplus::async::context> ctx{std::in_place};
59 ctx->spawn(sdbusplus::async::sleep_for(*ctx, timeout) | in TEST_F()
76 size_t& executed) -> sdbusplus::async::task<size_t> in TEST_F()
103 auto m = std::make_optional<sdbusplus::async::match>( in TEST_F()
111 ctx->spawn(sdbusplus::async::sleep_for(*ctx, 1ms) | in TEST_F()
122 auto m = std::make_optional<sdbusplus::async::match>( in TEST_F()
129 bool& ran) -> sdbusplus::async::task<> in TEST_F()
139 ctx->spawn(sdbusplus::async::sleep_for(*ctx, 1ms) | in TEST_F()
/openbmc/qemu/python/qemu/qmp/
H A Dprotocol.py272 async def start_server_and_accept(
331 async def accept(self) -> None:
388 async def disconnect(self) -> None:
488 async def _stop_server(self) -> None:
503 async def _incoming(self,
586 async def _do_accept(self) -> None:
753 async def _bh_disconnect(self) -> None:
954 async def _readline(self) -> bytes:
983 async def _do_recv(self) -> T:
993 async def _recv(self) -> T:
[all …]
/openbmc/sdbusplus/tools/sdbusplus/templates/
H A Dinterface.client.hpp.mako2 #include <sdbusplus/async/client.hpp>
23 * sdbusplus::async::client_t<${interface.classname}>() or
29 sdbusplus::async::client_t<details::${interface.classname}>,
35 sdbusplus::async::client_t<details::${interface.classname}>,
47 private sdbusplus::async::client::details::client_context_friend
55 // indirectly through sdbusplus::async::client_t.
70 sdbusplus::async::context& context()
72 return sdbusplus::async::client::details::client_context_friend::
/openbmc/linux/drivers/comedi/drivers/
H A Dni_tiocmd.c79 struct comedi_cmd *cmd = &s->async->cmd; in ni_tio_input_inttrig()
95 s->async->inttrig = NULL; in ni_tio_input_inttrig()
107 struct comedi_async *async = s->async; in ni_tio_input_cmd() local
108 struct comedi_cmd *cmd = &async->cmd; in ni_tio_input_cmd()
127 async->inttrig = &ni_tio_input_inttrig; in ni_tio_input_cmd()
129 async->inttrig = NULL; in ni_tio_input_cmd()
162 struct comedi_cmd *cmd = &s->async->cmd; in ni_tio_cmd_setup()
207 struct comedi_async *async = s->async; in ni_tio_cmd() local
208 struct comedi_cmd *cmd = &async->cmd; in ni_tio_cmd()
462 s->async->events |= COMEDI_CB_OVERFLOW; in ni_tio_handle_interrupt()
[all …]
/openbmc/webui-vue/src/store/modules/SecurityAndAccess/
H A DPoliciesStore.js32 async getNetworkProtocolStatus({ commit }) {
43 async getBiosStatus({ commit }) {
52 async getSessionTimeout({ commit }) {
61 async saveIpmiProtocolState({ commit }, protocolEnabled) {
94 async saveSshProtocolState({ commit }, protocolEnabled) {
127 async saveRtadState({ commit }, updatedRtad) {
155 async saveVtpmState({ commit }, updatedVtpm) {
183 async saveSessionTimeoutValue({ dispatch }, sessionTimeoutNewValue) {

12345678910>>...21