/kernel/linux/linux-5.10/drivers/gpu/drm/vmwgfx/ |
H A D | vmwgfx_overlay.c | 41 bool paused; member 241 * If the stream is paused the no evict flag is removed from the buffer 262 /* If the stream is paused this is already done */ in vmw_overlay_stop() 263 if (!stream->paused) { in vmw_overlay_stop() 280 stream->paused = false; in vmw_overlay_stop() 282 stream->paused = true; in vmw_overlay_stop() 310 stream->buf, buf, stream->paused ? "" : "not "); in vmw_overlay_update_stream() 317 } else if (!stream->paused) { in vmw_overlay_update_stream() 318 /* If the buffers match and not paused then just send in vmw_overlay_update_stream() 350 /* stream is no longer stopped/paused */ in vmw_overlay_update_stream() [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/vmwgfx/ |
H A D | vmwgfx_overlay.c | 41 bool paused; member 235 * If the stream is paused the no evict flag is removed from the buffer 256 /* If the stream is paused this is already done */ in vmw_overlay_stop() 257 if (!stream->paused) { in vmw_overlay_stop() 274 stream->paused = false; in vmw_overlay_stop() 276 stream->paused = true; in vmw_overlay_stop() 304 stream->buf, buf, stream->paused ? "" : "not "); in vmw_overlay_update_stream() 311 } else if (!stream->paused) { in vmw_overlay_update_stream() 312 /* If the buffers match and not paused then just send in vmw_overlay_update_stream() 344 /* stream is no longer stopped/paused */ in vmw_overlay_update_stream() [all...] |
/kernel/linux/linux-5.10/drivers/staging/unisys/visorinput/ |
H A D | visorinput.c | 109 bool paused; member 273 * If we're not paused, really enable interrupts. Regardless of whether in visorinput_open() 274 * we are paused, set a flag indicating interrupts should be enabled so in visorinput_open() 279 if (devdata->paused) in visorinput_open() 301 * If we're not paused, really disable interrupts. Regardless of in visorinput_close() 302 * whether we are paused, set a flag indicating interrupts should be in visorinput_close() 307 if (devdata->paused) in visorinput_close() 418 * happens, and that will enable channel interrupts. Setting paused in devdata_create() 422 devdata->paused = true; in devdata_create() 479 devdata->paused in devdata_create() [all...] |
/kernel/linux/linux-5.10/drivers/scsi/aic7xxx/ |
H A D | aic79xx_proc.c | 214 int paused; in ahd_proc_write_seeprom() local 220 paused = ahd_is_paused(ahd); in ahd_proc_write_seeprom() 221 if (!paused) in ahd_proc_write_seeprom() 265 if (!paused) in ahd_proc_write_seeprom()
|
H A D | aic7xxx_proc.c | 194 int paused; in ahc_proc_write_seeprom() local 200 paused = ahc_is_paused(ahc); in ahc_proc_write_seeprom() 201 if (!paused) in ahc_proc_write_seeprom() 279 if (!paused) in ahc_proc_write_seeprom()
|
/kernel/linux/linux-6.6/drivers/scsi/aic7xxx/ |
H A D | aic79xx_proc.c | 214 int paused; in ahd_proc_write_seeprom() local 220 paused = ahd_is_paused(ahd); in ahd_proc_write_seeprom() 221 if (!paused) in ahd_proc_write_seeprom() 266 if (!paused) in ahd_proc_write_seeprom()
|
H A D | aic7xxx_proc.c | 194 int paused; in ahc_proc_write_seeprom() local 200 paused = ahc_is_paused(ahc); in ahc_proc_write_seeprom() 201 if (!paused) in ahc_proc_write_seeprom() 280 if (!paused) in ahc_proc_write_seeprom()
|
/kernel/linux/linux-5.10/kernel/events/ |
H A D | internal.h | 22 int paused; /* can write into ring buffer */ member 75 rb->paused = 0; in rb_toggle_paused() 77 rb->paused = 1; in rb_toggle_paused()
|
/kernel/linux/linux-6.6/kernel/events/ |
H A D | internal.h | 22 int paused; /* can write into ring buffer */ member 74 rb->paused = 0; in rb_toggle_paused() 76 rb->paused = 1; in rb_toggle_paused()
|
/kernel/linux/linux-5.10/net/strparser/ |
H A D | strparser.c | 101 if (strp->paused) in __strp_recv() 303 if (unlikely(strp->paused)) { in __strp_recv() 304 /* Upper layer paused strp */ in __strp_recv() 368 if (unlikely(strp->stopped) || strp->paused) in strp_data_ready() 403 if (strp->paused) in do_strp_work() 484 strp->paused = 0; in __strp_unpause() 496 strp->paused = 0; in strp_unpause() 498 /* Sync setting paused with RX work */ in strp_unpause()
|
/kernel/linux/linux-6.6/net/strparser/ |
H A D | strparser.c | 101 if (strp->paused) in __strp_recv() 303 if (unlikely(strp->paused)) { in __strp_recv() 304 /* Upper layer paused strp */ in __strp_recv() 368 if (unlikely(strp->stopped) || strp->paused) in strp_data_ready() 403 if (strp->paused) in do_strp_work() 484 strp->paused = 0; in __strp_unpause() 496 strp->paused = 0; in strp_unpause() 498 /* Sync setting paused with RX work */ in strp_unpause()
|
/kernel/linux/linux-5.10/drivers/gpu/drm/via/ |
H A D | via_dma.c | 405 * the regulator has already paused, restart it. 411 int paused, count; in via_hook_segment() local 416 paused = 0; in via_hook_segment() 440 paused = (via_read(dev_priv, 0x41c) & 0x80000000); in via_hook_segment() 441 if (paused) in via_hook_segment() 447 paused = via_read(dev_priv, 0x41c) & 0x80000000; in via_hook_segment() 449 if (paused && !no_pci_fire) { in via_hook_segment() 470 return paused; in via_hook_segment() 632 * and actually paused at the current buffer end). in via_cmdbuf_jump()
|
/kernel/linux/linux-5.10/include/net/ |
H A D | strparser.h | 82 u32 paused : 1; member 99 strp->paused = 1; in strp_pause()
|
/kernel/linux/linux-6.6/include/net/ |
H A D | strparser.h | 93 u32 paused : 1; member 110 strp->paused = 1; in strp_pause()
|
/kernel/linux/linux-5.10/sound/pci/lola/ |
H A D | lola_pcm.c | 113 * clear paused flag when FIFO gets ready again 131 if (str->prepared && str->paused) { in lola_sync_wait_for_fifo() 139 str->paused = 0; in lola_sync_wait_for_fifo() 162 if (str->paused && str->prepared) in lola_sync_pause() 172 if (str->paused) in lola_stream_reset() 543 str->paused = !start; in lola_pcm_trigger()
|
/kernel/linux/linux-6.6/sound/pci/lola/ |
H A D | lola_pcm.c | 113 * clear paused flag when FIFO gets ready again 131 if (str->prepared && str->paused) { in lola_sync_wait_for_fifo() 139 str->paused = 0; in lola_sync_wait_for_fifo() 162 if (str->paused && str->prepared) in lola_sync_pause() 172 if (str->paused) in lola_stream_reset() 543 str->paused = !start; in lola_pcm_trigger()
|
/kernel/linux/linux-5.10/drivers/dma/qcom/ |
H A D | hidma.c | 294 if (mchan->paused && (ret == DMA_IN_PROGRESS)) { in hidma_tx_status() 564 if (!mchan->paused) { in hidma_pause() 568 mchan->paused = true; in hidma_pause() 583 if (mchan->paused) { in hidma_resume() 587 mchan->paused = false; in hidma_resume()
|
H A D | hidma.h | 85 bool paused; member
|
/kernel/linux/linux-6.6/drivers/dma/qcom/ |
H A D | hidma.c | 287 if (mchan->paused && (ret == DMA_IN_PROGRESS)) { in hidma_tx_status() 568 if (!mchan->paused) { in hidma_pause() 572 mchan->paused = true; in hidma_pause() 587 if (mchan->paused) { in hidma_resume() 591 mchan->paused = false; in hidma_resume()
|
/kernel/linux/linux-5.10/drivers/macintosh/ |
H A D | rack-meter.c | 69 int paused; member 149 pr_debug("rackmeter: %s\n", pause ? "paused" : "started"); in rackmeter_do_pause() 151 rm->paused = pause; in rackmeter_do_pause() 248 if (pause != rm->paused) { in rackmeter_do_timer()
|
/kernel/linux/linux-6.6/drivers/macintosh/ |
H A D | rack-meter.c | 68 int paused; member 148 pr_debug("rackmeter: %s\n", pause ? "paused" : "started"); in rackmeter_do_pause() 150 rm->paused = pause; in rackmeter_do_pause() 247 if (pause != rm->paused) { in rackmeter_do_timer()
|
/kernel/linux/linux-5.10/net/kcm/ |
H A D | kcmproc.c | 166 if (!psock->strp.paused && !psock->ready_rx_msg) { in kcm_format_psock() 175 if (psock->strp.paused) in kcm_format_psock()
|
/kernel/linux/linux-6.6/drivers/net/wireless/realtek/rtw89/ |
H A D | ps.c | 37 rtwdev->hci.paused = true; in rtw89_ps_power_mode_change_with_hci() 46 rtwdev->hci.paused = false; in rtw89_ps_power_mode_change_with_hci()
|
/kernel/linux/linux-6.6/net/kcm/ |
H A D | kcmproc.c | 166 if (!psock->strp.paused && !psock->ready_rx_msg) { in kcm_format_psock() 175 if (psock->strp.paused) in kcm_format_psock()
|
/kernel/linux/linux-6.6/drivers/soundwire/ |
H A D | cadence_master.h | 90 * @paused: status set in .trigger, to be used in suspend 101 bool paused; member
|