/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/ |
D | FatType.java | 38 final int idx = (int) (index * 1.5); in readEntry() local 39 final int b1 = data[idx] & 0xFF; in readEntry() 40 final int b2 = data[idx + 1] & 0xFF; in readEntry() 52 final int idx = (int) (index * 1.5); in writeEntry() local 55 data[idx] = (byte) (entry & 0xFF); in writeEntry() 56 data[idx + 1] = (byte) ((entry >> 8) & 0x0F); in writeEntry() 58 data[idx] |= (byte) ((entry & 0x0F) << 4); in writeEntry() 59 data[idx + 1] = (byte) ((entry >> 4) & 0xFF); in writeEntry() 71 final int idx = index << 1; in readEntry() local 72 final int b1 = data[idx] & 0xFF; in readEntry() [all …]
|
/tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/ |
D | CentralDirectory.java | 435 int idx = 0; in computeByteRepresentation() local 438 cdhs[idx] = entry.getCentralDirectoryHeader(); in computeByteRepresentation() 439 compressInfos[idx] = cdhs[idx].getCompressionInfoWithWait(); in computeByteRepresentation() 440 encodedFileNames[idx] = cdhs[idx].getEncodedFileName(); in computeByteRepresentation() 441 extraFields[idx] = new byte[cdhs[idx].getExtraField().size()]; in computeByteRepresentation() 442 cdhs[idx].getExtraField().write(ByteBuffer.wrap(extraFields[idx])); in computeByteRepresentation() 443 comments[idx] = cdhs[idx].getComment(); in computeByteRepresentation() 445 total += F_OFFSET.endOffset() + encodedFileNames[idx].length in computeByteRepresentation() 446 + extraFields[idx].length + comments[idx].length; in computeByteRepresentation() 447 idx++; in computeByteRepresentation() [all …]
|
/tools/test/connectivity/acts/framework/acts/controllers/attenuator_lib/minicircuits/ |
D | telnet.py | 87 def set_atten(self, idx, value, strict_flag=True): argument 110 if idx >= self.num_atten: 112 idx) 118 self._tnhelper.cmd('CHAN:%s:SETATT:%s' % (idx + 1, value)) 120 def get_atten(self, idx): argument 135 if idx >= self.num_atten or idx < 0: 137 idx) 142 atten_val_str = self._tnhelper.cmd('CHAN:%s:ATT?' % (idx + 1))
|
D | http.py | 89 def set_atten(self, idx, value, strict_flag=True): argument 106 if not (0 <= idx < self.num_atten): 108 idx) 116 self._ip_address, self._port, idx + 1, value), 124 def get_atten(self, idx): argument 137 if not (0 <= idx < self.num_atten): 139 idx) 142 idx + 1),
|
/tools/tradefederation/core/src/com/android/tradefed/command/ |
D | CommandFileParser.java | 144 public boolean get(int idx) { in get() argument 145 return mBitmask.get(idx); in get() 148 public boolean set(int idx) { in set() argument 149 boolean retVal = mBitmask.set(idx, true); in set() 156 public boolean unset(int idx) { in unset() argument 157 boolean retVal = mBitmask.set(idx, false); in unset() 164 public boolean remove(int idx) { in remove() argument 165 boolean retVal = mBitmask.remove(idx); in remove() 172 public void add(int idx, boolean val) { in add() argument 173 mBitmask.add(idx, val); in add() [all …]
|
/tools/tradefederation/core/common_util/com/android/tradefed/util/ |
D | ByteArrayList.java | 243 public byte get(int idx) { in get() argument 244 if (idx < 0 || idx >= size()) { in get() 247 return mStorage[idx]; in get() 256 public byte set(int idx, byte b) { in set() argument 257 if (idx < 0 || idx >= size()) { in set() 260 byte curVal = mStorage[idx]; in set() 261 mStorage[idx] = b; in set()
|
/tools/test/connectivity/acts/framework/acts/controllers/attenuator_lib/aeroflex/ |
D | telnet.py | 81 def set_atten(self, idx, value): argument 100 if idx >= self.num_atten: 102 idx) 108 self._tnhelper.cmd('ATTN ' + str(idx + 1) + ' ' + str(value), False) 110 def get_atten(self, idx): argument 129 atten_val = self._tnhelper.cmd('ATTN? ' + str(idx + 1))
|
/tools/test/connectivity/acts/framework/acts/controllers/ |
D | attenuator.py | 63 attn = Attenuator(attn_inst, idx=i) 87 "Attenuator_Port": attenuator.idx 160 and attenuator.idx is attenuator_port): 231 def set_atten(self, idx, value, strict=True): argument 244 def get_atten(self, idx): argument 265 def __init__(self, instrument, idx=0, offset=0): argument 286 self.idx = idx 289 if self.idx >= instrument.num_atten: 309 self.instrument.set_atten(self.idx, value + self.offset, strict) 313 return self.instrument.get_atten(self.idx) - self.offset
|
/tools/test/connectivity/acts/tests/google/wifi/ |
D | WifiScannerBssidTest.py | 185 idx = data["Index"] 190 event_name = "%s%sonFound" % (BSSID_EVENT_TAG, idx) 207 self.dut.droid.wifiScannerStopTrackingBssids(idx) 231 idx = None 235 idx = data["Index"] 238 event_name = "%s%sonFound" % (BSSID_EVENT_TAG, idx) 250 event_name = "%s%sonLost" % (BSSID_EVENT_TAG, idx) 260 if idx: 261 self.dut.droid.wifiScannerStopTrackingBssids(idx) 379 idx = None [all …]
|
D | WifiScannerScanTest.py | 264 idx = data["Index"] 267 "Wifi single shot scan started index: %s at real time: %s", idx, 279 event_name = "{}{}onResults".format(EVENT_TAG, idx) 301 self.dut.droid.wifiScannerStopScan(idx) 323 idx = data["Index"] 325 self.log.info("Wifi single shot scan started with index: %s", idx) 333 event_name = "%s%sonResults" % (EVENT_TAG, idx) 343 event_name = "{}{}onFullResult".format(EVENT_TAG, idx) 355 self.dut.droid.wifiScannerStopScan(idx) 383 idx = data["Index"] [all …]
|
D | WifiRoamingPerformanceTest.py | 251 (idx, idx + 1) 252 for idx in range(len(result['rssi_result']['bssid']) - 1) 253 if result['rssi_result']['bssid'][idx] != result['rssi_result'] 254 ['bssid'][idx + 1] 332 any(tput_thresholding[max(0, idx - window_size):idx]) 333 for idx in range(1, 406 idx * IPERF_INTERVAL for idx in range(len(result['throughput'])) 427 for idx, atten in enumerate(self.attenuators): 429 item["network"] for item in self.rf_map_by_atten[idx] 553 for idx, atten in enumerate(self.attenuators): [all …]
|
D | WifiRvrTest.py | 162 for idx, current_throughput in enumerate( 164 if (current_throughput < throughput_limits['lower_limit'][idx] 166 throughput_limits['upper_limit'][idx]): 208 for idx, current_throughput in enumerate( 210 current_att = rvr_result['attenuation'][idx] + rvr_result[ 318 for idx in range(len(tput_below_limit)): 319 if all(tput_below_limit[idx:]): 320 if idx == 0: 325 'total_attenuation'][max(idx, 1) - 1] 336 for idx in range(len(tput_below_limit)): [all …]
|
D | WifiRttManagerTest.py | 139 idx = self.dut.droid.wifiRttStartRanging(rtt_params) 142 event = self.dut.ed.pop_events("WifiRttRanging%d" % idx, 30) 222 idx = wutils.start_wifi_single_scan(self.android_devices[0], 224 self.log.info("Scan index is %d" % idx) 225 event_name = "WifiScannerScan%donFullResult" % idx 237 event_name = "WifiScannerScan%donResults" % idx
|
/tools/test/connectivity/acts/framework/acts/test_utils/audio_analysis_lib/ |
D | check_quality.py | 294 for idx, expected_freq in enumerate(expected_freqs): 297 if not self._spectrals[idx]: 299 'Failed at channel %d: no dominant frequency' % idx) 300 dominant_freq = self._spectrals[idx][0][0] 304 (idx, dominant_freq, expected_freq)) 315 for idx, quality_res in enumerate(self._quality_result): 369 for idx, expected_freq in enumerate(expected_freqs): 372 if not self._spectrals[idx]: 374 'Failed at channel %d: no dominant frequency' % idx) 375 dominant_freq = self._spectrals[idx][0][0] [all …]
|
/tools/tradefederation/core/src/com/android/tradefed/util/ |
D | SimpleStats.java | 99 int idx = size() / 2; in median() local 100 return mData.get(idx); in median() 103 int idx = size() / 2; in median() local 104 return (mData.get(idx - 1) + mData.get(idx)) / 2; in median()
|
D | SimplePerfStatResultParser.java | 96 int idx = output.indexOf(SIMPLEPERF_METRIC_HEAD); in parseRawOutput() local 97 if (idx == -1) { in parseRawOutput() 101 result.setCommandRawOutput(output.substring(0, idx)); in parseRawOutput() 102 String simpleperfOutput = output.substring(idx + SIMPLEPERF_METRIC_HEAD.length() + 1); in parseRawOutput()
|
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/ |
D | FakeTestTest.java | 304 int idx) { in testPassExpectations() argument 305 final String name = String.format("testMethod%d", idx); in testPassExpectations() 312 ITestInvocationListener l, String klass, int idx, String log) { in testPassExpectations() argument 313 final String name = String.format("testMethod%d", idx); in testPassExpectations() 321 int idx) { in testFailExpectations() argument 322 final String name = String.format("testMethod%d", idx); in testFailExpectations() 329 private void testAssumptionExpectations(ITestInvocationListener l, String klass, int idx) { in testAssumptionExpectations() argument 330 final String name = String.format("testMethod%d", idx); in testAssumptionExpectations() 337 private void testIgnoredExpectations(ITestInvocationListener l, String klass, int idx) { in testIgnoredExpectations() argument 338 final String name = String.format("testMethod%d", idx); in testIgnoredExpectations()
|
/tools/test/connectivity/acts/framework/acts/test_utils/coex/ |
D | CoexPerformanceBaseTest.py | 247 for idx, data in enumerate(content["quality_result"]): 249 self.rvr["bt_gap_analysis"][bt_atten][atten][idx] = ( 253 self.rvr["bt_gap_analysis"][bt_atten][atten][idx] = 0 431 for idx, current_throughput in enumerate( 433 current_att = self.rvr[bt_atten]["attenuation"][idx] 435 (throughput_limits[bt_atten]["lower_limit"][idx]) or 437 (throughput_limits[bt_atten]["upper_limit"][idx])): 444 throughput_limits[bt_atten]["lower_limit"][idx], 446 idx])) 480 for idx, current_throughput in enumerate( [all …]
|
/tools/test/connectivity/acts/tests/google/bt/performance/ |
D | BtInterferenceRSSITest.py | 36 self.log.debug("Set attenuator %s to %s" % (attenuator.idx, value)) 41 (attenuator.idx, value))
|
/tools/apksig/src/main/java/com/android/apksig/internal/apk/ |
D | AndroidBinXmlParser.java | 651 int idx = (int) index; in getString() local 652 String result = mCachedStrings.get(idx); in getString() 657 long offsetInStringsSection = getUnsignedInt32(mChunkContents, idx * 4); in getString() 660 "Offset of string idx " + idx + " out of bounds: " + offsetInStringsSection in getString() 668 mCachedStrings.put(idx, result); in getString() 780 int idx = (int) index; in getResourceId() local 782 return mChunkContents.getInt(idx * 4); in getResourceId()
|
/tools/asuite/atest/tools/ |
D | atest_tools_unittest.py | 103 for idx in targets_to_delete: 104 os.remove(idx)
|
/tools/tradefederation/core/atest/tools/ |
D | atest_tools_unittest.py | 101 for idx in targets_to_delete: 102 os.remove(idx)
|
/tools/test/connectivity/acts/framework/acts/controllers/utils_lib/ssh/ |
D | connection.py | 384 idx = None 387 idx = i 389 if idx is not None: 390 tunnel = self._tunnels.pop(idx)
|
/tools/test/connectivity/acts/framework/acts/test_utils/power/ |
D | PowerBTBaseTest.py | 78 attr, idx = bt_devices.split(':') 79 self.bt_device_controller = getattr(self, attr)[int(idx)]
|
/tools/test/connectivity/acts/tests/google/coex/performance_tests/ |
D | WlanWithA2dpPerformanceTest.py | 44 attr, idx = self.dut.split(':') 45 self.dut_controller = getattr(self, attr)[int(idx)]
|