Searched refs:strs (Results 1 – 13 of 13) sorted by relevance
/system/tools/hidl/build/ |
D | utils.go | 18 func wrap(prefix string, strs []string, suffix string) []string { 19 ret := make([]string, len(strs)) 20 for i, v := range strs { 35 func remove(str string, strs []string) []string { 37 for _, v := range strs {
|
/system/extras/simpleperf/runtest/ |
D | runtest.py | 50 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.append('symbol_name=%s' % self.symbol_name) [all …]
|
/system/extras/simpleperf/scripts/ |
D | report.py | 64 strs = self.dump() 65 return '\n'.join(strs) 68 strs = [] 69 strs.append('CallTreeNode percentage = %.2f' % self.percentage) 71 strs.append(' %s' % function_name) 74 strs.extend([' ' + x for x in child_strs]) 75 return strs 87 strs = [] 88 strs.append('ReportItem (raw_line %s)' % self.raw_line) 90 strs.append('%s' % self.call_tree) [all …]
|
D | app_profiler.py | 212 strs = line.split() 213 if len(strs) < 2: 215 process_name = strs[-1] 220 pid = int(strs[0] if self.android_version >= 8 else strs[1])
|
D | debug_unwind_reporter.py | 414 strs = (lines[i].strip()).split() 415 if len(strs) == 2: 416 unwinding_result[strs[0]] = strs[1]
|
D | utils.py | 317 strs = build_version.split('.') 318 if strs: 319 android_version = int(strs[0])
|
/system/connectivity/wificond/tests/ |
D | nl80211_attribute_unittest.cpp | 257 std::vector<std::string> strs; in TEST() local 260 nested_attr.GetListOfAttributeValues(&strs); in TEST() 261 EXPECT_EQ(expected_strs, strs); in TEST()
|
/system/extras/simpleperf/ |
D | cmd_report.cpp | 529 std::vector<std::string> strs = android::base::Split(args[i], ","); in ParseOptions() local 530 filter.insert(strs.begin(), strs.end()); in ParseOptions() 599 std::vector<std::string> strs = android::base::Split(args[i], ","); in ParseOptions() local 600 for (const auto& s : strs) { in ParseOptions() 619 std::vector<std::string> strs = android::base::Split(args[i], ";"); in ParseOptions() local 620 sample_tree_builder_options_.symbol_filter.insert(strs.begin(), strs.end()); in ParseOptions()
|
D | cmd_record.cpp | 554 std::vector<std::string> strs = android::base::Split(args[i], ","); in ParseOptions() local 555 if (strs[0] == "fp") { in ParseOptions() 558 } else if (strs[0] == "dwarf") { in ParseOptions() 561 if (strs.size() > 1) { in ParseOptions() 563 uint64_t size = strtoull(strs[1].c_str(), &endptr, 0); in ParseOptions() 566 << strs[1]; in ParseOptions()
|
D | tracing.cpp | 329 std::vector<std::string> strs = android::base::Split(pair.second, "\n"); in LoadTracingFormatsFromEventFiles() local 331 for (const auto& s : strs) { in LoadTracingFormatsFromEventFiles()
|
D | cmd_report_test.cpp | 169 const std::vector<std::string>& strs) { in AllItemsWithString() argument 181 for (auto& s : strs) { in AllItemsWithString()
|
D | environment.cpp | 308 std::vector<std::string> strs = android::base::Split(tid_str, ","); in GetValidThreadsFromThreadString() local 309 for (const auto& s : strs) { in GetValidThreadsFromThreadString()
|
/system/netd/server/ |
D | BandwidthController.cpp | 259 std::vector<std::string> toStrVec(int num, char* strs[]) { in toStrVec() argument 262 tmp.emplace_back(strs[i]); in toStrVec()
|