Home
last modified time | relevance | path

Searched refs:sendSize (Results 1 – 4 of 4) sorted by relevance

/TwlSDK-5.2.1/build/libraries/wxc/ARM9/src/
Dwxc_api.c435 BOOL WXC_SetParentParameter(u16 sendSize, u16 recvSize, u16 maxEntry) in WXC_SetParentParameter() argument
445 else if ((sendSize < WXC_PACKET_SIZE_MIN) || (sendSize > WXC_PACKET_SIZE_MAX) || in WXC_SetParentParameter()
454 int usec = 330 + 4 * (sendSize + 38) + maxEntry * (112 + 4 * (recvSize + 32)); in WXC_SetParentParameter()
463 work->parent_param.parentMaxSize = sendSize; in WXC_SetParentParameter()
/TwlSDK-5.2.1/include/nitro/
Dwxc.h228 BOOL WXC_SetParentParameter(u16 sendSize, u16 recvSize, u16 maxEntry);
/TwlSDK-5.2.1/include/nitro/mb/
Dmb.h334 BOOL MB_SetParentCommSize(u16 sendSize);
350 BOOL MB_SetParentCommParam(u16 sendSize, u16 maxChildren);
/TwlSDK-5.2.1/build/libraries/mb/common/src/
Dmb_wm_base.c1135 static BOOL MBi_IsCommSizeValid(u16 sendSize, u16 recvSize, u16 entry_num) in MBi_IsCommSizeValid() argument
1142 if (sendSize > MB_COMM_P_SENDLEN_MAX || sendSize < MB_COMM_P_SENDLEN_MIN) in MBi_IsCommSizeValid()
1159 usec = 330 + 4 * (sendSize + 38) + entry_num * (112 + 4 * (recvSize + 32)); in MBi_IsCommSizeValid()
1173 BOOL MB_SetParentCommParam(u16 sendSize, u16 maxChildren) in MB_SetParentCommParam() argument
1187 if (FALSE == MBi_IsCommSizeValid(sendSize, MB_COMM_P_RECVLEN_DEFAULT, maxChildren)) in MB_SetParentCommParam()
1199 p_mbi_param->p_sendlen = sendSize; in MB_SetParentCommParam()
1208 BOOL MB_SetParentCommSize(u16 sendSize) in MB_SetParentCommSize() argument
1214 ret = MB_SetParentCommParam(sendSize, p_mbi_param->parentParam.maxEntry); in MB_SetParentCommSize()