Lines Matching defs:async
3228 int async)
3253 if (async == 0)
3256 DPRINTF(sc, WPI_DEBUG_CMD, "%s: cmd %s size %u async %d\n",
3257 __func__, wpi_cmd_str(code), size, async);
3315 return async ? 0 : mtx_sleep(cmd, &sc->sc_mtx, PCATCH, "wpicmd", hz);
3426 wpi_add_broadcast_node(struct wpi_softc *sc, int async)
3443 return wpi_cmd(sc, WPI_CMD_ADD_NODE, &node, sizeof node, async);
3677 wpi_set_txpower(struct wpi_softc *sc, int async)
3718 return wpi_cmd(sc, WPI_CMD_TXPOWER, &cmd, sizeof cmd, async);
3795 wpi_set_pslevel(struct wpi_softc *sc, uint8_t dtim, int level, int async)
3804 "%s: dtim=%d, level=%d, async=%d\n",
3805 __func__, dtim, level, async);
3843 return wpi_cmd(sc, WPI_CMD_SET_POWER_MODE, &cmd, sizeof cmd, async);
3861 wpi_send_rxon(struct wpi_softc *sc, int assoc, int async)
3865 if (async)
3878 sizeof (struct wpi_assoc), async);
3885 if (async) {
3888 sizeof (struct wpi_rxon), async);
3894 sizeof (struct wpi_rxon), async);
3906 error = wpi_add_broadcast_node(sc, async);
3915 if ((error = wpi_set_txpower(sc, async)) != 0) {