Lines Matching defs:length
130 LOG_ERROR("msg length is not enough");
135 LOG_ERROR("remain data length is not enough");
165 LOG_ERROR("msg length is not enough");
204 uint32_t length;
205 ResultCode readLengthResult = ReadUint32FromMsg(msg, &readIndex, &length);
207 IF_TRUE_LOGE_AND_RETURN_VAL(length > readBuffer->len, GENERAL_ERROR);
209 Uint8Array readData = { readBuffer->data, length };
210 if (length > 0) {
244 uint32_t length;
245 ResultCode readLengthResult = ReadUint32FromMsg(msg, &readIndex, &length);
248 if (length > 0) {
251 subMsgData[subMsgIndex] = (Uint8Array){ Malloc(length), length };
465 LOG_ERROR("uint8 length %u is incorrect", uint64ArrayData.len);