Home | History | Annotate | Download | only in stm32

Lines Matching defs:cookie

144         void *cookie;
226 void *cookie;
359 state->rx.callback(state->rx.cookie, tx, rx, err);
366 state->tx.callback(state->tx.cookie, tx, rx, err);
519 state->tx.cookie = xfer->cookie;
524 state->rx.cookie = NULL;
538 static void stmI2cMasterDmaTxDone(void *cookie, uint16_t bytesLeft, int err)
540 struct StmI2cDev *pdev = cookie;
559 static void stmI2cMasterDmaRxDone(void *cookie, uint16_t bytesLeft, int err)
561 struct StmI2cDev *pdev = cookie;
901 I2cCallbackF callback, void *cookie)
926 xfer->cookie = cookie;
950 state->tx.cookie = xfer->cookie;
955 state->rx.cookie = NULL;
1022 I2cCallbackF callback, void *cookie)
1033 state->rx.cookie = cookie;
1052 size_t txSize, I2cCallbackF callback, void *cookie)
1071 state->tx.cookie = cookie;
1088 void *cookie)
1090 return i2cSlaveTx(busId, NULL, byte, 0, callback, cookie);
1094 I2cCallbackF callback, void *cookie)
1096 return i2cSlaveTx(busId, txBuf, 0, txSize, callback, cookie);