Lines Matching refs:pparaBuf
364 WMErrCode WM_SetParentParameter(WMCallbackFunc callback, const WMParentParam *pparaBuf) in WM_SetParentParameter() argument
383 if (pparaBuf == NULL) in WM_SetParentParameter()
388 if ((u32)pparaBuf & 0x01f) in WM_SetParentParameter()
393 if (pparaBuf->userGameInfoLength > 0) in WM_SetParentParameter()
395 if (pparaBuf->userGameInfo == NULL) in WM_SetParentParameter()
400 if ((u32)(pparaBuf->userGameInfo) & 0x01f) in WM_SetParentParameter()
408 if ((pparaBuf->parentMaxSize + in WM_SetParentParameter()
409 (pparaBuf->KS_Flag ? WM_SIZE_KS_PARENT_DATA + WM_SIZE_MP_PARENT_PADDING : 0) > in WM_SetParentParameter()
411 || (pparaBuf->childMaxSize + in WM_SetParentParameter()
412 (pparaBuf->KS_Flag ? WM_SIZE_KS_CHILD_DATA + WM_SIZE_MP_CHILD_PADDING : 0) > in WM_SetParentParameter()
418 (void)WmCheckParentParameter(pparaBuf); in WM_SetParentParameter()
424 DC_StoreRange((void *)pparaBuf, WM_PARENT_PARAM_SIZE); in WM_SetParentParameter()
425 if (pparaBuf->userGameInfoLength > 0) in WM_SetParentParameter()
427 DC_StoreRange(pparaBuf->userGameInfo, pparaBuf->userGameInfoLength); in WM_SetParentParameter()
431 result = WMi_SendCommand(WM_APIID_SET_P_PARAM, 1, (u32)pparaBuf); in WM_SetParentParameter()