Lines Matching defs:oss
1309 std::ostringstream oss;
1311 oss << "OutOfMemory when nonmovable live obj size: " << size << " bytes"
1314 oss << "OutOfMemory when trying to allocate " << size << " bytes" << " function name: "
1317 LOG_ECMA_MEM(ERROR) << oss.str().c_str();
1318 THROW_OOM_ERROR(thread, oss.str().c_str());
1323 std::ostringstream oss;
1324 oss << "OutOfMemory when trying to allocate " << size << " bytes" << " function name: "
1326 LOG_ECMA_MEM(ERROR) << oss.str().c_str();
1330 JSHandle<JSObject> error = factory->GetJSError(ErrorType::OOM_ERROR, oss.str().c_str(), StackCheck::NO);
1345 std::ostringstream oss;
1347 oss << "OutOfMemory when nonmovable live obj size: " << size << " bytes"
1350 oss << "OutOfMemory when trying to allocate " << size << " bytes" << " function name: " << functionName.c_str();
1352 LOG_ECMA_MEM(ERROR) << oss.str().c_str();