Home
last modified time | relevance | path

Searched refs:idx (Results 1 – 25 of 27) sorted by relevance

12

/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
DFatType.java38 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 …]
DAbstractDirectory.java138 public final FatDirectoryEntry getEntry(int idx) { in getEntry() argument
139 return this.entries.get(idx); in getEntry()
/tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/
DCentralDirectory.java435 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/
Dtelnet.py96 def set_atten(self, idx, value): argument
120 if idx >= self.num_atten:
121 raise IndexError("Attenuator index out of range!", self.num_atten, idx)
126 self._tnhelper.cmd("CHAN:%s:SETATT:%s" % (idx + 1, value))
128 def get_atten(self, idx): argument
150 if idx >= self.num_atten or idx < 0:
151 raise IndexError("Attenuator index out of range!", self.num_atten, idx)
153 atten_val_str = self._tnhelper.cmd("CHAN:%s:ATT?" % (idx + 1))
/tools/tradefederation/core/src/com/android/tradefed/command/
DCommandFileParser.java144 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/src/com/android/tradefed/util/
DByteArrayList.java243 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()
DSimpleStats.java99 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()
DSimplePerfStatResultParser.java96 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/test/connectivity/acts/framework/acts/controllers/attenuator_lib/aeroflex/
Dtelnet.py90 def set_atten(self, idx, value): argument
115 if idx >= self.num_atten:
116 raise IndexError("Attenuator index out of range!", self.num_atten, idx)
121 self._tnhelper.cmd("ATTN " + str(idx+1) + " " + str(value), False)
123 def get_atten(self, idx): argument
148 atten_val = self._tnhelper.cmd("ATTN? " + str(idx+1))
/tools/test/connectivity/acts/framework/acts/controllers/
Dattenuator.py58 attn = Attenuator(attn_inst, idx=i)
147 def set_atten(self, idx, value): argument
163 def get_atten(self, idx): argument
192 def __init__(self, instrument, idx=0, offset=0): argument
219 self.idx = idx
222 if (self.idx >= instrument.num_atten):
243 self.instrument.set_atten(self.idx, value + self.offset)
255 return self.instrument.get_atten(self.idx) - self.offset
/tools/test/connectivity/acts/tests/google/wifi/
DWifiScannerBssidTest.py185 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 …]
DWifiScannerScanTest.py274 idx = data["Index"]
277 "Wifi single shot scan started index: %s at real time: %s", idx,
289 event_name = "{}{}onResults".format(EVENT_TAG, idx)
311 self.dut.droid.wifiScannerStopScan(idx)
333 idx = data["Index"]
335 self.log.info("Wifi single shot scan started with index: %s", idx)
343 event_name = "%s%sonResults" % (EVENT_TAG, idx)
353 event_name = "{}{}onFullResult".format(EVENT_TAG, idx)
365 self.dut.droid.wifiScannerStopScan(idx)
393 idx = data["Index"]
[all …]
DWifiScannerMultiScanTest.py276 idx = data["Index"]
288 return idx, wait_time, scan_channels
371 idx, wait_time, scan_chan = self.start_scan(scan_setting)
374 scan_setting["band"], idx, wait_time, scan_chan)
375 idx_list.append(idx)
382 SCAN_EVENT_TAG, idx)] = scan_results_events
386 SCAN_EVENT_TAG, idx)] = scan_results_events
395 for idx in idx_list:
396 self.dut.droid.wifiScannerStopBackgroundScan(idx)
DWifiRvrTest.py132 for idx, current_throughput in enumerate(
134 current_att = rvr_result["attenuation"][idx] + rvr_result["fixed_attenuation"]
135 if (current_throughput < throughput_limits["lower_limit"][idx]
137 throughput_limits["upper_limit"][idx]):
143 throughput_limits["lower_limit"][idx],
144 throughput_limits["upper_limit"][idx]))
175 for idx, current_throughput in enumerate(
177 current_att = rvr_result["attenuation"][idx] + rvr_result["fixed_attenuation"]
DWifiRttManagerTest.py139 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/
Dcheck_quality.py294 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/test/connectivity/acts/framework/acts/controllers/utils_lib/ssh/
Dconnection.py376 idx = None
379 idx = i
381 if idx is not None:
382 tunnel = self._tunnels.pop(idx)
/tools/apksig/src/main/java/com/android/apksig/internal/apk/
DAndroidBinXmlParser.java651 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/tradefederation/core/tests/src/com/android/tradefed/testtype/
DFakeTestTest.java264 int idx) { in testPassExpectations() argument
265 final String name = String.format("testMethod%d", idx); in testPassExpectations()
272 int idx) { in testFailExpectations() argument
273 final String name = String.format("testMethod%d", idx); in testFailExpectations()
/tools/test/connectivity/acts/tests/google/wifi/rtt/functional/
DRangeApSupporting11McTest.py105 idx = dut.droid.wifiRttStartRanging(rtt_configs)
108 events = dut.ed.pop_events("WifiRttRanging%d" % idx, 30)
/tools/loganalysis/src/com/android/loganalysis/util/config/
DArgsOptionParser.java238 int idx = name.indexOf(NAMESPACE_SEPARATOR); in parseLongOption() local
239 value = name.startsWith(BOOL_FALSE_PREFIX, idx + 1) ? "false" : "true"; in parseLongOption()
/tools/test/connectivity/acts/framework/acts/test_utils/wifi/
Dwifi_test_utils.py867 idx = ad.droid.wifiScannerStartBackgroundScan(scan_setting)
868 event = ad.ed.pop_event("WifiScannerScan{}onSuccess".format(idx),
1384 idx = ad.droid.wifiScannerStartScan(scan_setting)
1385 event = ad.ed.pop_event("WifiScannerScan%sonSuccess" % idx, SHORT_TIMEOUT)
1449 idx = ad.droid.wifiScannerStartTrackingBssids(
1451 event = ad.ed.pop_event("WifiScannerBssid{}onSuccess".format(idx),
/tools/tradefederation/core/src/com/android/tradefed/config/
DArgsOptionParser.java332 int idx = name.indexOf(NAMESPACE_SEPARATOR); in parseLongOption() local
338 value = name.startsWith(BOOL_FALSE_PREFIX, idx + 1) ? "false" : "true"; in parseLongOption()
/tools/test/connectivity/acts/framework/acts/test_utils/coex/
Dcoex_test_utils.py900 for idx in attenuation_range:
902 worksheet.write(r, c + 1, str(idx) + "db", wb_format)
/tools/test/connectivity/acts/tests/google/tel/live/
DTelLiveDataTest.py1277 for idx, ad in enumerate(self.android_devices):
1278 self.provider = self.android_devices[idx]
1279 self.clients = self.android_devices[:idx] + self.android_devices[
1280 idx+1:]
1297 elif idx == num - 1:

12