Lines Matching refs:I2S_Handle

129 static bool initObject(I2S_Handle handle, I2S_Params *params);
130 static void initIO(I2S_Handle handle);
131 static void initDMA(I2S_Handle handle);
132 static void initHw(I2S_Handle handle);
139 static void configSCK(I2S_Handle handle);
140 static void configWS(I2S_Handle handle);
141 static void configSerialFormat(I2S_Handle handle);
149 static void handleDMATransaction(I2S_Handle handle, I2S_Transaction *transaction, uint32_t transLen…
150 static void handleCPUTransaction(I2S_Handle handle, I2S_Transaction **ptrTransaction, I2SCC32XX_Int…
168 I2S_Handle handle = (I2S_Handle)&(I2S_config[i]); in I2S_init()
181 I2S_Handle I2S_open(uint_least8_t index, I2S_Params *params) { in I2S_open()
182 I2S_Handle handle; in I2S_open()
186 handle = (I2S_Handle)&(I2S_config[index]); in I2S_open()
248 void I2S_close(I2S_Handle handle) in I2S_close()
288 void I2S_setReadQueueHead(I2S_Handle handle, I2S_Transaction *transaction){ in I2S_setReadQueueHead()
301 void I2S_setWriteQueueHead(I2S_Handle handle, I2S_Transaction *transaction){ in I2S_setWriteQueueHead()
314 void I2S_startClocks(I2S_Handle handle) { in I2S_startClocks()
336 void I2S_stopClocks(I2S_Handle handle) { in I2S_stopClocks()
357 void I2S_startRead(I2S_Handle handle) { in I2S_startRead()
404 void I2S_startWrite(I2S_Handle handle) { in I2S_startWrite()
451 void I2S_stopRead(I2S_Handle handle) { in I2S_stopRead()
489 void I2S_stopWrite(I2S_Handle handle) { in I2S_stopWrite()
531 static void initHw(I2S_Handle handle) { in initHw()
549 I2S_Handle handle = (I2S_Handle)arg; in I2S_hwiIntFxn()
620 I2S_Handle handle = (I2S_Handle)arg; in updateDataReadDMA()
680 I2S_Handle handle = (I2S_Handle)arg; in updateDataWriteDMA()
742 static void handleDMATransaction(I2S_Handle handle, in handleDMATransaction()
791 I2S_Handle handle = (I2S_Handle)arg; in updateDataReadCPU()
847 I2S_Handle handle = (I2S_Handle)arg; in updateDataWriteCPU()
908 static void handleCPUTransaction(I2S_Handle handle, in handleCPUTransaction()
946 static bool initObject(I2S_Handle handle, I2S_Params *params) { in initObject()
1113 static void initIO(I2S_Handle handle) { in initIO()
1189 static void initDMA(I2S_Handle handle) { in initDMA()
1218 static void configSCK(I2S_Handle handle) { in configSCK()
1260 static void configWS(I2S_Handle handle) { in configWS()
1284 static void configSerialFormat(I2S_Handle handle) { in configSerialFormat()
1346 initHw((I2S_Handle)clientArg); in postNotify()