Lines Matching refs:oss
296 std::ostringstream oss;
299 oss << prefix;
301 oss << "." << std::setfill('0') << std::setw(4) << tm_struct.wYear;
302 oss << std::setfill('0') << std::setw(2) << tm_struct.wMonth;
303 oss << std::setfill('0') << std::setw(2) << tm_struct.wDay;
304 oss << "." << std::setfill('0') << std::setw(2) << tm_struct.wHour;
305 oss << std::setfill('0') << std::setw(2) << tm_struct.wMinute;
306 oss << std::setfill('0') << std::setw(2) << tm_struct.wSecond;
308 oss << "."
312 oss << std::setfill('0')
315 oss << std::setfill('0')
318 oss << "."
322 oss << std::setfill('0')
325 oss << std::setfill('0')
329 oss << "." << uv_os_getpid();
330 oss << "." << thread_id;
331 oss << "." << std::setfill('0') << std::setw(3) << ++seq;
332 oss << "." << ext;
333 return oss.str();