/tools/test/connectivity/acts/framework/acts/controllers/utils_lib/commands/ |
D | route.py | 101 pair = None 105 pair = (self.DEFAULT_ROUTE, 111 pair = None 122 pair = (address, d['net_interface']) 125 if not pair: 131 if pair[1] == net_interface: 132 yield pair 135 yield pair
|
/tools/tradefederation/core/src/com/android/tradefed/util/ |
D | Pair.java | 41 final Pair<?, ?> pair = (Pair<?, ?>) o; in equals() local 42 if (this == pair) { in equals() 47 if (pair.first != null) { in equals() 50 } else if (!this.first.equals(pair.first)) { in equals() 54 if (pair.second != null) { in equals() 57 } else if (!this.second.equals(pair.second)) { in equals()
|
/tools/tradefederation/core/src/com/android/tradefed/cluster/ |
D | TestContext.java | 70 final JSONObject pair = envVars.getJSONObject(i); in fromJson() local 71 obj.mEnvVars.put(pair.getString("key"), pair.getString("value")); in fromJson() 86 final JSONObject pair = new JSONObject(); in toJson() local 87 pair.put("key", entry.getKey()); in toJson() 88 pair.put("value", entry.getValue()); in toJson() 89 envVars.put(pair); in toJson()
|
D | TradefedConfigObject.java | 77 JSONObject pair = arr.getJSONObject(i); in fromJson() local 78 String key = pair.getString("key"); in fromJson() 79 JSONArray valueArr = pair.optJSONArray("values"); in fromJson()
|
/tools/test/connectivity/acts/framework/acts/controllers/ap_lib/ |
D | radvd_config.py | 247 filter(lambda pair: pair[1] is not None, 271 filter(lambda pair: pair[1] is not None, 280 filter(lambda pair: pair[1] is not None, 285 filter(lambda pair: pair[1] is not None,
|
/tools/netsim/src/util/ |
D | ini_file.cc | 66 for (const auto &pair : data) { in Write() local 67 outFile << pair.first << "=" << pair.second << std::endl; in Write()
|
/tools/tradefederation/core/javatests/com/android/tradefed/targetprep/multi/ |
D | PairingMultiTargetPreparerTest.java | 78 when(mUtil.pair(any(ITestDevice.class), any(ITestDevice.class))).thenReturn(true); in setUp() 110 verify(mUtil).pair(mPrimary, mSecondary); in testPairWithConnection() 127 verify(mUtil).pair(mPrimary, mSecondary); in testPairWithoutConnection() 137 verify(mUtil).pair(mPrimary, mSecondary); in testPairWithEmptyProfiles()
|
/tools/asuite/atest/test_finders/ |
D | test_filter_utils.py | 270 if not _contains_brackets(method, pair=False): 332 def _contains_brackets(string: str, pair: bool = True) -> bool: 342 if not pair:
|
/tools/tradefederation/core/test_framework/com/android/tradefed/targetprep/ |
D | PushFilePreparer.java | 169 String[] pair = pushspec.split("->"); in getPushSpecs() local 170 if (pair.length != 2) { in getPushSpecs() 172 String.format("Invalid pushspec: '%s'", Arrays.asList(pair)), in getPushSpecs() 177 remoteToLocalMapping.put(pair[1], new File(pair[0])); in getPushSpecs()
|
/tools/treble/cuttlefish/ |
D | build_chd_utils.py | 80 for pair in copy_files_list: 81 src, dst = _parse_copy_file_pair(pair)
|
/tools/tradefederation/core/src/com/android/tradefed/result/ |
D | JsonHttpTestResultReporter.java | 271 for (Map.Entry<String, String> pair : mAdditionalKeyValuePairs.entrySet()) { in convertMetricsToJson() 272 result.put(pair.getKey(), pair.getValue()); in convertMetricsToJson()
|
D | LUCIResultReporter.java | 237 for (Map.Entry<String, String> pair : mAdditionalKeyValuePairs.entrySet()) { in convertMetricsToJson() 238 result.put(pair.getKey(), pair.getValue()); in convertMetricsToJson()
|
/tools/tradefederation/core/src/com/android/tradefed/device/cloud/ |
D | OxygenUtil.java | 284 for (AbstractMap.SimpleEntry<String, String> pair : pairs) { in collectErrorSignatures() 285 if (line.indexOf(pair.getKey()) != -1) { in collectErrorSignatures() 286 pairsToRemove.add(pair); in collectErrorSignatures() 287 signatures.add(pair.getValue()); in collectErrorSignatures()
|
/tools/asuite/atest/bazel/runner/config/config/ |
D | format_module_name_to_test_target.cquery | 2 …"""Return a pair of 'module_name target_label' for the given tradefed test target, '' otherwise."""
|
/tools/tradefederation/contrib/src/com/android/media/tests/ |
D | Camera2StressTest.java | 163 for (String pair : pairs) { in parseLog() 164 String[] keyValue = pair.split("="); in parseLog()
|
D | Camera2FrameworkStressTest.java | 134 for (String pair : pairs) { in parseLog() 135 String[] keyValue = pair.split("="); in parseLog()
|
/tools/netsim/src/core/ |
D | server.cc | 45 std::pair<std::unique_ptr<grpc::Server>, uint32_t> RunGrpcServer( in RunGrpcServer()
|
/tools/test/connectivity/acts_tests/tests/google/fuchsia/bt/ep/ |
D | BtFuchsiaEPTest.py | 175 self.pri_dut.sl4f.bts_lib.pair(device["id"], security_level, 276 pair_result = self.pri_dut.sl4f.bts_lib.pair(unique_mac_addr_id,
|
/tools/security/fuzzing/llm/tinyxml2_fuzzer/ |
D | tinyxml_parse_fuzzer.cpp | 8 std::vector<std::pair<std::string, std::string>> attributes;
|
/tools/security/remote_provisioning/hwtrust/src/cbor/rkp/ |
D | protected_data.rs | 142 for pair in kv_pairs { in to_uds_certs() 143 match pair { in to_uds_certs()
|
/tools/dexter/slicer/ |
D | common.cc | 71 thread_local std::set<std::pair<int, const char*>> weak_failures;
|
/tools/loganalysis/src/com/android/loganalysis/util/config/ |
D | OptionSetter.java | 349 MapEntry pair = null; in setOptionMapValue() local 351 pair = ((MapHandler) handler).translate(keyText, valueText); in setOptionMapValue() 352 if (pair == null) { in setOptionMapValue() 392 map.put(pair.mKey, pair.mValue); in setOptionMapValue()
|
/tools/apksig/src/main/java/com/android/apksig/internal/apk/v4/ |
D | V4SchemeSigner.java | 121 Pair<V4Signature, byte[]> pair = generateV4Signature(apkContent, signerConfig); in generateV4Signature() local 123 pair.getFirst().writeTo(output); in generateV4Signature() 124 V4Signature.writeBytes(output, pair.getSecond()); in generateV4Signature()
|
/tools/test/connectivity/acts/framework/acts/controllers/fuchsia_lib/bt/ |
D | bts_lib.py | 170 def pair(self, identifier, pairing_security_level, non_bondable, member in FuchsiaBtsLib
|
/tools/test/connectivity/acts_tests/tests/google/fuchsia/bt/ |
D | GapSecSemTest.py | 159 pair_result = central.sl4f.bts_lib.pair(identifier, security_level, 170 pair_result = peripheral.sl4f.bts_lib.pair(did, security_level,
|