Home
last modified time | relevance | path

Searched full:rcv (Results 1 – 25 of 319) sorted by relevance

12345678910>>...13

/OK3568_Linux_fs/kernel/net/can/
H A Daf_can.c446 struct receiver *rcv; in can_rx_register() local
460 rcv = kmem_cache_alloc(rcv_cache, GFP_KERNEL); in can_rx_register()
461 if (!rcv) in can_rx_register()
469 rcv->can_id = can_id; in can_rx_register()
470 rcv->mask = mask; in can_rx_register()
471 rcv->matches = 0; in can_rx_register()
472 rcv->func = func; in can_rx_register()
473 rcv->data = data; in can_rx_register()
474 rcv->ident = ident; in can_rx_register()
475 rcv->sk = sk; in can_rx_register()
[all …]
/OK3568_Linux_fs/kernel/drivers/net/plip/
H A Dplip.c338 struct plip_local *rcv,
347 struct plip_local *snd, struct plip_local *rcv);
364 struct plip_local *rcv = &nl->rcv_data; in plip_bh() local
370 if ((r = (*f)(nl->dev, nl, snd, rcv)) != OK && in plip_bh()
371 (r = plip_bh_timeout_error(nl->dev, nl, snd, rcv, r)) != OK) { in plip_bh()
395 struct plip_local *snd, struct plip_local *rcv, in plip_bh_timeout_error() argument
428 if (rcv->state == PLIP_PK_TRIGGER) { in plip_bh_timeout_error()
441 dev->name, rcv->state, c0); in plip_bh_timeout_error()
445 rcv->state = PLIP_PK_DONE; in plip_bh_timeout_error()
446 if (rcv->skb) { in plip_bh_timeout_error()
[all …]
/OK3568_Linux_fs/kernel/tools/testing/selftests/net/
H A Drxtimestamp.c175 bool do_recv(int rcv, int read_size, struct tstamps expected) in do_recv() argument
198 r = recvmsg(rcv, &hdr, flags); in do_recv()
254 void config_so_flags(int rcv, struct options o) in config_so_flags() argument
258 if (setsockopt(rcv, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) < 0) in config_so_flags()
262 setsockopt(rcv, SOL_SOCKET, SO_TIMESTAMP, in config_so_flags()
267 setsockopt(rcv, SOL_SOCKET, SO_TIMESTAMPNS, in config_so_flags()
272 setsockopt(rcv, SOL_SOCKET, SO_TIMESTAMPING, in config_so_flags()
286 int src, dst, rcv, port; in run_test_case() local
326 rcv = accept(dst, NULL, NULL); in run_test_case()
327 if (rcv < 0) in run_test_case()
[all …]
/OK3568_Linux_fs/kernel/drivers/staging/unisys/visornic/
H A Dvisornic_main.c84 * @num_rcv_bufs: number of rcv buffers the vnic will post.
99 * @struct *cmdrsp_rcv: cmdrsp_rcv is used for posting/unposting rcv
120 * @n_repost_deficit: # of lost rcv buffers.
121 * @bad_rcv_buf: # of unknown rcv skb not freed.
122 * @n_rcv_packets_not_accepted: # bogs rcv packets.
409 /* alloc_rcv_buf - alloc rcv buffer to be given to the IO Partition
410 * @netdev: Network adapter the rcv bufs are attached too.
413 * so that it can write rcv data into our memory space.
421 /* NOTE: the first fragment in each rcv buffer is pointed to by in alloc_rcv_buf()
422 * rcvskb->data. For now all rcv buffers will be RCVPOST_BUF_SIZE in alloc_rcv_buf()
[all …]
/OK3568_Linux_fs/u-boot/drivers/mtd/
H A Dmw_eeprom.c75 u16 rcv; in mw_eeprom_read_word() local
81 rcv = ssi_txrx_byte(addr << (13 - addrlen)); in mw_eeprom_read_word()
82 res = rcv << (16 - addrlen); in mw_eeprom_read_word()
86 rcv = ssi_rx_byte(); in mw_eeprom_read_word()
88 res |= rcv << (bits - 8); in mw_eeprom_read_word()
90 res |= rcv >> (8 - bits); in mw_eeprom_read_word()
/OK3568_Linux_fs/kernel/net/llc/
H A Dllc_input.c161 int (*rcv)(struct sk_buff *, struct net_device *, in llc_rcv() local
195 rcv = rcu_dereference(sap->rcv_func); in llc_rcv()
199 if (rcv) in llc_rcv()
200 rcv(skb, dev, pt, orig_dev); in llc_rcv()
204 if (rcv) { in llc_rcv()
207 rcv(cskb, dev, pt, orig_dev); in llc_rcv()
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/sound/
H A Dsamsung,aries-wm8994.yaml50 For samsung,aries-wm8994: HP, SPK, RCV, LINE, Main Mic, Headset Mic,
52 For samsung,fascinate4g-wm8994: HP, SPK, RCV, LINE, Main Mic,
123 "RCV", "HPOUT2N",
124 "RCV", "HPOUT2P",
H A Dsamsung,midas-audio.yaml94 "RCV", "HPOUT2N",
95 "RCV", "HPOUT2P",
/OK3568_Linux_fs/kernel/drivers/net/
H A Dveth.c288 struct net_device *rcv; in veth_xmit() local
294 rcv = rcu_dereference(priv->peer); in veth_xmit()
295 if (unlikely(!rcv) || !pskb_may_pull(skb, ETH_HLEN)) { in veth_xmit()
300 rcv_priv = netdev_priv(rcv); in veth_xmit()
302 if (rxq < rcv->real_num_rx_queues) { in veth_xmit()
308 if (likely(veth_forward_skb(rcv, skb, rq, rcv_xdp) == NET_RX_SUCCESS)) { in veth_xmit()
436 struct net_device *rcv; in veth_xdp_xmit() local
444 rcv = rcu_dereference(priv->peer); in veth_xdp_xmit()
445 if (unlikely(!rcv)) in veth_xdp_xmit()
448 rcv_priv = netdev_priv(rcv); in veth_xdp_xmit()
[all …]
/OK3568_Linux_fs/buildroot/package/liblinear/
H A D0001-blas-don-t-overwrite-ar-options.patch6 ar's rcv options get lost when AR is passed on
20 -AR = ar rcv
30 + $(AR) rcv blas.a $(FILES)
/OK3568_Linux_fs/kernel/drivers/scsi/lpfc/
H A Dlpfc_disc.h111 uint16_t nlp_maxframe; /* Max RCV frame size */
178 #define NLP_RCV_PLOGI 0x00080000 /* Rcv'ed PLOGI from remote system */
289 #define NLP_EVT_RCV_PLOGI 0x0 /* Rcv'd an ELS PLOGI command */
290 #define NLP_EVT_RCV_PRLI 0x1 /* Rcv'd an ELS PRLI command */
291 #define NLP_EVT_RCV_LOGO 0x2 /* Rcv'd an ELS LOGO command */
292 #define NLP_EVT_RCV_ADISC 0x3 /* Rcv'd an ELS ADISC command */
293 #define NLP_EVT_RCV_PDISC 0x4 /* Rcv'd an ELS PDISC command */
294 #define NLP_EVT_RCV_PRLO 0x5 /* Rcv'd an ELS PRLO command */
/OK3568_Linux_fs/kernel/drivers/tty/serial/
H A Dicom.c249 stgAddr = stgAddr + sizeof(icom_port->statStg->rcv[0]); in get_port_memory()
250 icom_port->statStg->rcv[index].leLength = 0; in get_port_memory()
251 icom_port->statStg->rcv[index].WorkingLength = in get_port_memory()
255 icom_port->statStg->rcv[index].leNext = in get_port_memory()
259 icom_port->statStg->rcv[index].leBuffer = in get_port_memory()
263 icom_port->statStg->rcv[index].leNext = in get_port_memory()
267 icom_port->statStg->rcv[index].leBuffer = in get_port_memory()
270 icom_port->statStg->rcv[index].leNext = 0; in get_port_memory()
271 icom_port->statStg->rcv[index].leBuffer = 0; in get_port_memory()
740 status = cpu_to_le16(icom_port->statStg->rcv[rcv_buff].flags); in recv_interrupt()
[all …]
/OK3568_Linux_fs/kernel/drivers/net/ethernet/alacritech/
H A Dslic.h165 /* Rcv Cmd buf addr reg */
173 /* Write RCV config reg */
175 /* Write rcv addr a low */
177 /* Write rcv addr a high */
179 /* Write rcv addr b low */
181 /* Write rcv addr b high */
215 /* 64 bit Rcv Cmd buf addr reg*/
219 /* Download Gigabit RCV sequencer ucode */
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd/include/
H A Dsbhndpio.h34 /* 2byte-wide pio register set per channel(xmt or rcv) */
38 uint16 fifofree; /* only valid in xmt channel, not in rcv channel */
48 /* 4byte-wide pio register set per channel(xmt or rcv) */
H A Detd.h155 uint16 i16_0x406; /* Rcv Fifo Ctrl */
159 uint16 i16_0x424; /* rcv wrd count 0 */
160 uint16 i16_0x426; /* rcv wrd count 1 */
194 uint16 i16_0x406; /* Rcv Fifo Ctrl */
198 uint16 i16_0x424; /* rcv wrd count 0 */
199 uint16 i16_0x426; /* rcv wrd count 1 */
569 uint32 recv_fifo_status[3][2]; /* Rcv Status0 & Rcv Status1 for 3 Rx fifos */
/OK3568_Linux_fs/external/rkwifibt/drivers/bcmdhd/include/
H A Dsbhndpio.h34 /* 2byte-wide pio register set per channel(xmt or rcv) */
38 uint16 fifofree; /* only valid in xmt channel, not in rcv channel */
48 /* 4byte-wide pio register set per channel(xmt or rcv) */
H A Detd.h155 uint16 i16_0x406; /* Rcv Fifo Ctrl */
159 uint16 i16_0x424; /* rcv wrd count 0 */
160 uint16 i16_0x426; /* rcv wrd count 1 */
194 uint16 i16_0x406; /* Rcv Fifo Ctrl */
198 uint16 i16_0x424; /* rcv wrd count 0 */
199 uint16 i16_0x426; /* rcv wrd count 1 */
569 uint32 recv_fifo_status[3][2]; /* Rcv Status0 & Rcv Status1 for 3 Rx fifos */
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/infineon/bcmdhd/include/
H A Detd.h162 uint16 i16_0x406; /* Rcv Fifo Ctrl */
166 uint16 i16_0x424; /* rcv wrd count 0 */
167 uint16 i16_0x426; /* rcv wrd count 1 */
201 uint16 i16_0x406; /* Rcv Fifo Ctrl */
205 uint16 i16_0x424; /* rcv wrd count 0 */
206 uint16 i16_0x426; /* rcv wrd count 1 */
573 uint32 recv_fifo_status[3][2]; /* Rcv Status0 & Rcv Status1 for 3 Rx fifos */
/OK3568_Linux_fs/external/rkwifibt/drivers/infineon/include/
H A Detd.h162 uint16 i16_0x406; /* Rcv Fifo Ctrl */
166 uint16 i16_0x424; /* rcv wrd count 0 */
167 uint16 i16_0x426; /* rcv wrd count 1 */
201 uint16 i16_0x406; /* Rcv Fifo Ctrl */
205 uint16 i16_0x424; /* rcv wrd count 0 */
206 uint16 i16_0x426; /* rcv wrd count 1 */
573 uint32 recv_fifo_status[3][2]; /* Rcv Status0 & Rcv Status1 for 3 Rx fifos */
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/cywdhd/bcmdhd/include/
H A Detd.h162 uint16 i16_0x406; /* Rcv Fifo Ctrl */
166 uint16 i16_0x424; /* rcv wrd count 0 */
167 uint16 i16_0x426; /* rcv wrd count 1 */
201 uint16 i16_0x406; /* Rcv Fifo Ctrl */
205 uint16 i16_0x424; /* rcv wrd count 0 */
206 uint16 i16_0x426; /* rcv wrd count 1 */
573 uint32 recv_fifo_status[3][2]; /* Rcv Status0 & Rcv Status1 for 3 Rx fifos */
/OK3568_Linux_fs/kernel/sound/soc/codecs/
H A Dmt6351.c453 /* RCV MUX */
470 SOC_DAPM_ENUM("RCV Select", rcv_in_mux_map_enum);
1179 SND_SOC_DAPM_MUX("RCV Mux", SND_SOC_NOPM, 0, 0, &rcv_in_mux_control),
1181 SND_SOC_DAPM_SUPPLY("RCV Stability Enh", MT6351_AUDDEC_ANA_CON1,
1183 SND_SOC_DAPM_SUPPLY("RCV Bias Gen", MT6351_AUDDEC_ANA_CON6,
1186 SND_SOC_DAPM_OUT_DRV("RCV Buffer", MT6351_AUDDEC_ANA_CON0,
1402 {"RCV Mux", "Voice Playback", "DACL"},
1404 {"RCV Buffer", NULL, "RCV Mux"},
1405 {"RCV Buffer", NULL, "RCV Stability Enh"},
1406 {"RCV Buffer", NULL, "RCV Bias Gen"},
[all …]
/OK3568_Linux_fs/kernel/arch/arm/boot/dts/
H A Dexynos4412-n710x.dts85 "RCV", "HPOUT2N",
86 "RCV", "HPOUT2P",
/OK3568_Linux_fs/u-boot/drivers/net/
H A D8390.h72 #define EN0_COUNTER0 EI_SHIFT(0x0d) /* Rcv alignment error counter RD */
74 #define EN0_COUNTER1 EI_SHIFT(0x0e) /* Rcv CRC error counter RD */
76 #define EN0_COUNTER2 EI_SHIFT(0x0f) /* Rcv missed frame error counter RD */
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-extended/tipcutils/tipcutils/
H A D0001-test-ptts-Set-recv-buffer-size-too-max-to-receive-as.patch7 Flooding multicast may make the rcv buffer overrun and is considered
54 + * Flooding multicast may make the rcv buffer overrun and considered premature msg…
/OK3568_Linux_fs/kernel/net/dsa/
H A Dtag_ksz.c80 .rcv = ksz8795_rcv,
152 .rcv = ksz9477_rcv,
186 .rcv = ksz9477_rcv,

12345678910>>...13