/tools/tradefederation/core/src/com/android/tradefed/testtype/ |
D | IShardableTest.java | 42 public default Collection<IRemoteTest> split() { in split() method 54 public default Collection<IRemoteTest> split(int shardCountHint) { in split() method 55 return split(); in split() 68 public default Collection<IRemoteTest> split(Integer shardCountHint, TestInformation testInfo) { in split() method 70 return split(); in split() 72 return split(shardCountHint); in split()
|
/tools/test/connectivity/acts/tests/google/wifi/ |
D | WifiSoftApAcsTest.py | 78 chan = self.test_name.split('_')[-1] 264 avoid_chan = int(sys._getframe().f_code.co_name.split('_')[-1]) 273 avoid_chan = int(sys._getframe().f_code.co_name.split('_')[-1]) 282 avoid_chan = int(sys._getframe().f_code.co_name.split('_')[-1]) 291 avoid_chan = int(sys._getframe().f_code.co_name.split('_')[-1]) 300 avoid_chan = int(sys._getframe().f_code.co_name.split('_')[-1]) 309 avoid_chan = int(sys._getframe().f_code.co_name.split('_')[-1]) 318 avoid_chan = int(sys._getframe().f_code.co_name.split('_')[-1]) 327 avoid_chan = int(sys._getframe().f_code.co_name.split('_')[-1]) 336 avoid_chan = int(sys._getframe().f_code.co_name.split('_')[-1]) [all …]
|
/tools/test/connectivity/acts/framework/acts/controllers/spirent_lib/ |
D | gss6450.py | 81 filename = resp_raw.split(':')[-1].strip(' ') 94 description = resp_raw.split('-d')[-1].strip(' ') 111 location = resp_raw.split('-i')[-1].strip(' ') 129 mode = resp_raw.split('-m')[-1].strip(' ') 142 batterylevel = float(resp_raw.split('-l')[-1].strip(' ')) 155 voltageout = resp_raw.split('-v')[-1].strip(' ') 171 resp_num = resp_raw.split('-M')[-1].strip(' ') 194 resp_str = resp_raw.split('-a')[-1].strip(' ') 196 attenuation = [float(itm) for itm in resp_str.split(',')] 208 resp_str = resp_raw.split('-e')[-1].strip(' ') [all …]
|
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/suite/ |
D | ModuleMergerTest.java | 71 Collection<IRemoteTest> res1 = suite1.split(2, mTestInfo); in testPartOfSameSuite_notSplittedYet2() 83 Collection<IRemoteTest> res1 = suite1.split(2, mTestInfo); in testPartOfSameSuite_sameSuite() 96 Collection<IRemoteTest> res1 = suite1.split(2, mTestInfo); in testPartOfSameSuite_notSameSuite() 98 Collection<IRemoteTest> res2 = suite2.split(2, mTestInfo); in testPartOfSameSuite_notSameSuite() 127 Collection<IRemoteTest> res1 = suite1.split(2, mTestInfo); in testMergeSplittedITestSuite_notSplittedYet2() 144 Collection<IRemoteTest> res1 = suite1.split(2, mTestInfo); in testMergeSplittedITestSuite_splittedSuiteFromDifferentModules() 146 Collection<IRemoteTest> res2 = suite2.split(2, mTestInfo); in testMergeSplittedITestSuite_splittedSuiteFromDifferentModules() 163 Collection<IRemoteTest> res1 = suite1.split(2, mTestInfo); in testMergeSplittedITestSuite()
|
/tools/test/connectivity/acts/framework/acts/controllers/ap_lib/ |
D | ap_get_interface.py | 48 interfaces_all = output.stdout.split('\n') 59 interfaces_virtual = output.stdout.split('\n') 86 lines = output.stdout.split('\n') 88 interfaces_bridge.append(line.split('\t')[0]) 143 interfaces_all = output.stdout.split('\n')
|
/tools/tradefederation/contrib/src/com/android/performance/tests/ |
D | HermeticMemoryTest.java | 125 (mComponentName.split("/").length == 2)); in run() 185 String pkgActivitySplit[] = mComponentName.split("/"); in getProcessId() 213 String line[] = dumpInfo.split(LINE_SEPARATOR); in parseDumpsysInfo() 215 String dataSplit[] = line[lineCount].trim().split(SEPARATOR); in parseDumpsysInfo() 237 String lineSplit[] = memInfo.split(LINE_SEPARATOR); in parseProcInfo() 243 String dataSplit[] = line.split(SEPARATOR); in parseProcInfo() 274 memAvailable = m.group(0).split(SEPARATOR); in calculateFreeMem() 279 String processes[] = cachedProcesses.split("\\n{2}")[0].split(LINE_SEPARATOR); in calculateFreeMem() 296 processInfo = m1.group(0).split(LINE_SEPARATOR); in calculateFreeMem() 299 String procDetails[] = processInfo[0].trim().split(SEPARATOR); in calculateFreeMem()
|
/tools/test/connectivity/acts/framework/acts/controllers/buds_lib/dev_utils/ |
D | apollo_log_decoder.py | 29 msg = [element.split(':') for element in str(proto).split('\n') if element] 64 _, encoding, message = logline.split("|", 2)
|
/tools/tradefederation/core/src/com/android/tradefed/device/cloud/ |
D | AcloudConfigParser.java | 69 String[] lines = content.split("\n"); in parseConfig() 72 String key = line.split(": ")[0]; in parseConfig() 73 String value = line.split(": ")[1].replace("\"", ""); in parseConfig()
|
/tools/test/graphicsbenchmark/functional_tests/hostside/src/com/android/game/qualification/test/ |
D | DeviceConfigurationTest.java | 41 int tickRate = Integer.parseInt(output.split("\n")[0].split("=")[1]); in testConfigHzHighEnough()
|
/tools/test/connectivity/acts/framework/acts/test_utils/gnss/ |
D | gnss_test_utils.py | 652 first_fixed = int(logcat_results[-1]["log_message"].split()[-1]) 743 dir = ad.adb.shell("ls %s" % GNSSSTATUS_LOG_PATH).split() 748 file_size = int(out.split(" ")[0]) 756 lines = ad.adb.shell("cat %s" % test_logfile).split("\n") 759 history_top4_cn = float(line.split(":")[-1].strip()) 761 history_cn = float(line.split(":")[-1].strip()) 763 l5flag = line.split(":")[-1].strip() 765 track_lat = float(line.split(":")[-1].strip()) 767 track_long = float(line.split(":")[-1].strip()) 769 track_utc = line.split("Time:")[-1].strip() [all …]
|
/tools/tradefederation/core/src/com/android/tradefed/util/ |
D | PsParser.java | 44 String processLines[] = psOutput.split(LINE_SEPARATOR); in getProcesses() 64 String processInfoStr[] = processLines[lineCount].split(PROCESS_INFO_SEPARATOR); in getProcesses()
|
/tools/tradefederation/core/test_framework/com/android/tradefed/device/metric/ |
D | AtraceRunMetricCollector.java | 136 String scriptArgs[] = scriptPath.split(" "); in processTraceFiles() 137 String scriptPathArgs[] = scriptArgs[0].split("/"); in processTraceFiles() 138 String scriptName[] = scriptPathArgs[scriptPathArgs.length - 1].split("\\."); in processTraceFiles() 157 String[] outputLines = output.split(LINE_SEPARATOR); in aggregateMetrics() 165 String[] metric = line.split(METRIC_SEPARATOR); in aggregateMetrics()
|
/tools/test/connectivity/acts/framework/acts/test_utils/net/ |
D | net_test_utils.py | 138 ip_xfrm_state = format(match_obj.group(0)).split() 226 vpn_profile[VPN_CONST.IPSEC_USER_CERT] = cert_name.split('.')[0] 227 vpn_profile[VPN_CONST.IPSEC_CA_CERT] = cert_name.split('.')[0] 327 tcpdump_pid = utils.exe_cmd(ps_cmd).decode("utf-8", "ignore").split() 356 if tcpdump_pid in res.split(): 367 "%s/%s.pcap" % (ad.device_log_path, fname.split('/')[-1])): 374 pcap_file = "%s/%s.pcap" % (ad.device_log_path, fname.split('/')[-1])
|
/tools/tradefederation/core/atest/test_finders/ |
D | test_finder_utils.py | 156 parts = user_input.split('#') 160 return parts[0], frozenset(parts[1].split(',')) 186 cls = os.path.splitext(os.path.split(test_path)[1])[0] 323 for idx in re.sub(r'(\s)', '', test_indices).split(','): 324 indices = idx.split('-') 559 apk = apk_target.split(_XML_PUSH_DELIM, 1)[0].strip() 657 sanitized_target = target.split(_XML_PUSH_DELIM, 1)[0].strip() 705 target = value.split(_XML_PUSH_DELIM, 1)[0].strip() 783 push_target = value.split(_XML_PUSH_DELIM, 1)[0].strip() 801 head, _ = os.path.split(value) [all …]
|
/tools/asuite/atest/test_finders/ |
D | test_finder_utils.py | 163 parts = user_input.split('#') 167 return parts[0], frozenset(parts[1].split(',')) 193 cls = os.path.splitext(os.path.split(test_path)[1])[0] 329 for idx in re.sub(r'(\s)', '', test_indices).split(','): 330 indices = idx.split('-') 570 apk = apk_target.split(_XML_PUSH_DELIM, 1)[0].strip() 668 sanitized_target = target.split(_XML_PUSH_DELIM, 1)[0].strip() 716 target = value.split(_XML_PUSH_DELIM, 1)[0].strip() 794 push_target = value.split(_XML_PUSH_DELIM, 1)[0].strip() 814 head, _ = os.path.split(value) [all …]
|
/tools/test/connectivity/acts/framework/acts/ |
D | logger.py | 105 date, time = t.split(' ') 106 year, month, day = date.split('-') 107 h, m, s = time.split(':') 108 s, ms = s.split('.')
|
D | config_parser.py | 146 tokens = item.split(':') 157 clean_names = [elem.strip() for elem in test_case_names.split(',')] 224 value] = os.environ[_ENV_ACTS_TESTPATHS].split(_PATH_SEPARATOR) 231 config_path, _ = os.path.split(utils.abs_path(test_config_path))
|
/tools/test/connectivity/acts/framework/acts/controllers/buds_lib/ |
D | logserial.py | 111 properties = filter(None, property_list.split('\n')) 113 p = prop.split('=') 125 prop_array = adprop.split(' ') 127 p = prop.split('=') 130 interface = int(result['LOCATION'].split('.')[1]) 151 m.group().strip().split('\\')[2])
|
/tools/acloud/create/ |
D | create_common.py | 53 for item in dict_str.split(item_separator): 57 key, value = item.split(key_value_separator)
|
/tools/test/connectivity/acts/framework/acts/controllers/ |
D | arduino_wifi_dongle.py | 165 serial_ports = utils.exe_cmd(cmd).decode('utf-8', 'ignore').split('\n') 220 tmp_file = '%s%s' % (TMP_DIR, file_path.split('/')[-1]) 297 val = data.split(':')[-1].lstrip().rstrip() 372 d[SSID] = self.scan_results[i].split(':')[-1].rstrip() 374 d[RSSI] = self.scan_results[i].split(':')[-1].rstrip()
|
/tools/tradefederation/core/src/com/android/tradefed/testtype/suite/ |
D | SuiteTestFilter.java | 48 String[] parts = filter.split(" "); in createFrom() 65 parts = filter.split(" ", index + 1); in createFrom()
|
/tools/tradefederation/core/common_util/com/android/tradefed/util/ |
D | AbiUtils.java | 223 return id.split(" "); in parseId() 256 String[] descSegments = unsupportedAbiDescription.split(":"); in parseAbiList() 258 for (String abi : descSegments[1].split(",")) { in parseAbiList() 274 String[] abiList = abiListProp.split(","); in parseAbiListFromProperty()
|
/tools/tradefederation/core/src/com/android/tradefed/postprocessor/ |
D | StatsdEventMetricPostProcessor.java | 123 String keyFormatter = formatter.split("=")[0]; in getMetricsByFormatters() 124 String valueFormatter = formatter.split("=")[1]; in getMetricsByFormatters() 207 Arrays.asList(fieldReference.substring(1).split("\\.")))); in fillInPlaceholders() 211 atomContent, Arrays.asList(fieldReference.split("\\.")))); in fillInPlaceholders()
|
/tools/test/connectivity/acts/framework/tests/libs/uicd/ |
D | uicd_cli_test.py | 96 job_run.assert_called_with(expected_cmd.split(), timeout=120) 103 job_run.assert_called_with(expected_cmd.split(), timeout=120)
|
/tools/test/connectivity/acts/framework/acts/test_utils/fuchsia/ |
D | utils.py | 98 file_name = url.split('/')[-1] 102 file_directory, file_name = os.path.split(out_path)
|