Lines Matching refs:content
52 ParamMsgContent *content = (ParamMsgContent *)(request->data + offset);
53 content->type = type;
54 content->contentSize = length + 1;
56 int ret = memcpy_s(content->content, content->contentSize - 1, value, length);
59 content->content[length] = '\0';
60 offset += sizeof(ParamMsgContent) + PARAM_ALIGN(content->contentSize);
92 ParamMsgContent *content = (ParamMsgContent *)(msg->data + *offset);
93 *offset += sizeof(ParamMsgContent) + PARAM_ALIGN(content->contentSize);
94 return content;