Home
last modified time | relevance | path

Searched refs:ss (Results 1 – 22 of 22) sorted by relevance

/art/runtime/
Dthread_linux.cc44 stack_t ss; in SetUpAlternateSignalStack() local
45 ss.ss_sp = new uint8_t[kHostAltSigStackSize]; in SetUpAlternateSignalStack()
46 ss.ss_size = kHostAltSigStackSize; in SetUpAlternateSignalStack()
47 ss.ss_flags = 0; in SetUpAlternateSignalStack()
48 CHECK(ss.ss_sp != nullptr); in SetUpAlternateSignalStack()
49 SigAltStack(&ss, nullptr); in SetUpAlternateSignalStack()
52 ss.ss_sp = nullptr; in SetUpAlternateSignalStack()
53 SigAltStack(nullptr, &ss); in SetUpAlternateSignalStack()
54 VLOG(threads) << "Alternate signal stack is " << PrettySize(ss.ss_size) << " at " << ss.ss_sp; in SetUpAlternateSignalStack()
59 stack_t ss; in TearDownAlternateSignalStack() local
[all …]
Dthread_list.cc296 std::ostringstream ss; in UnsafeLogFatalForThreadSuspendAllTimeout() local
297 ss << "Thread suspend timeout\n"; in UnsafeLogFatalForThreadSuspendAllTimeout()
298 Locks::mutator_lock_->Dump(ss); in UnsafeLogFatalForThreadSuspendAllTimeout()
299 ss << "\n"; in UnsafeLogFatalForThreadSuspendAllTimeout()
300 runtime->GetThreadList()->Dump(ss); in UnsafeLogFatalForThreadSuspendAllTimeout()
302 LOG(FATAL) << ss.str(); in UnsafeLogFatalForThreadSuspendAllTimeout()
471 std::ostringstream ss; in RunEmptyCheckpoint() local
472 ss << "Empty checkpoint timeout\n"; in RunEmptyCheckpoint()
473 ss << "Barrier count " << barrier->GetCount(self) << "\n"; in RunEmptyCheckpoint()
474 ss << "Runnable thread IDs"; in RunEmptyCheckpoint()
[all …]
Dsubtype_check_test.cc182 std::stringstream ss; in ToDotGraph() local
183 ss << std::endl; in ToDotGraph()
184 ss << "digraph MockClass {" << std::endl; in ToDotGraph()
185 ss << " node [fontname=\"Arial\"];" << std::endl; in ToDotGraph()
186 ToDotGraphImpl(ss); in ToDotGraph()
187 ss << "}" << std::endl; in ToDotGraph()
188 return ss.str(); in ToDotGraph()
Dsubtype_check_info_test.cc34 std::stringstream ss; in Stringify() local
35 ss << bit_string; in Stringify()
36 return ss.str(); in Stringify()
Dhidden_api_test.cc555 std::stringstream ss; in CheckAllDexFilesInDomain() local
556 ss << dex_file->GetLocation() << ": access context domain does not match " in CheckAllDexFilesInDomain()
559 *error_msg = ss.str(); in CheckAllDexFilesInDomain()
563 std::stringstream ss; in CheckAllDexFilesInDomain() local
564 ss << dex_file->GetLocation() << ": dex file domain does not match " in CheckAllDexFilesInDomain()
567 *error_msg = ss.str(); in CheckAllDexFilesInDomain()
Dmonitor.cc656 std::ostringstream ss; in ThrowIllegalMonitorStateExceptionF() local
657 self->Dump(ss); in ThrowIllegalMonitorStateExceptionF()
659 << self->GetException()->Dump() << "\n" << ss.str(); in ThrowIllegalMonitorStateExceptionF()
Dthread.cc1405 std::ostringstream ss; in UnsafeLogFatalForSuspendCount() local
1406 Runtime::Current()->GetThreadList()->Dump(ss); in UnsafeLogFatalForSuspendCount()
1407 LOG(FATAL) << ss.str(); in UnsafeLogFatalForSuspendCount()
3308 std::ostringstream ss; in DumpFromGdb() local
3309 Dump(ss); in DumpFromGdb()
3310 std::string str(ss.str()); in DumpFromGdb()
/art/tools/veridex/
Dhidden_api.cc74 std::stringstream ss; in GetApiMethodName() local
76 ss << dex_file.StringByTypeIdx(method_id.class_idx_) in GetApiMethodName()
80 return ss.str(); in GetApiMethodName()
84 std::stringstream ss; in GetApiFieldName() local
86 ss << dex_file.StringByTypeIdx(field_id.class_idx_) in GetApiFieldName()
91 return ss.str(); in GetApiFieldName()
/art/runtime/mirror/
Dmethod_type.cc156 std::ostringstream ss; in PrettyDescriptor() local
157 ss << "("; in PrettyDescriptor()
162 ss << p_types->GetWithoutChecks(i)->PrettyDescriptor(); in PrettyDescriptor()
164 ss << ", "; in PrettyDescriptor()
168 ss << ")"; in PrettyDescriptor()
169 ss << GetRType()->PrettyDescriptor(); in PrettyDescriptor()
171 return ss.str(); in PrettyDescriptor()
/art/openjdkjvmti/
Dti_dump.cc83 std::stringstream ss; in DumpInternalState() local
85 DeoptManager::Get()->DumpDeoptInfo(self, ss); in DumpInternalState()
88 JvmtiUniquePtr<char[]> res = CopyString(jvmti, ss.str().c_str(), &err); in DumpInternalState()
/art/test/034-call-null/src/
DMain.java20 private void doStuff(int i, int[][] is, String s, String[][] ss) { in doStuff() argument
/art/test/005-annotations/src/android/test/anno/
DAnnoArrayField.java13 short[] ss() default {}; in ss() method
DTestAnnotations.java110 ss = {12,13,14,15,16,17},
/art/libartbase/base/
Dbit_string_test.cc34 std::stringstream ss; in Stringify() local
35 ss << bit_string; in Stringify()
36 return ss.str(); in Stringify()
/art/tools/jvmti-agents/simple-force-redefine/
Dforceredefine.cc59 std::stringstream ss; in classNameToDescriptor() local
60 ss << "L"; in classNameToDescriptor()
62 ss << (*p == '.' ? '/' : *p); in classNameToDescriptor()
64 ss << ";"; in classNameToDescriptor()
65 return ss.str(); in classNameToDescriptor()
/art/test/005-annotations/
Dexpected.txt2 …oArrayField(bb=[], cc=[a, b], dd=[0.987654321], ff=[3.1415927], ii=[], jj=[], ss=[], str=[], zz=[])
3 …], dd=[0.3, 0.6, 0.9], ff=[1.1, 1.2, 1.3], ii=[1, 2, 3, 4], jj=[-5, 0, 5], ss=[12, 13, 14, 15, 16,…
/art/tools/hiddenapi/
Dhiddenapi.cc178 std::stringstream ss; in GetApiEntry() local
179 ss << klass_.GetDescriptor() << "->" << GetName() << (IsMethod() ? "" : ":") in GetApiEntry()
181 return ss.str(); in GetApiEntry()
/art/tools/ahat/
DREADME.txt131 0.1ss Aug 04, 2015
/art/runtime/verifier/
Dverifier_deps.cc752 std::stringstream ss; in ToHex() local
753 ss << std::hex << value << std::dec; in ToHex()
754 return ss.str(); in ToHex()
/art/dexdump/
Ddexdump.cc1246 std::stringstream ss; in GetHiddenapiFlagStr() local
1248 api_list.Dump(ss); in GetHiddenapiFlagStr()
1249 std::string str_api_list = ss.str(); in GetHiddenapiFlagStr()
/art/dexlayout/
Ddexlayout.cc228 std::stringstream ss; in GetHiddenapiFlagStr() local
229 hiddenapi::ApiList(hiddenapi_flags).Dump(ss); in GetHiddenapiFlagStr()
230 std::string api_list = ss.str(); in GetHiddenapiFlagStr()
/art/test/710-varhandle-creation/src/
DMain.java53 static short ss; field in Main