Searched refs:outString_ (Results 1 – 3 of 3) sorted by relevance
38 if (outString_ != nullptr) { in ~OH_AVFormat()39 free(outString_); in ~OH_AVFormat()40 outString_ = nullptr; in ~OH_AVFormat()
178 if (format->outString_ != nullptr) { in OH_AVFormat_GetStringValue()179 free(format->outString_); in OH_AVFormat_GetStringValue()180 format->outString_ = nullptr; in OH_AVFormat_GetStringValue()190 format->outString_ = static_cast<char *>(malloc((bufLength + 1) * sizeof(char))); in OH_AVFormat_GetStringValue()191 FALSE_RETURN_V_MSG_E(format->outString_ != nullptr, false, "malloc out string nullptr!"); in OH_AVFormat_GetStringValue()193 if (strcpy_s(format->outString_, bufLength + 1, str.c_str()) != EOK) { in OH_AVFormat_GetStringValue()195 free(format->outString_); in OH_AVFormat_GetStringValue()196 format->outString_ = nullptr; in OH_AVFormat_GetStringValue()200 *out = format->outString_; in OH_AVFormat_GetStringValue()
60 char *outString_ = nullptr; member