/kernel/linux/linux-5.10/drivers/net/ethernet/marvell/ |
H A D | mvneta.c | 3832 /* Asymmetric pause is unsupported */ in mvneta_validate() 3886 state->pause = 0; in mvneta_mac_pcs_get_state() 3888 state->pause |= MLO_PAUSE_RX; in mvneta_mac_pcs_get_state() 3890 state->pause |= MLO_PAUSE_TX; in mvneta_mac_pcs_get_state() 3969 if (state->pause & MLO_PAUSE_AN && state->an_enabled) in mvneta_mac_config() 4572 struct ethtool_pauseparam *pause) in mvneta_ethtool_get_pauseparam() 4576 phylink_ethtool_get_pauseparam(pp->phylink, pause); in mvneta_ethtool_get_pauseparam() 4580 struct ethtool_pauseparam *pause) in mvneta_ethtool_set_pauseparam() 4584 return phylink_ethtool_set_pauseparam(pp->phylink, pause); in mvneta_ethtool_set_pauseparam() 4571 mvneta_ethtool_get_pauseparam(struct net_device *dev, struct ethtool_pauseparam *pause) mvneta_ethtool_get_pauseparam() argument 4579 mvneta_ethtool_set_pauseparam(struct net_device *dev, struct ethtool_pauseparam *pause) mvneta_ethtool_set_pauseparam() argument
|
/kernel/linux/linux-5.10/drivers/net/ethernet/nvidia/ |
H A D | forcedeth.c | 84 #define DEV_HAS_PAUSEFRAME_TX_V1 0x0010000 /* device supports tx pause frames version 1 */ 85 #define DEV_HAS_PAUSEFRAME_TX_V2 0x0020000 /* device supports tx pause frames version 2 */ 86 #define DEV_HAS_PAUSEFRAME_TX_V3 0x0040000 /* device supports tx pause frames version 3 */ 1518 /* some phys clear out pause advertisement on reset, set it back */ in phy_init() 3295 /* limit the number of tx pause frames to a default of 8 */ in nv_update_pause() 3564 /* setup pause frame */ in nv_update_linkspeed() 4498 if (np->pause_flags & NV_PAUSEFRAME_RX_REQ) /* for rx we set both advertisements but disable tx pause */ in nv_set_link_ksettings() 4543 if (np->pause_flags & NV_PAUSEFRAME_RX_REQ) {/* for rx we set both advertisements but disable tx pause */ in nv_set_link_ksettings() 4794 static void nv_get_pauseparam(struct net_device *dev, struct ethtool_pauseparam* pause) in nv_get_pauseparam() argument 4798 pause in nv_get_pauseparam() 4803 nv_set_pauseparam(struct net_device *dev, struct ethtool_pauseparam* pause) nv_set_pauseparam() argument [all...] |
/kernel/linux/linux-6.6/drivers/net/ethernet/nvidia/ |
H A D | forcedeth.c | 84 #define DEV_HAS_PAUSEFRAME_TX_V1 0x0010000 /* device supports tx pause frames version 1 */ 85 #define DEV_HAS_PAUSEFRAME_TX_V2 0x0020000 /* device supports tx pause frames version 2 */ 86 #define DEV_HAS_PAUSEFRAME_TX_V3 0x0040000 /* device supports tx pause frames version 3 */ 1517 /* some phys clear out pause advertisement on reset, set it back */ in phy_init() 3290 /* limit the number of tx pause frames to a default of 8 */ in nv_update_pause() 3559 /* setup pause frame */ in nv_update_linkspeed() 4493 if (np->pause_flags & NV_PAUSEFRAME_RX_REQ) /* for rx we set both advertisements but disable tx pause */ in nv_set_link_ksettings() 4538 if (np->pause_flags & NV_PAUSEFRAME_RX_REQ) {/* for rx we set both advertisements but disable tx pause */ in nv_set_link_ksettings() 4795 static void nv_get_pauseparam(struct net_device *dev, struct ethtool_pauseparam* pause) in nv_get_pauseparam() argument 4799 pause in nv_get_pauseparam() 4804 nv_set_pauseparam(struct net_device *dev, struct ethtool_pauseparam* pause) nv_set_pauseparam() argument [all...] |
/third_party/backends/backend/ |
H A D | umax.c | 1680 int pause; in umax_reposition_scanner() local 1682 pause = dev->pause_after_reposition + dev->pause_for_moving * (dev->upper_left_y + dev->scanlength) / in umax_reposition_scanner() 1693 if (pause > 0) /* predefined time to wait (Astra 2400S) */ in umax_reposition_scanner() 1695 DBG(DBG_info2, "pause for repositioning %d msec ...\n", pause); in umax_reposition_scanner() 1696 usleep(((long) pause) * 1000); in umax_reposition_scanner() 1697 DBG(DBG_info, "repositioning pause done\n"); in umax_reposition_scanner() 1699 else if (pause == 0) /* use TEST UNIT READY */ in umax_reposition_scanner() 1704 else /* pause < 0 : return without any pause */ in umax_reposition_scanner() 7280 int pause; sane_start() local [all...] |
/kernel/linux/linux-5.10/drivers/net/ethernet/broadcom/ |
H A D | bcm63xx_enet.c | 747 /* rx flow control (pause frame handling) */ in bcm_enet_set_flow() 758 /* tx flow control (pause frame generation) */ in bcm_enet_set_flow() 795 if (phydev->link && phydev->pause != priv->old_pause) { in bcm_enet_adjust_phy_link() 798 if (phydev->pause) { in bcm_enet_adjust_phy_link() 799 /* pause was advertised by lpa and us */ in bcm_enet_adjust_phy_link() 803 /* pause setting overridden by user */ in bcm_enet_adjust_phy_link() 813 priv->old_pause = phydev->pause; in bcm_enet_adjust_phy_link() 822 phydev->pause == 1 ? "rx&tx" : "off"); in bcm_enet_adjust_phy_link() 1544 /* asymetric pause mode not supported, in bcm_enet_set_pauseparam() 1550 /* no pause autone in bcm_enet_set_pauseparam() [all...] |
H A D | sb1250-mac.c | 249 int sbm_pause; /* current pause setting */ 2369 pause_chg = (sc->sbm_pause != phy_dev->pause); in sbmac_mii_poll() 2387 if (phy_dev->pause) in sbmac_mii_poll() 2403 sc->sbm_pause = phy_dev->pause; in sbmac_mii_poll()
|
/kernel/linux/linux-6.6/drivers/net/ethernet/broadcom/ |
H A D | bcm63xx_enet.c | 768 /* rx flow control (pause frame handling) */ in bcm_enet_set_flow() 779 /* tx flow control (pause frame generation) */ in bcm_enet_set_flow() 816 if (phydev->link && phydev->pause != priv->old_pause) { in bcm_enet_adjust_phy_link() 819 if (phydev->pause) { in bcm_enet_adjust_phy_link() 820 /* pause was advertised by lpa and us */ in bcm_enet_adjust_phy_link() 824 /* pause setting overridden by user */ in bcm_enet_adjust_phy_link() 834 priv->old_pause = phydev->pause; in bcm_enet_adjust_phy_link() 843 phydev->pause == 1 ? "rx&tx" : "off"); in bcm_enet_adjust_phy_link() 1568 /* asymetric pause mode not supported, in bcm_enet_set_pauseparam() 1574 /* no pause autone in bcm_enet_set_pauseparam() [all...] |
/kernel/linux/linux-6.6/drivers/net/phy/ |
H A D | marvell.c | 1623 phydev->pause = 0; in marvell_read_status_page_an() 1626 phydev->pause = 1; in marvell_read_status_page_an() 1629 phydev->pause = 1; in marvell_read_status_page_an() 1673 phydev->pause = 0; in marvell_read_status_page()
|
H A D | phy_device.c | 660 dev->pause = 0; in phy_device_create() 2094 phydev->pause = 0; in genphy_setup_forced() 2483 phydev->pause = 0; in genphy_read_status() 2530 phydev->pause = 0; in genphy_c37_read_status() 2755 * pause mode advertising. 2768 * phy_support_sym_pause - Enable support of symmetrical pause 2772 * Pause, but not asym pause. 2782 * phy_support_asym_pause - Enable support of asym pause 2801 * receiver pause and pause aut [all...] |
H A D | phy.c | 98 if (local_pause && phydev->pause) in phy_pause_str() 104 if (phydev->pause) in phy_pause_str()
|
/third_party/curl/lib/ |
H A D | http2.c | 2436 bool pause) in http2_data_pause() 2444 uint32_t window = pause? 0 : stream->local_window_size; in http2_data_pause() 2456 if(!pause) in http2_data_pause() 2462 if(!pause) { in http2_data_pause() 2434 http2_data_pause(struct Curl_cfilter *cf, struct Curl_easy *data, bool pause) http2_data_pause() argument
|
/kernel/linux/linux-5.10/drivers/net/phy/ |
H A D | phy.c | 95 if (local_pause && phydev->pause) in phy_pause_str() 101 if (phydev->pause) in phy_pause_str()
|
/kernel/linux/linux-5.10/drivers/net/ethernet/broadcom/bnxt/ |
H A D | bnxt_sriov.c | 1057 phy_qcfg_resp.pause = in bnxt_vf_set_link() 1067 phy_qcfg_resp.pause = 0; in bnxt_vf_set_link()
|
/kernel/linux/linux-5.10/drivers/net/ethernet/aurora/ |
H A D | nb8800.c | 632 priv->pause_rx = phydev->pause; in nb8800_pause_config() 633 priv->pause_tx = phydev->pause ^ phydev->asym_pause; in nb8800_pause_config()
|
/kernel/linux/linux-5.10/kernel/trace/ |
H A D | trace_events_trigger.c | 872 static void __pause_named_trigger(struct event_trigger_data *data, bool pause) in __pause_named_trigger() argument 878 if (pause) { in __pause_named_trigger() 890 * @data: The trigger data of a named trigger to pause 895 * to pause all triggers with the same name. 903 * unpause_named_trigger - Un-pause all named triggers with the same name
|
/kernel/linux/linux-5.10/drivers/media/rc/ |
H A D | redrat3.c | 87 /* Minimum value for pause recognition. */ 160 __be32 pause; member 558 dev_dbg(dev, "set ir parm min pause %d rc 0x%02x\n", *val, rc); in redrat3_reset() 821 irdata->pause = cpu_to_be32(redrat3_len_to_us(100)); in redrat3_transmit_ir()
|
/kernel/linux/linux-6.6/drivers/media/rc/ |
H A D | redrat3.c | 87 /* Minimum value for pause recognition. */ 160 __be32 pause; member 558 dev_dbg(dev, "set ir parm min pause %d rc 0x%02x\n", *val, rc); in redrat3_reset() 821 irdata->pause = cpu_to_be32(redrat3_len_to_us(100)); in redrat3_transmit_ir()
|
/kernel/linux/linux-6.6/drivers/net/dsa/mv88e6xxx/ |
H A D | port.c | 51 int pause) in mv88e6185_port_set_pause() 60 if (pause) in mv88e6185_port_set_pause() 746 * the remote end or the period of time that this port can pause the 50 mv88e6185_port_set_pause(struct mv88e6xxx_chip *chip, int port, int pause) mv88e6185_port_set_pause() argument
|
/kernel/linux/linux-6.6/drivers/net/ethernet/broadcom/bnxt/ |
H A D | bnxt_sriov.c | 1105 phy_qcfg_resp.pause = in bnxt_vf_set_link() 1115 phy_qcfg_resp.pause = 0; in bnxt_vf_set_link()
|
/kernel/linux/linux-6.6/drivers/net/pcs/ |
H A D | pcs-xpcs.c | 591 state->pause = MLO_PAUSE_TX | MLO_PAUSE_RX; in xpcs_resolve_pma() 999 state->pause = 0; in xpcs_get_state_c37_sgmii()
|
/kernel/linux/linux-6.6/kernel/trace/ |
H A D | trace_events_trigger.c | 1197 static void __pause_named_trigger(struct event_trigger_data *data, bool pause) in __pause_named_trigger() argument 1203 if (pause) { in __pause_named_trigger() 1215 * @data: The trigger data of a named trigger to pause 1220 * to pause all triggers with the same name. 1228 * unpause_named_trigger - Un-pause all named triggers with the same name
|
/third_party/node/lib/ |
H A D | repl.js | 408 function pause() { 628 pause();
|
/third_party/node/deps/v8/third_party/ittapi/src/ittnotify/ |
H A D | ittnotify_static.h | 57 ITT_STUBV(ITTAPI, void, pause, (void), (ITT_NO_PARAMS), pause, __itt_group_control | __itt_group_legacy, "no args")
|
/kernel/linux/linux-5.10/drivers/net/ethernet/qlogic/qed/ |
H A D | qed_vf.c | 1525 p_params->pause.autoneg = p_bulletin->req_autoneg_pause; in __qed_vf_get_link_params() 1526 p_params->pause.forced_rx = p_bulletin->req_forced_rx; in __qed_vf_get_link_params() 1527 p_params->pause.forced_tx = p_bulletin->req_forced_tx; in __qed_vf_get_link_params()
|
/kernel/linux/linux-5.10/drivers/infiniband/hw/hfi1/ |
H A D | pio.c | 57 static void sc_wait_for_packet_egress(struct send_context *sc, int pause); 1000 * @pause: wait for credit return 1002 * Wait for packet egress, optionally pause for credit return 1011 static void sc_wait_for_packet_egress(struct send_context *sc, int pause) in sc_wait_for_packet_egress() argument 1046 if (pause) in sc_wait_for_packet_egress()
|