Home
last modified time | relevance | path

Searched refs:cancel (Results 1 – 25 of 336) sorted by relevance

12345678910>>...14

/openbmc/linux/io_uring/
H A Dcancel.c131 struct io_cancel *cancel = io_kiocb_to_cmd(req, struct io_cancel); in io_async_cancel_prep() local
138 cancel->addr = READ_ONCE(sqe->addr); in io_async_cancel_prep()
139 cancel->flags = READ_ONCE(sqe->cancel_flags); in io_async_cancel_prep()
140 if (cancel->flags & ~CANCEL_FLAGS) in io_async_cancel_prep()
142 if (cancel->flags & IORING_ASYNC_CANCEL_FD) { in io_async_cancel_prep()
143 if (cancel->flags & IORING_ASYNC_CANCEL_ANY) in io_async_cancel_prep()
145 cancel->fd = READ_ONCE(sqe->fd); in io_async_cancel_prep()
147 if (cancel->flags & IORING_ASYNC_CANCEL_OP) { in io_async_cancel_prep()
148 if (cancel->flags & IORING_ASYNC_CANCEL_ANY) in io_async_cancel_prep()
150 cancel->opcode = READ_ONCE(sqe->len); in io_async_cancel_prep()
[all …]
/openbmc/phosphor-fan-presence/monitor/
H A Dpower_off_rule.hpp61 void cancel() in cancel() function in phosphor::fan::monitor::PowerOffRule
66 _action->cancel(true); in cancel()
96 if (_action->cancel(false)) in check()
H A Dpower_off_action.hpp84 virtual bool cancel(bool force) = 0;
194 bool cancel(bool) override in cancel() function in phosphor::fan::monitor::HardPowerOff
286 bool cancel(bool) override in cancel() function in phosphor::fan::monitor::SoftPowerOff
433 bool cancel(bool force) override in cancel() function in phosphor::fan::monitor::EpowPowerOff
/openbmc/linux/drivers/base/firmware_loader/
H A Dsysfs_upload.c96 bool cancel; in cancel_store() local
98 if (kstrtobool(buf, &cancel) || !cancel) in cancel_store()
105 fwlp->ops->cancel(fwlp->fw_upload); in cancel_store()
110 DEVICE_ATTR_WO(cancel);
306 if (!ops || !ops->cancel || !ops->prepare || in firmware_upload_register()
397 fw_upload_priv->ops->cancel(fw_upload); in firmware_upload_unregister()
/openbmc/phosphor-webui/app/configuration/controllers/
H A Dfirmware-controller.js65 $interval.cancel(pollActivationTimer);
77 $interval.cancel(pollActivationTimer);
85 $interval.cancel(pollActivationTimer);
209 $interval.cancel(pollDownloadTimer);
218 $interval.cancel(pollDownloadTimer);
224 $interval.cancel(pollDownloadTimer);
/openbmc/linux/drivers/scsi/isci/
H A Disci.h497 bool cancel; member
503 tmr->cancel = false; in sci_init_timer()
509 tmr->cancel = false; in sci_mod_timer()
515 tmr->cancel = true; in sci_del_timer()
/openbmc/linux/drivers/block/drbd/
H A Ddrbd_worker.c338 static int w_e_send_csum(struct drbd_work *w, int cancel) in w_e_send_csum() argument
347 if (unlikely(cancel)) in w_e_send_csum()
426 int w_resync_timer(struct drbd_work *w, int cancel) in w_resync_timer() argument
433 make_ov_request(first_peer_device(device), cancel); in w_resync_timer()
436 make_resync_request(first_peer_device(device), cancel); in w_resync_timer()
585 static int make_resync_request(struct drbd_peer_device *const peer_device, int cancel) in make_resync_request() argument
598 if (unlikely(cancel)) in make_resync_request()
765 static int make_ov_request(struct drbd_peer_device *peer_device, int cancel) in make_ov_request() argument
773 if (unlikely(cancel)) in make_ov_request()
818 int w_ov_finished(struct drbd_work *w, int cancel) in w_ov_finished() argument
[all …]
/openbmc/linux/include/linux/
H A Daio.h16 void kiocb_set_cancel_fn(struct kiocb *req, kiocb_cancel_fn *cancel);
20 kiocb_cancel_fn *cancel) { } in kiocb_set_cancel_fn() argument
/openbmc/linux/net/can/
H A Dgw.c633 goto cancel; in cgw_put_job()
638 goto cancel; in cgw_put_job()
643 goto cancel; in cgw_put_job()
650 goto cancel; in cgw_put_job()
660 goto cancel; in cgw_put_job()
667 goto cancel; in cgw_put_job()
674 goto cancel; in cgw_put_job()
681 goto cancel; in cgw_put_job()
690 goto cancel; in cgw_put_job()
697 goto cancel; in cgw_put_job()
[all …]
/openbmc/webui-vue/src/views/Logs/Dumps/
H A DDumpsModalConfirmation.vue29 <template #modal-footer="{ cancel }">
30 <b-button variant="secondary" @click="cancel()">
31 {{ $t('global.action.cancel') }}
/openbmc/qemu/qapi/
H A Djob.json94 # @cancel: see @job-cancel
113 'data': ['cancel', 'pause', 'resume', 'set-speed', 'complete', 'dismiss',
166 # @job-cancel:
168 # Instruct an active background job to cancel at the next opportunity.
172 # The job will cancel as soon as possible and then emit a
175 # because it was almost done and there was no opportunity to cancel
182 { 'command': 'job-cancel', 'data': { 'id': 'str' } }
204 # make use of JOB_READY event, job-cancel or job-complete will still
H A Dtpm.json80 # @cancel-path: string showing the TPM's sysfs cancel file for
87 '*cancel-path': 'str' },
/openbmc/webui-vue/src/views/Operations/FactoryReset/
H A DFactoryResetModal.vue58 <template #modal-footer="{ cancel }">
61 data-test-id="factoryReset-button-cancel"
62 @click="cancel()"
64 {{ $t('global.action.cancel') }}
/openbmc/phosphor-webui/app/common/directives/
H A Dconfirm.js15 $scope.cancel = function() {
21 $scope.cancel();
/openbmc/qemu/tests/qemu-iotests/
H A D141.out10 {"execute": "block-job-cancel", "arguments": {"device": "job0"}}
24 {"execute": "block-job-cancel", "arguments": {"device": "job0"}}
38 {"execute": "block-job-cancel", "arguments": {"device": "job0"}}
51 {"execute": "block-job-cancel", "arguments": {"device": "job0"}}
64 {"execute": "block-job-cancel", "arguments": {"device": "job0"}}
/openbmc/linux/drivers/media/dvb-frontends/cxd2880/
H A Dcxd2880_integ.c58 atomic_set(&tnr_dmd->cancel, 1); in cxd2880_integ_cancel()
68 if (atomic_read(&tnr_dmd->cancel) != 0) in cxd2880_integ_check_cancellation()
/openbmc/webui-vue/src/views/Operations/Firmware/
H A DFirmwareModalSwitchToRunning.vue5 :cancel-title="$t('global.action.cancel')"
H A DFirmwareModalUpdateFirmware.vue6 :cancel-title="$t('global.action.cancel')"
/openbmc/webui-vue/src/views/Settings/Network/
H A DModalDns.vue34 <template #modal-footer="{ cancel }">
35 <b-button variant="secondary" @click="cancel()">
36 {{ $t('global.action.cancel') }}
H A DModalHostname.vue34 <template #modal-footer="{ cancel }">
35 <b-button variant="secondary" @click="cancel()">
36 {{ $t('global.action.cancel') }}
H A DModalMacAddress.vue35 <template #modal-footer="{ cancel }">
36 <b-button variant="secondary" @click="cancel()">
37 {{ $t('global.action.cancel') }}
H A DModalDefaultGateway.vue35 <template #modal-footer="{ cancel }">
36 <b-button variant="secondary" @click="cancel()">
37 {{ $t('global.action.cancel') }}
/openbmc/qemu/tests/avocado/avocado_qemu/
H A D__init__.py252 self.cancel("No QEMU binary defined or found in the build tree")
298 self.cancel("Don't know how to check for the presence "
301 self.cancel("%s accelerator does not seem to be "
308 self.cancel('no support for user networking')
330 self.cancel('Could not find "qemu-img"')
/openbmc/dbus-sensors/src/nvme/
H A DNVMeContext.hpp32 scanTimer.cancel(); in ~NVMeContext()
96 scanTimer.cancel(); in close()
/openbmc/boost-dbus/include/dbus/detail/
H A Dwatch_timeout.hpp53 socket->cancel(); in watch_toggled()
103 timer.cancel(); in timeout_toggled()
106 timer.cancel(); in timeout_toggled()

12345678910>>...14