Searched refs:retSize (Results 1 – 4 of 4) sorted by relevance
| /developtools/hdc/hdc_rust/src/cffi/ |
| D | base.cpp | 21 …const int retSize = vsnprintf_s(args.data(), GetMaxBufSize(), GetMaxBufSize() - 1, formater, vaArg… in StringFormat() local 22 if (retSize < 0) { in StringFormat() 25 return std::string(args.data(), retSize); in StringFormat()
|
| D | usb_util.cpp | 64 …const int retSize = vsnprintf_s(args.data(), MAX_SIZE_IOBUF, MAX_SIZE_IOBUF - 1, formater, vaArgs); in StringFormat() local 65 if (retSize < 0) { in StringFormat() 68 return std::string(args.data(), retSize); in StringFormat()
|
| D | log.cpp | 26 const int retSize = vsnprintf_s(buf, sizeof(buf), sizeof(buf) - 1, msg, vaArgs); in PrintLogEx() local 28 if (retSize < 0) { in PrintLogEx()
|
| /developtools/hdc/src/common/ |
| D | base.cpp | 205 const int retSize = vsnprintf_s(buf, sizeof(buf), sizeof(buf) - 1, msg, vaArgs); in PrintLogEx() local 207 if (retSize < 0) { in PrintLogEx() 1358 … const int retSize = vsnprintf_s(args.data(), GetMaxBufSize(), args.size() - 1, formater, vaArgs); in StringFormat() local 1359 if (retSize < 0) { in StringFormat() 1362 return std::string(args.data(), retSize); in StringFormat()
|