Home
last modified time | relevance | path

Searched refs:SNDCommand (Results 1 – 3 of 3) sorted by relevance

/TwlSDK-5.5/include/nitro/snd/common/
Dcommand.h82 typedef struct SNDCommand struct
84 struct SNDCommand *next; argument
88 SNDCommand; argument
98 struct SNDCommand *SND_AllocCommand(u32 flags);
99 void SND_PushCommand(struct SNDCommand *command);
101 const SNDCommand *SND_RecvCommandReply(u32 flags);
/TwlSDK-5.5/build/libraries/snd/common/src/
Dsnd_command.c51 static SNDCommand sCommandArray[SND_COMMAND_NUM] ATTRIBUTE_ALIGN(32); /* Command array */
52 static SNDCommand *sFreeList; /* Free command list */
53 static SNDCommand *sFreeListEnd; /* End of free command list */
55 static SNDCommand *sReserveList; /* Reserved command list */
56 static SNDCommand *sReserveListEnd; /* End of reserved command list */
58 static SNDCommand *sWaitingCommandListQueue[SND_PXI_FIFO_MESSAGE_BUFSIZE + 1];
86 static SNDCommand *AllocCommand(void);
113 SNDCommand *command; in SND_CommandInit()
179 const SNDCommand *SND_RecvCommandReply(u32 flags) in SND_RecvCommandReply()
182 SNDCommand *commandList; in SND_RecvCommandReply()
[all …]
/TwlSDK-5.5/build/libraries/snd/ARM9/src/
Dsnd_interface.c415 SNDCommand *command = SND_AllocCommand(SND_COMMAND_BLOCK); in PushCommand_impl()