Home
last modified time | relevance | path

Searched refs:Flags (Results 1 – 25 of 264) sorted by relevance

1234567891011

/linux/rust/kernel/
A Dalloc.rs21 pub struct Flags(u32); struct
23 impl Flags { impls
30 impl core::ops::BitOr for Flags { implementation
44 impl core::ops::Not for Flags { implementation
55 use super::Flags;
60 pub const __GFP_ZERO: Flags = Flags(bindings::__GFP_ZERO);
68 pub const __GFP_HIGHMEM: Flags = Flags(bindings::__GFP_HIGHMEM);
75 pub const GFP_ATOMIC: Flags = Flags(bindings::GFP_ATOMIC);
79 pub const GFP_KERNEL: Flags = Flags(bindings::GFP_KERNEL);
82 pub const GFP_KERNEL_ACCOUNT: Flags = Flags(bindings::GFP_KERNEL_ACCOUNT);
[all …]
A Dinit.rs214 alloc::{box_ext::BoxExt, AllocError, Flags},
1189 fn try_pin_init<E>(init: impl PinInit<T, E>, flags: Flags) -> Result<Self::PinnedSelf, E> in try_pin_init()
1197 fn pin_init<E>(init: impl PinInit<T, E>, flags: Flags) -> error::Result<Self::PinnedSelf> in pin_init()
1209 fn try_init<E>(init: impl Init<T, E>, flags: Flags) -> Result<Self, E> in try_init()
1214 fn init<E>(init: impl Init<T, E>, flags: Flags) -> error::Result<Self> in init()
1230 fn try_pin_init<E>(init: impl PinInit<T, E>, flags: Flags) -> Result<Self::PinnedSelf, E> in try_pin_init()
1238 fn try_init<E>(init: impl Init<T, E>, flags: Flags) -> Result<Self, E> in try_init()
1250 fn try_pin_init<E>(init: impl PinInit<T, E>, flags: Flags) -> Result<Self::PinnedSelf, E> in try_pin_init()
1258 fn try_init<E>(init: impl Init<T, E>, flags: Flags) -> Result<Self, E> in try_init()
1270 fn try_pin_init<E>(init: impl PinInit<T, E>, flags: Flags) -> Result<Self::PinnedSelf, E> in try_pin_init()
[all …]
/linux/drivers/isdn/mISDN/
A Dlayer1.c20 u_long Flags; member
120 if (test_bit(FLG_L1_ACTIVATING, &l1->Flags)) in l1_deact_cnf()
131 test_and_set_bit(FLG_L1_DEACTTIMER, &l1->Flags); in l1_deact_req_s()
139 if (test_bit(FLG_L1_ACTIVATING, &l1->Flags)) { in l1_power_up_s()
176 if (!test_bit(FLG_L1_ACTIVATED, &l1->Flags)) { in l1_info4_ind()
180 test_and_set_bit(FLG_L1_ACTTIMER, &l1->Flags); in l1_info4_ind()
189 test_and_clear_bit(FLG_L1_T3RUN, &l1->Flags); in l1_timer3()
230 test_and_set_bit(FLG_L1_T3RUN, &l1->Flags); in l1_activate_s()
241 (!test_bit(FLG_L1_T3RUN, &l1->Flags))) { in l1_activate_no()
343 if (test_bit(FLG_L1_ACTIVATED, &l1->Flags)) in l1_event()
[all …]
A Dhwchannel.c59 test_and_set_bit(FLG_HDLC, &ch->Flags); in mISDN_initdchannel()
78 ch->Flags = 0; in mISDN_initbchannel()
131 test_and_clear_bit(FLG_TX_BUSY, &ch->Flags); in mISDN_clear_bchannel()
132 test_and_clear_bit(FLG_TX_NEXT, &ch->Flags); in mISDN_clear_bchannel()
133 test_and_clear_bit(FLG_ACTIVE, &ch->Flags); in mISDN_clear_bchannel()
134 test_and_clear_bit(FLG_FILLEMPTY, &ch->Flags); in mISDN_clear_bchannel()
135 test_and_clear_bit(FLG_TX_EMPTY, &ch->Flags); in mISDN_clear_bchannel()
136 test_and_clear_bit(FLG_RX_OFF, &ch->Flags); in mISDN_clear_bchannel()
177 test_and_set_bit(FLG_RX_OFF, &bch->Flags); in mISDN_ctrl_bchannel()
364 if (test_bit(FLG_TX_NEXT, &bch->Flags)) { in get_next_bframe()
[all …]
/linux/rust/kernel/alloc/
A Dvec_ext.rs5 use super::{AllocError, Flags};
20 fn with_capacity(capacity: usize, flags: Flags) -> Result<Self, AllocError>; in with_capacity()
35 fn push(&mut self, v: T, flags: Flags) -> Result<(), AllocError>; in push()
52 fn extend_from_slice(&mut self, other: &[T], flags: Flags) -> Result<(), AllocError> in extend_from_slice()
74 fn reserve(&mut self, additional: usize, flags: Flags) -> Result<(), AllocError>; in reserve()
78 fn with_capacity(capacity: usize, flags: Flags) -> Result<Self, AllocError> { in with_capacity()
84 fn push(&mut self, v: T, flags: Flags) -> Result<(), AllocError> { in push()
96 fn extend_from_slice(&mut self, other: &[T], flags: Flags) -> Result<(), AllocError> in extend_from_slice()
113 fn reserve(&mut self, additional: usize, _flags: Flags) -> Result<(), AllocError> { in reserve()
119 fn reserve(&mut self, additional: usize, flags: Flags) -> Result<(), AllocError> { in reserve()
A Dbox_ext.rs5 use super::{AllocError, Flags};
14 fn new(x: T, flags: Flags) -> Result<Self, AllocError>; in new()
19 fn new_uninit(flags: Flags) -> Result<Box<MaybeUninit<T>>, AllocError>; in new_uninit()
41 fn new(x: T, flags: Flags) -> Result<Self, AllocError> { in new()
49 fn new_uninit(_flags: Flags) -> Result<Box<MaybeUninit<T>>, AllocError> { in new_uninit()
54 fn new_uninit(flags: Flags) -> Result<Box<MaybeUninit<T>>, AllocError> { in new_uninit()
A Dallocator.rs5 use super::{flags::*, Flags};
17 pub(crate) unsafe fn krealloc_aligned(ptr: *mut u8, new_layout: Layout, flags: Flags) -> *mut u8 { in krealloc_aligned()
/linux/drivers/isdn/hardware/mISDN/
A DmISDNisar.c419 if (test_bit(FLG_RX_OFF, &ch->bch.Flags)) { in isar_rcv_frame()
614 &ch->bch.Flags); in isar_fill_fifo()
619 &ch->bch.Flags); in isar_fill_fifo()
702 &ch->bch.Flags)) { in send_next()
704 &ch->bch.Flags)) { in send_next()
872 if (test_bit(BC_FLG_ORIG, &ch->bch.Flags)) in isar_pump_statev_fax()
932 &ch->bch.Flags)) in isar_pump_statev_fax()
937 &ch->bch.Flags); in isar_pump_statev_fax()
1291 &ch->is->Flags)) in modeisar()
1301 &ch->bch.Flags); in modeisar()
[all …]
A Dw6692.c319 if (test_bit(FLG_TX_BUSY, &dch->Flags)) { in d_retransmit()
325 test_and_set_bit(FLG_TX_BUSY, &dch->Flags); in d_retransmit()
460 if (test_bit(FLG_RX_OFF, &wch->bch.Flags)) { in W6692_empty_Bfifo()
506 else if (test_bit(FLG_HDLC, &wch->bch.Flags)) in W6692_fill_Bfifo()
622 test_and_set_bit(FLG_HDLC, &wch->bch.Flags); in w6692_mode()
668 if (test_bit(FLG_HDLC, &wch->bch.Flags)) { in W6692B_interrupt()
810 if (test_bit(FLG_BUSY_TIMER, &dch->Flags)) { in dbusy_timer_handler()
817 test_and_set_bit(FLG_L1_BUSY, &dch->Flags); in dbusy_timer_handler()
997 if (test_and_set_bit(FLG_OPEN, &bch->Flags)) in open_bchannel()
1036 test_and_clear_bit(FLG_OPEN, &bch->Flags); in w6692_bctrl()
[all …]
A DmISDNipac.c224 if (test_bit(FLG_TX_BUSY, &isac->dch.Flags)) { in isac_retransmit()
230 test_and_set_bit(FLG_TX_BUSY, &isac->dch.Flags); in isac_retransmit()
666 test_and_clear_bit(FLG_TX_BUSY, &dch->Flags); in isac_l1cmd()
676 test_and_set_bit(FLG_ACTIVE, &dch->Flags); in isac_l1cmd()
681 test_and_clear_bit(FLG_ACTIVE, &dch->Flags); in isac_l1cmd()
930 if (test_bit(FLG_RX_OFF, &hscx->bch.Flags)) { in hscx_empty_fifo()
969 if (!test_bit(FLG_TX_EMPTY, &hscx->bch.Flags)) in hscx_fill_fifo()
1114 if (!test_bit(FLG_ACTIVE, &hx->bch.Flags)) in ipac_irq()
1136 if (test_bit(FLG_FILLEMPTY, &hx->bch.Flags)) in ipac_irq()
1397 test_and_clear_bit(FLG_OPEN, &bch->Flags); in hscx_bctrl()
[all …]
A Dhfcpci.c310 if (test_bit(FLG_ACTIVE, &hc->bch[0].Flags) && in Sel_BCS()
564 if (test_bit(FLG_RX_OFF, &bch->Flags)) { in hfcpci_empty_fifo_trans()
753 if (!test_bit(FLG_FILLEMPTY, &bch->Flags) && in hfcpci_fill_fifo()
778 if (test_bit(FLG_FILLEMPTY, &bch->Flags)) { in hfcpci_fill_fifo()
947 test_and_set_bit(FLG_ACTIVE, &dch->Flags); in handle_nt_timer3()
1016 &dch->Flags)) { in ph_state_nt()
1096 test_and_set_bit(FLG_ACTIVE, &dch->Flags); in hfc_l1callback()
1312 test_and_clear_bit(FLG_HDLC, &bch->Flags); in mode_hfcpci()
1377 test_and_set_bit(FLG_HDLC, &bch->Flags); in mode_hfcpci()
1553 test_and_clear_bit(FLG_OPEN, &bch->Flags); in hfc_bctrl()
[all …]
A Davmfritz.c251 if (test_bit(FLG_ACTIVE, &fc->bch[0].Flags) && in Sel_BCS()
360 test_and_clear_bit(FLG_HDLC, &bch->Flags); in modehdlc()
381 test_and_set_bit(FLG_HDLC, &bch->Flags); in modehdlc()
400 if (test_bit(FLG_RX_OFF, &bch->Flags)) { in hdlc_empty_fifo()
451 if (!test_bit(FLG_TX_EMPTY, &bch->Flags)) in hdlc_fill_fifo()
466 if (test_bit(FLG_HDLC, &bch->Flags)) in hdlc_fill_fifo()
558 if (test_bit(FLG_TRANSPARENT, &bch->Flags)) { in HDLC_irq()
581 if (!test_bit(FLG_TRANSPARENT, &bch->Flags)) in HDLC_irq()
584 test_and_set_bit(FLG_TX_EMPTY, &bch->Flags); in HDLC_irq()
847 test_and_clear_bit(FLG_OPEN, &bch->Flags); in avm_bctrl()
[all …]
A Dhfcsusb.c257 phi->dch.ch.Flags = dch->Flags; in hfcsusb_ph_info()
262 phi->bch[i].Flags = hw->bch[i].Flags; in hfcsusb_ph_info()
307 if (test_bit(FLG_ACTIVE, &dch->Flags)) { in hfcusb_l2l1D()
315 &dch->Flags); in hfcusb_l2l1D()
397 test_and_set_bit(FLG_ACTIVE, &dch->Flags); in hfc_l1callback()
436 set_bit(FLG_ACTIVE, &hw->ech.Flags); in open_dchannel()
655 test_and_set_bit(FLG_ACTIVE, &dch->Flags); in ph_state_nt()
708 clear_bit(FLG_HDLC, &bch->Flags); in hfcsusb_setup_bch()
709 clear_bit(FLG_TRANSPARENT, &bch->Flags); in hfcsusb_setup_bch()
714 set_bit(FLG_TRANSPARENT, &bch->Flags); in hfcsusb_setup_bch()
[all …]
A Dnetjet.c218 test_and_clear_bit(FLG_HDLC, &bc->bch.Flags); in mode_tiger()
239 test_and_set_bit(FLG_HDLC, &bc->bch.Flags); in mode_tiger()
377 if (test_bit(FLG_RX_OFF, &bc->bch.Flags)) { in read_dma()
388 if (test_bit(FLG_TRANSPARENT, &bc->bch.Flags)) in read_dma()
402 if (test_bit(FLG_TRANSPARENT, &bc->bch.Flags)) { in read_dma()
535 if (!test_bit(FLG_TX_EMPTY, &bc->bch.Flags)) in fill_dma()
641 if (test_bit(FLG_HDLC, &bc->bch.Flags)) { in send_tiger_bc()
759 if (!test_and_set_bit(FLG_ACTIVE, &bch->Flags)) in nj_l2l1B()
801 test_and_clear_bit(FLG_OPEN, &bch->Flags); in nj_bctrl()
859 if (test_and_set_bit(FLG_OPEN, &bch->Flags)) in open_bchannel()
[all …]
/linux/fs/smb/common/
A Dsmb2pdu.h143 __le32 Flags; member
165 __le32 Flags; member
229 __le16 Flags; member
242 __le16 Flags; member
518 __le32 Flags; member
547 __le32 Flags; member
646 __u8 Flags; member
698 __le16 Flags; member
712 __le16 Flags; member
769 __le32 Flags; member
[all …]
/linux/drivers/scsi/mpt3sas/mpi/
A Dmpi2_raid.h81 U8 Flags; /*0x01 */ member
100 U8 Flags; /*0x01 */ member
126 U8 Flags; /*0x00 */ member
247 U32 Flags; /*0x00 */ member
262 U32 Flags; /*0x04 */ member
279 U32 Flags; /*0x10 */ member
A Dmpi2.h582 U8 Flags; /*0x03 */ member
900 U8 Flags; member
908 U8 Flags; member
916 U8 Flags; member
934 U8 Flags; member
946 U8 Flags; member
958 U8 Flags; member
968 U8 Flags; member
978 U8 Flags; member
1133 U8 Flags; member
[all …]
A Dmpi2_tool.h102 U32 Flags; /*0x0C */ member
166 U32 Flags; /*0x10 */ member
205 U8 Flags; /*0x17 */ member
282 U8 Flags; /*0x0F */ member
381 U8 Flags; /* 0x0D */ member
485 U32 Flags; /*0x20 */ member
/linux/drivers/pcmcia/
A Dcistpl.c458 SPACE(tuple->Flags) = HAS_LINK(tuple->Flags) = 1; in pccard_get_first_tuple()
480 if (MFC_FN(tuple->Flags)) { in follow_link()
490 MFC_FN(tuple->Flags)--; in follow_link()
493 SPACE(tuple->Flags) = LINK_SPACE(tuple->Flags); in follow_link()
494 HAS_LINK(tuple->Flags) = 0; in follow_link()
498 if (SPACE(tuple->Flags)) { in follow_link()
535 attr = SPACE(tuple->Flags); in pccard_get_next_tuple()
555 attr = SPACE(tuple->Flags); in pccard_get_next_tuple()
570 HAS_LINK(tuple->Flags) = 1; in pccard_get_next_tuple()
578 HAS_LINK(tuple->Flags) = 1; in pccard_get_next_tuple()
[all …]
/linux/drivers/message/fusion/lsi/
A Dmpi.h390 U8 Flags; member
399 U8 Flags; member
408 U8 Flags; member
426 U8 Flags; member
437 U8 Flags; member
448 U8 Flags; member
459 U8 Flags; member
470 U8 Flags; member
A Dmpi_cnfg.h672 U8 Flags; /* 0Dh */ member
727 U8 Flags; /* 0Ch */ member
797 U32 Flags; /* 0Ch */ member
859 U32 Flags; /* 04h */ member
891 U32 Flags; /* 04h */ member
973 U32 Flags; /* 04h */ member
1001 U8 Flags; /* 05h */ member
1709 U32 Flags; /* 04h */ member
1798 U32 Flags; /* 04h */ member
1891 U16 Flags; /* 12h */ member
[all …]
/linux/tools/testing/selftests/net/netfilter/packetdrill/
A Dconntrack_synack_old.pkt4 // 10.176.25.8.829 > 10.192.171.30.2049: Flags [S], seq 2375731741, win 29200, options [mss 1460,sa…
6 // 10.192.171.30.2049 > 10.176.25.8.829: Flags [S.], seq 145824453, ack 643160523, win 65535, optio…
8 // 10.192.171.30.2049 > 10.176.25.8.829: Flags [R.], seq 1, ack 1, win 65535, options [mss 8952,nop…
10 // 10.176.25.8.829 > 10.192.171.30.2049: Flags [S], seq 2375731741, win 29200, options [mss 1460,sa…
13 // 10.192.171.30.2049 > 10.176.25.8.829: Flags [S.], seq 162602410, ack 2375731742, win 65535, opti…
/linux/Documentation/gpu/imagination/
A Duapi.rst62 :doc: Flags for CREATE_BO
141 :doc: Flags for the drm_pvr_sync_op object.
147 :doc: Flags for SUBMIT_JOB ioctl geometry command.
150 :doc: Flags for SUBMIT_JOB ioctl fragment command.
153 :doc: Flags for SUBMIT_JOB ioctl compute command.
156 :doc: Flags for SUBMIT_JOB ioctl transfer command.
/linux/include/linux/
A DmISDNhw.h74 test_and_set_bit(ev, &((s)->Flags)); \
80 u_long Flags; member
143 u_long Flags; member
/linux/drivers/media/pci/ngene/
A Dngene-core.c81 u32 Flags = chan->DataFormatFlags; in demux_bh_work() local
83 Flags |= BEF_OVERFLOW; in demux_bh_work()
89 Clock, Flags)) { in demux_bh_work()
102 Cur->ngeneBuffer.SR.Flags &= in demux_bh_work()
132 Flags |= BEF_EVEN_FIELD; in demux_bh_work()
134 Flags |= BEF_OVERFLOW; in demux_bh_work()
140 Flags); in demux_bh_work()
145 Flags); in demux_bh_work()
150 Cur->ngeneBuffer.SR.Flags = 0x00; in demux_bh_work()
219 ngeneBuffer.SR.Flags |= 0x40; in irq_handler()
[all …]

Completed in 97 milliseconds

1234567891011