Lines Matching defs:txlen
925 * Returns a buffer to an allocated message, txlen contains length
930 const void *data, int *txlen)
935 *txlen = len + 4;
936 buf = ipmi_buf_acquire(sc, *txlen);
954 * Returns a buffer to an allocated message, txlen contains length
959 const void *data, int *txlen)
964 *txlen = len + 2;
965 buf = ipmi_buf_acquire(sc, *txlen);
984 int txlen, const void *data)
990 __func__, rssa, NETFN_LUN(netfn, rslun), cmd, txlen);
991 dbg_dump(10, __func__, txlen, data);
995 APP_SEND_MESSAGE, 7 + txlen, NULL, &txlen);
1006 if (txlen)
1007 memcpy(imbreq->data, data, txlen);
1009 imbreq->data[txlen] = cksum8(&imbreq->rqSa, txlen + 3);
1014 txlen, data, &txlen);
1020 rc = sc->sc_if->sendmsg(sc, txlen, buf);