Home
last modified time | relevance | path

Searched refs:oss (Results 1 – 11 of 11) sorted by relevance

/frameworks/av/media/utils/
DMemoryLeakTrackUtil.cpp66 std::ostringstream oss; in dumpMemoryAddresses() local
67 oss << leak_info.total_memory << " bytes in " << count << " allocations\n"; in dumpMemoryAddresses()
68 oss << " ABI: '" ABI_STRING "'" << "\n\n"; in dumpMemoryAddresses()
83 oss << (e->size * e->allocations) in dumpMemoryAddresses()
85 oss << backtrace_string(e->backtrace, leak_info.backtrace_size) << "\n"; in dumpMemoryAddresses()
87 oss << "\n"; in dumpMemoryAddresses()
89 return oss.str(); in dumpMemoryAddresses()
/frameworks/av/media/libmedia/include/media/
Dconvert.h153 std::stringstream oss;
154 oss.precision(gFloatPrecision);
155 oss << value;
156 str = oss.str();
157 return !oss.fail() && !oss.bad();
/frameworks/av/include/media/
Dconvert.h153 std::stringstream oss;
154 oss.precision(gFloatPrecision);
155 oss << value;
156 str = oss.str();
157 return !oss.fail() && !oss.bad();
/frameworks/ml/nn/runtime/test/fuzzing/
DRandomGraphGeneratorUtils.cpp41 std::ostringstream oss; in getElapsedTime() local
42 oss << std::setfill('0') << std::setw(2) << hour << ":" << std::setw(2) << minutes << ":" in getElapsedTime()
44 return oss.str(); in getElapsedTime()
/frameworks/native/cmds/dumpsys/
Ddumpsys.cpp444 std::stringstream oss; in writeDumpFooter() local
445 oss << std::put_time(&finish_tm, "%Y-%m-%d %H:%M:%S"); in writeDumpFooter()
448 elapsedDuration.count(), String8(serviceName).string(), oss.str().c_str()); in writeDumpFooter()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/conformance/third_party/jsoncpp/
Djson.h2039 std::ostringstream oss; oss << message; \
2040 Json::throwLogicError(oss.str()); \
2052 std::ostringstream oss; oss << message; \
2053 assert(false && oss.str().c_str()); \
Djsoncpp.cpp4187 std::ostringstream oss; in valueToQuotedString() local
4188 oss << "\\u" << std::hex << std::uppercase << std::setfill('0') in valueToQuotedString()
4190 result += oss.str(); in valueToQuotedString()
4265 std::ostringstream oss; in valueToQuotedStringN() local
4266 oss << "\\u" << std::hex << std::uppercase << std::setfill('0') in valueToQuotedStringN()
4268 result += oss.str(); in valueToQuotedStringN()
/frameworks/native/opengl/include/GLES3/
DNOTICE2 2.0. For details, see http://oss.sgi.com/projects/FreeB/ .
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/util/internal/
Dprotostream_objectsource_test.cc115 ostringstream oss; in ExecuteTest() local
116 msg.SerializePartialToOstream(&oss); in ExecuteTest()
117 string proto = oss.str(); in ExecuteTest()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/protoc-artifacts/
DREADME.md87 https://oss.sonatype.org/#stagingRepositories and find the repository, usually
102 https://oss.sonatype.org/#stagingRepositories, verify that the staging
/frameworks/base/core/jni/
Dcom_android_internal_os_Zygote.cpp312 std::ostringstream oss; in RuntimeAbort() local
313 oss << __FILE__ << ":" << line << ": " << msg; in RuntimeAbort()
314 env->FatalError(oss.str().c_str()); in RuntimeAbort()