Lines Matching defs:param
33 int32_t InitSingleParam(Uint8Buff *param, uint32_t len)
35 if (param == NULL) {
39 if (param->val != NULL) {
40 (void)memset_s(param->val, param->length, 0, param->length);
41 HcFree(param->val);
43 param->length = len;
44 param->val = (uint8_t *)HcMalloc(param->length, 0);
45 if (param->val == NULL) {
46 LOGE("Malloc for param failed.");