Lines Matching refs:MacCommand_t

46     MacCommand_t* First;
50 MacCommand_t* Last;
65 MacCommand_t MacCommandSlots[NUM_OF_MAC_COMMANDS];
85 static bool IsSlotFree( const MacCommand_t* slot ) in IsSlotFree()
89 for( uint16_t size = 0; size < sizeof( MacCommand_t ); size++ ) in IsSlotFree()
104 static MacCommand_t* MallocNewMacCommandSlot( void ) in MallocNewMacCommandSlot()
108 while( IsSlotFree( ( const MacCommand_t* )&CommandsCtx.MacCommandSlots[itr] ) == false ) in MallocNewMacCommandSlot()
127 static bool FreeMacCommandSlot( MacCommand_t* slot ) in FreeMacCommandSlot()
134 memset1( ( uint8_t* )slot, 0x00, sizeof( MacCommand_t ) ); in FreeMacCommandSlot()
167 static bool LinkedListAdd( MacCommandsList_t* list, MacCommand_t* element ) in LinkedListAdd()
202 static MacCommand_t* LinkedListGetPrevious( MacCommandsList_t* list, MacCommand_t* element ) in LinkedListGetPrevious()
209 MacCommand_t* curElement; in LinkedListGetPrevious()
238 static bool LinkedListRemove( MacCommandsList_t* list, MacCommand_t* element ) in LinkedListRemove()
245 MacCommand_t* PrevElement = LinkedListGetPrevious( list, element ); in LinkedListRemove()
305 MacCommand_t* newCmd; in LoRaMacCommandsAddCmd()
332 LoRaMacCommandStatus_t LoRaMacCommandsRemoveCmd( MacCommand_t* macCmd ) in LoRaMacCommandsRemoveCmd()
356 LoRaMacCommandStatus_t LoRaMacCommandsGetCmd( uint8_t cid, MacCommand_t** macCmd ) in LoRaMacCommandsGetCmd()
358 MacCommand_t* curElement; in LoRaMacCommandsGetCmd()
382 MacCommand_t* curElement; in LoRaMacCommandsRemoveNoneStickyCmds()
383 MacCommand_t* nexElement; in LoRaMacCommandsRemoveNoneStickyCmds()
408 MacCommand_t* curElement; in LoRaMacCommandsRemoveStickyAnsCmds()
409 MacCommand_t* nexElement; in LoRaMacCommandsRemoveStickyAnsCmds()
440 MacCommand_t* curElement = CommandsCtx.MacCommandList.First; in LoRaMacCommandsSerializeCmds()
441 MacCommand_t* nextElement; in LoRaMacCommandsSerializeCmds()
487 MacCommand_t* curElement; in LoRaMacCommandsStickyCmdsPending()