Home
last modified time | relevance | path

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

/tools/dexter/slicer/
Dcommon.cc42 std::stringstream ss; in _checkFailed() local
43 ss << std::endl << "SLICER_CHECK failed ["; in _checkFailed()
44 ss << expr << "] at " << file << ":" << line; in _checkFailed()
45 ss << std::endl << std::endl; in _checkFailed()
46 log(ss.str()); in _checkFailed()
52 std::stringstream ss; in _checkFailedOp() local
53 ss << std::endl << "SLICER_CHECK_" << suffix << " failed ["; in _checkFailedOp()
54 ss << lhs << " " << op << " " << rhs; in _checkFailedOp()
55 ss << "] at " << file << ":" << line; in _checkFailedOp()
56 log(ss.str()); in _checkFailedOp()
[all …]
Ddex_format.cc66 std::stringstream ss; in DescriptorToDecl() local
77 ss << (*descriptor == '/' ? '.' : *descriptor); in DescriptorToDecl()
80 ss << PrimitiveTypeName(*descriptor); in DescriptorToDecl()
87 ss << "[]"; in DescriptorToDecl()
90 return ss.str(); in DescriptorToDecl()
Ddex_bytecode.cc308 std::stringstream ss; in DecodeInstruction() local
309 ss << "Can't decode unexpected format " << format << " for " << opcode; in DecodeInstruction()
310 SLICER_FATAL(ss.str()); in DecodeInstruction()
314 std::stringstream ss; in HexByte() local
315 ss << "0x" << std::setw(2) << std::setfill('0') << std::hex << value; in HexByte()
316 return ss.str(); in HexByte()
Ddex_ir.cc99 std::stringstream ss; in Signature() local
100 ss << "("; in Signature()
103 ss << type->descriptor->c_str(); in Signature()
106 ss << ")"; in Signature()
107 ss << return_type->descriptor->c_str(); in Signature()
108 return ss.str(); in Signature()
Ddex_ir_builder.cc136 std::stringstream ss; in CreateShorty() local
137 ss << dex::DescriptorToShorty(return_type->descriptor->c_str()); in CreateShorty()
140 ss << dex::DescriptorToShorty(param_type->descriptor->c_str()); in CreateShorty()
143 return ss.str(); in CreateShorty()
Ddebuginfo_encoder.cc118 std::stringstream ss; in Visit() local
119 ss << "Unexpected debug info opcode: " << dbg_annotation->dbg_opcode; in Visit()
120 SLICER_FATAL(ss.str()); in Visit()
Dcode_ir.cc604 std::stringstream ss; in DecodeBytecode() local
605 ss << "Unexpected opcode: " << dex_instr.opcode; in DecodeBytecode()
606 SLICER_FATAL(ss.str()); in DecodeBytecode()
617 std::stringstream ss; in DecodeBytecode() local
618 ss << "Unexpected bytecode format " << format << " for opcode " << dex_instr.opcode; in DecodeBytecode()
619 SLICER_FATAL(ss.str()); in DecodeBytecode()
649 std::stringstream ss; in GetIndexedOperand()
650 ss << "Unexpected index type 0x"; in GetIndexedOperand()
651 ss << std::hex << std::setfill('0') << std::setw(2) << index_type; in GetIndexedOperand()
652 SLICER_FATAL(ss.str()); in GetIndexedOperand()
Dbytecode_encoder.cc468 std::stringstream ss; in Visit() local
469 ss << "Unexpected fmt21h opcode: " << opcode; in Visit()
470 SLICER_FATAL(ss.str()); in Visit()
476 std::stringstream ss; in Visit() local
477 ss << "Unexpected format: " << format; in Visit()
478 SLICER_FATAL(ss.str()); in Visit()
Dinstrumentation.cc465 std::stringstream ss; in Apply() local
466 ss <<"Unexpected bytecode opcode: " << bytecode->opcode; in Apply()
467 SLICER_FATAL(ss.str()); in Apply()
/tools/dexter/slicer/tests/src/
Dslicer_test.cpp39 std::stringstream ss; in TEST() local
40 ss << dex::Opcode::OP_IF_GTZ; in TEST()
41 ASSERT_EQ("[0x3c] if-gtz", ss.str()); in TEST()
45 std::stringstream ss; in TEST() local
46 ss << dex::InstructionFormat::k20bc; in TEST()
47 ASSERT_EQ("20bc", ss.str()); in TEST()
51 std::stringstream ss; in TEST() local
52 ss << static_cast<dex::InstructionFormat>(0xfe); in TEST()
53 ASSERT_EQ("[0xfe] Unknown", ss.str()); in TEST()
/tools/trebuchet/scripts/
Drun-user-switch-perf.sh11 adb shell atrace -o /sdcard/atrace-ss.txt -t 10 ss &
16 adb pull /sdcard/atrace-ss.txt /tmp
/tools/test/graphicsbenchmark/apps/alloc_stress_app/src/cpp/
Dalloc_stress_activity.cpp43 std::stringstream ss; in Java_com_android_game_qualification_allocstress_MainActivity_cmain() local
44 ss << "total alloc: " << (allocCount >> 20) << endl; in Java_com_android_game_qualification_allocstress_MainActivity_cmain()
45 LOG(ss.str().c_str()); in Java_com_android_game_qualification_allocstress_MainActivity_cmain()
/tools/trebuchet/trebuchet/system-server-analyzer/
DREADME.md16 `adb shell atrace -o /sdcard/atrace-ss.txt -t 10 ss`
20 `adb pull /sdcard/atrace-ss.txt`
25 Opening `/tmp/atrace-ss.txt`
27 Parsing atrace-ss.txt took 171ms
/tools/trebuchet/trebuchet/user-switch-analyzer/
DREADME.md18 `adb shell atrace -o /sdcard/atrace-ss.txt -t 15 ss`
22 `adb pull /sdcard/atrace-ss.txt`
31 Opening /tmp/atrace-ss.txt
33 Parsing atrace-ss.txt took 161ms
/tools/netsim/src/util/
Dstring_utils.cc80 std::stringstream ss; in ToHexString() local
82 ss << hex_digits[buf[i] >> 4] << hex_digits[buf[i] & 0x0f]; in ToHexString()
84 ss << " "; in ToHexString()
87 return ss.str(); in ToHexString()
/tools/netsim/scripts/
Dtime_formatter.py36 mm, ss = divmod(dt.total_seconds(), 60)
39 dt_fmt = "%02d:%02d.%-2d" % (mm, ss, dt.microseconds % 100)
/tools/dexter/dexter/
Ddisassembler.cc27 std::stringstream ss; in MethodDeclaration() local
28 ss << "("; in MethodDeclaration()
32 ss << (first ? "" : ", ") << type->Decl(); in MethodDeclaration()
36 ss << "):"; in MethodDeclaration()
37 ss << proto->return_type->Decl(); in MethodDeclaration()
38 return ss.str(); in MethodDeclaration()
Ddexter.cc37 std::stringstream ss; in ClassNameToDescriptor() local
38 ss << "L"; in ClassNameToDescriptor()
40 ss << (*p == '.' ? '/' : *p); in ClassNameToDescriptor()
42 ss << ";"; in ClassNameToDescriptor()
43 return ss.str(); in ClassNameToDescriptor()
/tools/security/fuzzing/system_fuzzers/libcrypto_utils/
Dlibcrypto_utils_fuzzer.cpp48 std::string ss = fdp.ConsumeBytesAsString(ANDROID_PUBKEY_MODULUS_SIZE); in LLVMFuzzerTestOneInput() local
49 uint8_t* rr = (uint8_t*)ss.c_str(); in LLVMFuzzerTestOneInput()
/tools/tradefederation/core/res/perfetto/
Dtrace_config.textproto75 atrace_categories: "ss"
/tools/dexter/testdata/expected/
Dmedium.compact_cfg82443 .local_ex v1, "ss", java.util.Set, "Ljava/util/Set<Ljava/lang/String;>;"
198532 .local v0, "ss", com.android.ex.editstyledtext.EditStyledText$SavedStyledTextState
198558 .local v0, "ss", com.android.ex.editstyledtext.EditStyledText$SavedStyledTextState