Searched refs:strs (Results 1 - 10 of 10) sorted by relevance

/system/extras/simpleperf/runtest/
H A Druntest.py50 strs = [indent_str + self.name]
52 strs.extend(child._dump(indent + 1))
53 return strs
71 strs = []
72 strs.append('Symbol name=%s comm=%s overhead=%f children_overhead=%f' % (
75 strs.append('\t%s' % self.call_tree)
76 return '\n'.join(strs)
89 strs = []
90 strs.append('SymbolOverheadRequirement')
92 strs
[all...]
/system/extras/simpleperf/scripts/
H A Dreport.py63 strs = self.dump()
64 return '\n'.join(strs)
67 strs = []
68 strs.append('CallTreeNode percentage = %.2f' % self.percentage)
70 strs.append(' %s' % function_name)
73 strs.extend([' ' + x for x in child_strs])
74 return strs
86 strs = []
87 strs.append('ReportItem (raw_line %s)' % self.raw_line)
89 strs
[all...]
H A Dapp_profiler.py109 strs = build_version.split('.')
110 if strs:
111 self.android_version = int(strs[0])
193 strs = line.split()
194 if len(strs) > 2 and strs[-1].find(self.config['app_package_name']) != -1:
195 return int(strs[1])
/system/connectivity/wificond/tests/
H A Dnl80211_attribute_unittest.cpp258 std::vector<std::string> strs; local
261 nested_attr.GetListOfAttributeValues(&strs);
262 EXPECT_EQ(expected_strs, strs);
/system/extras/simpleperf/
H A Dcmd_report.cpp459 std::vector<std::string> strs = android::base::Split(args[i], ","); local
460 filter.insert(strs.begin(), strs.end());
529 std::vector<std::string> strs = android::base::Split(args[i], ","); local
530 for (const auto& s : strs) {
549 std::vector<std::string> strs = android::base::Split(args[i], ";"); local
550 sample_tree_builder_options_.symbol_filter.insert(strs.begin(), strs.end());
H A Dcmd_record.cpp434 std::vector<std::string> strs = android::base::Split(args[i], ","); local
435 if (strs[0] == "fp") {
438 } else if (strs[0] == "dwarf") {
441 if (strs.size() > 1) {
443 uint64_t size = strtoull(strs[1].c_str(), &endptr, 0);
446 << strs[1];
H A Dcmd_report_test.cpp169 const std::vector<std::string>& strs) {
181 for (auto& s : strs) {
168 AllItemsWithString(std::vector<std::string>& lines, const std::vector<std::string>& strs) argument
H A Denvironment.cpp318 std::vector<std::string> strs = android::base::Split(tid_str, ","); local
319 for (const auto& s : strs) {
H A Dtracing.cpp329 std::vector<std::string> strs = android::base::Split(pair.second, "\n"); local
331 for (const auto& s : strs) {
/system/netd/server/
H A DBandwidthController.cpp198 std::vector<std::string> toStrVec(int num, char* strs[]) { argument
201 tmp.emplace_back(strs[i]);

Completed in 131 milliseconds