Home
last modified time | relevance | path

Searched refs:stEventGroup (Results 1 – 2 of 2) sorted by relevance

/utopia/UTPA2-700.0.x/modules/msos/msos/ecos/
H A DMsOS_ecos.c286 cyg_flag_t stEventGroup; member
1781 cyg_flag_init(&_MsOS_EventGroup_Info[s32Id].stEventGroup); in MsOS_CreateEventGroup()
1805 if ( cyg_flag_waiting(&_MsOS_EventGroup_Info[s32EventGroupId].stEventGroup) ) in MsOS_DeleteEventGroup()
1811 cyg_flag_destroy(&_MsOS_EventGroup_Info[s32EventGroupId].stEventGroup); in MsOS_DeleteEventGroup()
1837 cyg_flag_setbits(&_MsOS_EventGroup_Info[s32EventGroupId].stEventGroup, u32EventFlag); in MsOS_SetEvent()
1859 cyg_flag_maskbits(&_MsOS_EventGroup_Info[s32EventGroupId].stEventGroup, ~u32EventFlag); in MsOS_ClearEvent()
1917 … *pu32RetrievedEventFlag = cyg_flag_wait( &_MsOS_EventGroup_Info[s32EventGroupId].stEventGroup, in MsOS_WaitEvent()
1923 … *pu32RetrievedEventFlag = cyg_flag_poll( &_MsOS_EventGroup_Info[s32EventGroupId].stEventGroup, in MsOS_WaitEvent()
1929 …pu32RetrievedEventFlag = cyg_flag_timed_wait( &_MsOS_EventGroup_Info[s32EventGroupId].stEventGroup, in MsOS_WaitEvent()
1937 …cyg_flag_maskbits(&_MsOS_EventGroup_Info[s32EventGroupId].stEventGroup, ~((*pu32RetrievedEventFlag… in MsOS_WaitEvent()
/utopia/UTPA2-700.0.x/modules/msos/msos/ucos/
H A DMsOS_ucos.c278 OS_FLAG_GRP* stEventGroup; member
1837 _MsOS_EventGroup_Info[s32Id].stEventGroup = OSFlagCreate(0, &u8Err); in MsOS_CreateEventGroup()
1893 OSFlagDel(_MsOS_EventGroup_Info[s32EventGroupId].stEventGroup, OS_DEL_NO_PEND, &u8Err); in MsOS_DeleteEventGroup()
1949 …OSFlagPost(_MsOS_EventGroup_Info[s32EventGroupId].stEventGroup, u32EventFlag, OS_FLAG_SET, &u8Err); in MsOS_SetEvent()
1995 …OSFlagPost(_MsOS_EventGroup_Info[s32EventGroupId].stEventGroup, u32EventFlag, OS_FLAG_CLR, &u8Err); in MsOS_ClearEvent()
2121 *pu32RetrievedEventFlag = OSFlagPend(_MsOS_EventGroup_Info[s32EventGroupId].stEventGroup, in MsOS_WaitEvent()
2126 *pu32RetrievedEventFlag = OSFlagAccept(_MsOS_EventGroup_Info[s32EventGroupId].stEventGroup, in MsOS_WaitEvent()
2131 *pu32RetrievedEventFlag = OSFlagPend(_MsOS_EventGroup_Info[s32EventGroupId].stEventGroup, in MsOS_WaitEvent()
2142 …OSFlagPost(_MsOS_EventGroup_Info[s32EventGroupId].stEventGroup, u32WaitEventFlag, OS_FLAG_CLR, &u8… in MsOS_WaitEvent()