Lines Matching refs:ret
90 const int32_t ret = sprintf_s(buf, BUF_TID_SIZE, "%06d", tid);
91 if (ret < 0) {
92 printf("ERR: in %s, #%d, call sprintf_s failed, ret = %d", __func__, __LINE__, ret);
219 errno_t ret = memcpy_s(programName, PROGRAM_NAME_SIZE, tempName.c_str(), copySize);
220 if (ret != EOK) {
357 int32_t ret = ReadConfigInfo(realLine, len, &elementKey, &elementValue);
360 if (ret != RET_OK) {
535 int32_t ret = vsnprintf_s(space, sizeof(space), sizeof(space) - 1, format, ap);
536 if (ret >= RET_OK && (size_t)ret < sizeof(space)) {