Searched refs:suspend (Results 1 - 25 of 80) sorted by last modified time

1234

/freebsd-current/sys/dev/tpm/
H A Dtpm20.c48 static int tpm20_save_state(device_t dev, bool suspend);
302 tpm20_save_state(device_t dev, bool suspend) argument
315 * Inform the TPM whether we are going to suspend or reboot/shutdown.
317 if (suspend)
/freebsd-current/contrib/unbound/validator/
H A Dvalidator.c67 /** Max number of RRSIGs to validate at once, suspend query for later. */
75 struct query_info* qinfo, struct sock_list* origin, int* suspend);
627 * @param suspend: returned true if the task takes too long and needs to
628 * suspend to continue the effort later.
636 int* suspend)
645 *suspend = 0;
703 * one go, suspend. Only suspend if there is a next
706 *suspend = 1;
742 *suspend
633 validate_msg_signatures(struct module_qstate* qstate, struct val_qstate* vq, struct module_env* env, struct val_env* ve, struct reply_info* chase_reply, struct key_entry_key* key_entry, int* suspend) argument
960 validate_positive_response(struct module_env* env, struct val_env* ve, struct query_info* qchase, struct reply_info* chase_reply, struct key_entry_key* kkey, struct module_qstate* qstate, struct val_qstate* vq, int* nsec3_calculations, int* suspend) argument
1079 validate_nodata_response(struct module_env* env, struct val_env* ve, struct query_info* qchase, struct reply_info* chase_reply, struct key_entry_key* kkey, struct module_qstate* qstate, struct val_qstate* vq, int* nsec3_calculations, int* suspend) argument
1193 validate_nameerror_response(struct module_env* env, struct val_env* ve, struct query_info* qchase, struct reply_info* chase_reply, struct key_entry_key* kkey, int* rcode, struct module_qstate* qstate, struct val_qstate* vq, int* nsec3_calculations, int* suspend) argument
1354 validate_any_response(struct module_env* env, struct val_env* ve, struct query_info* qchase, struct reply_info* chase_reply, struct key_entry_key* kkey, struct module_qstate* qstate, struct val_qstate* vq, int* nsec3_calculations, int* suspend) argument
1481 validate_cname_response(struct module_env* env, struct val_env* ve, struct query_info* qchase, struct reply_info* chase_reply, struct key_entry_key* kkey, struct module_qstate* qstate, struct val_qstate* vq, int* nsec3_calculations, int* suspend) argument
1611 validate_cname_noanswer_response(struct module_env* env, struct val_env* ve, struct query_info* qchase, struct reply_info* chase_reply, struct key_entry_key* kkey, struct module_qstate* qstate, struct val_qstate* vq, int* nsec3_calculations, int* suspend) argument
2056 int suspend; local
2129 int rcode, suspend, nsec3_calculations = 0; local
3007 process_ds_response(struct module_qstate* qstate, struct val_qstate* vq, int id, int rcode, struct dns_msg* msg, struct query_info* qinfo, struct sock_list* origin, int* suspend) argument
3285 int suspend; local
[all...]
/freebsd-current/lib/libthr/thread/
H A Dthr_private.h266 int suspend; member in struct:pthread_attr
H A Dthr_init.c83 .suspend = THR_CREATE_RUNNING,
H A Dthr_create.c125 if (new_thread->attr.suspend == THR_CREATE_SUSPENDED) {
255 if (curthread->attr.suspend == THR_CREATE_SUSPENDED)
270 if (curthread->attr.suspend == THR_CREATE_SUSPENDED) {
H A Dthr_attr.c346 (*attr)->suspend = THR_CREATE_SUSPENDED;
/freebsd-current/usr.sbin/bhyvectl/
H A Dbhyvectl.c139 { "suspend", REQ_ARG, 0, SET_SUSPEND_FILE},
307 snapshot_request(const char *vmname, char *file, bool suspend) argument
318 nvlist_add_bool(nvl, "suspend", suspend);
/freebsd-current/sys/arm64/vmm/
H A Dvmm.c143 int suspend; /* (i) stop VM execution */ member in struct:vm
394 vm->suspend = 0;
1152 if (atomic_cmpset_int(&vm->suspend, 0, how) == 0) {
1154 vm->suspend, how);
1177 KASSERT(vm->suspend > VM_SUSPEND_NONE && vm->suspend < VM_SUSPEND_LAST,
1178 ("vm_exit_suspended: invalid suspend type %d", vm->suspend));
1184 vmexit->u.suspended.how = vm->suspend;
1788 evinfo.sptr = &vm->suspend;
[all...]
/freebsd-current/sys/dev/ice/
H A Dice_sched.c486 * ice_aq_suspend_sched_elems - suspend scheduler elements
488 * @elems_req: number of elements to suspend
546 * ice_sched_suspend_resume_elems - suspend or resume HW nodes
550 * @suspend: true means suspend / false means resume
556 bool suspend)
570 if (suspend)
579 ice_debug(hw, ICE_DBG_SCHED, "suspend/resume failed\n");
2036 * disabled then suspend the VSI if it is not already.
2056 /* suspend th
555 ice_sched_suspend_resume_elems(struct ice_hw *hw, u8 num_nodes, u32 *node_teids, bool suspend) argument
[all...]
/freebsd-current/sys/compat/linuxkpi/common/include/linux/
H A Ddevice.h73 int (*suspend)(struct device *dev); member in struct:dev_pm_ops
H A Dpci.h248 int (*suspend) (struct pci_dev *dev, pm_message_t state); /* Device suspended */ member in struct:pci_driver
/freebsd-current/sys/dev/usb/controller/
H A Dxhci.c1557 xhci_cmd_stop_ep(struct xhci_softc *sc, uint8_t suspend, argument
1571 if (suspend)
3586 DPRINTFN(6, "suspend port %u (LPM=%u)\n", index, i);
4247 /* blindly suspend all endpoints */
4252 DPRINTF("Failed to suspend endpoint "
/freebsd-current/sys/compat/linuxkpi/common/src/
H A Dlinux_acpi.c41 #include <linux/suspend.h>
H A Dlinux_pci.c865 if (pdev->pdrv->suspend != NULL)
866 error = -pdev->pdrv->suspend(pdev, pm);
867 else if (pmops != NULL && pmops->suspend != NULL) {
868 error = -pmops->suspend(&pdev->dev);
/freebsd-current/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_wait_release.h490 // Force immediate suspend if not set by user and more threads than
513 // Force immediate suspend
606 // Don't suspend if KMP_BLOCKTIME is set to "infinite"
611 // Don't suspend if there is a likelihood of new tasks being spawned.
624 // Don't suspend if wait loop designated non-sleepable
635 KF_TRACE(50, ("__kmp_wait_sleep: T#%d suspend time reached\n", th_gtid));
640 flag->suspend(th_gtid);
830 void suspend(int th_gtid) { __kmp_suspend_32(th_gtid, this); }
866 void suspend(int th_gtid) { __kmp_suspend_64(th_gtid, this); }
904 void suspend(in
[all...]
/freebsd-current/sys/dev/ata/
H A Data-pci.h59 int (*suspend)(device_t); member in struct:ata_pci_controller
H A Data-pci.c168 if (ctlr->suspend)
169 error = ctlr->suspend(dev);
/freebsd-current/sys/dev/irdma/
H A Dirdma_main.h561 int irdma_qp_suspend_resume(struct irdma_sc_qp *qp, bool suspend);
/freebsd-current/sys/arm64/nvidia/tegra210/
H A Dmax77620_regulators.c422 max77620_set_fps_slots(struct max77620_reg_sc *sc, bool suspend) argument
427 if (suspend) {
657 rv = OF_getencprop(node, "maxim,suspend-fps-source",
662 rv = OF_getencprop(node, "maxim,suspend-fps-power-up-slot",
667 rv = OF_getencprop(node, "maxim,suspend-fps-power-down-slot",
/freebsd-current/sys/contrib/dev/athk/ath10k/
H A Dpci.c2980 /* Nothing to do; the important stuff is in the driver suspend. */
3184 .suspend = ath10k_pci_hif_suspend,
3860 ath10k_warn(ar, "failed to suspend hif: %d\n", ret);
/freebsd-current/sys/dev/iicbus/
H A Diichid.c190 bool suspend; /* iicbus lock */ member in struct:iichid_softc
631 * Request iicbus early as sc->suspend and sc->power_on
655 sc->suspend = false;
658 sc->suspend = true;
665 power_on = sc->open & !sc->suspend;
1273 * to run on certain CPU to interacts with LAPIC while suspend
/freebsd-current/sys/contrib/dev/iwlwifi/pcie/
H A Dtrans.c1552 static int iwl_pcie_d3_handshake(struct iwl_trans *trans, bool suspend) argument
1559 suspend ? UREG_DOORBELL_TO_ISR6_SUSPEND :
1563 suspend ? CSR_IPC_SLEEP_CONTROL_SUSPEND :
1571 /* Invalidate it toward next suspend or resume */
1576 suspend ? "entering" : "exiting");
/freebsd-current/sys/amd64/vmm/
H A Dvmm.c173 int suspend; /* (i) stop VM execution */ member in struct:vm
511 vm->suspend = 0;
1509 if (vm->rendezvous_func != NULL || vm->suspend || vcpu->reqidle)
1726 VMM_CTR0(vcpu, "Sleeping during suspend");
1736 VMM_CTR0(vcpu, "Rendezvous during suspend");
1810 if (atomic_cmpset_int(&vm->suspend, 0, how) == 0) {
1812 vm->suspend, how);
1835 KASSERT(vm->suspend > VM_SUSPEND_NONE && vm->suspend < VM_SUSPEND_LAST,
1836 ("vm_exit_suspended: invalid suspend typ
[all...]
/freebsd-current/sys/dev/bwn/
H A Dif_bwn.c2845 dr->suspend = bwn_dma_64_suspend;
2853 dr->suspend = bwn_dma_32_suspend;
3966 device_printf(sc->sc_dev, "MAC suspend failed\n");
/freebsd-current/contrib/telnet/telnet/
H A Dcommands.c1320 suspend(void)
2538 zhelp[] = "suspend telnet",
2566 { "z", zhelp, (int (*)(int, char **))suspend, 0 },
1314 suspend(void) function

Completed in 501 milliseconds

1234