/tools/test/connectivity/acts/framework/acts/event/ |
D | event_bus.py | 40 def register(self, event_type, func, filter_fn=None, order=0): argument 63 order=order) 94 subscription_list.sort(key=lambda x: x.order) 121 listening_subscriptions.sort(key=lambda x: x.order) 184 def register(event_type, func, filter_fn=None, order=0): argument 205 order=order) 279 def __init__(self, event_type, func, filter_fn=None, order=0): argument 283 self.order = order 289 order=self.order)
|
D | decorators.py | 21 def subscribe_static(event_type, event_filter=None, order=0): argument 30 order=order) 35 def subscribe(event_type, event_filter=None, order=0): argument 41 order=order)
|
D | subscription_handle.py | 22 def __init__(self, event_type, func, event_filter=None, order=0): argument 26 self._order = order 36 order=self._order)
|
D | subscription_bundle.py | 29 order=0): argument 40 order=order)
|
/tools/apksig/src/main/java/com/android/apksig/internal/apk/v4/ |
D | V4Signature.java | 46 ByteBuffer buffer = ByteBuffer.wrap(bytes).order(ByteOrder.LITTLE_ENDIAN); in fromByteArray() 57 ByteBuffer buffer = ByteBuffer.allocate(size).order(ByteOrder.LITTLE_ENDIAN); in toByteArray() 85 ByteBuffer buffer = ByteBuffer.wrap(bytes).order(ByteOrder.LITTLE_ENDIAN); in fromByteArray() 100 ByteBuffer buffer = ByteBuffer.allocate(size).order(ByteOrder.LITTLE_ENDIAN); in toByteArray() 143 ByteBuffer buffer = ByteBuffer.allocate(size).order(ByteOrder.LITTLE_ENDIAN); in getSignedData() 176 return ByteBuffer.wrap(buffer).order(ByteOrder.LITTLE_ENDIAN).getInt(); in readIntLE() 180 …final byte[] buffer = ByteBuffer.wrap(new byte[4]).order(ByteOrder.LITTLE_ENDIAN).putInt(v).array(… in writeIntLE()
|
/tools/apksig/src/main/java/com/android/apksig/internal/apk/ |
D | ApkSigningBlockUtilsLite.java | 71 apkSigningBlockBuf.order(ByteOrder.LITTLE_ENDIAN); in findSignature() 128 if (buffer.order() != ByteOrder.LITTLE_ENDIAN) { in checkByteOrderLittleEndian() 295 result.order(source.order()); in sliceFromTo() 326 result.order(source.order()); in getByteBuffer() 383 result.order(ByteOrder.LITTLE_ENDIAN); in encodeAsSequenceOfLengthPrefixedPairsOfIntAndLengthPrefixedBytes()
|
D | AndroidBinXmlParser.java | 86 xml.order(ByteOrder.LITTLE_ENDIAN); in AndroidBinXmlParser() 513 result.order(mContents.order()); in getContents() 519 result.order(mHeader.order()); in getHeader() 767 mChunkContents.order(chunk.getContents().order()); in ResourceMap() 830 result.order(source.order()); in sliceFromTo()
|
D | ApkSigningBlockUtils.java | 148 modifiedEocd.order(ByteOrder.LITTLE_ENDIAN); in verifyIntegrity() 621 encoded.order(ByteOrder.LITTLE_ENDIAN); in createVerityDigestBuffer() 763 result.order(ByteOrder.LITTLE_ENDIAN); in encodeAsSequenceOfLengthPrefixedElements() 834 eocdBuf.order(ByteOrder.LITTLE_ENDIAN); in copyWithModifiedCDOffset() 871 paddingPair = ByteBuffer.allocate(padding).order(ByteOrder.LITTLE_ENDIAN); in generateApkSigningBlock() 879 result.order(ByteOrder.LITTLE_ENDIAN); in generateApkSigningBlock() 929 apkSigningBlockBuffer.order(ByteOrder.LITTLE_ENDIAN); in getApkSignatureBlocks() 976 signatureBlockBuffer.order(ByteOrder.LITTLE_ENDIAN); in getApkSignatureBlockSigners()
|
/tools/test/connectivity/acts/framework/tests/event/ |
D | event_bus_test.py | 44 order = 43 45 event_bus.register(mock_event, mock_func, order=order) 54 self.assertEqual(subscription.order, order) 116 subscription.order = 0 136 subscription.order = i
|
/tools/apksig/src/main/java/com/android/apksig/apk/ |
D | ApkUtilsLite.java | 54 eocdBuf.order(ByteOrder.LITTLE_ENDIAN); in findZipSections() 124 footer.order(ByteOrder.LITTLE_ENDIAN); in findApkSigningBlock() 144 apkSigBlock.order(ByteOrder.LITTLE_ENDIAN); in findApkSigningBlock()
|
/tools/apksig/src/main/java/com/android/apksig/internal/zip/ |
D | ZipUtils.java | 188 buf.order(ByteOrder.LITTLE_ENDIAN); in findZipEndOfCentralDirectoryRecord() 197 eocd.order(ByteOrder.LITTLE_ENDIAN); in findZipEndOfCentralDirectoryRecord() 243 if (buffer.order() != ByteOrder.LITTLE_ENDIAN) { in assertByteOrderLittleEndian() 267 cd.order(ByteOrder.LITTLE_ENDIAN); in parseZipCentralDirectory()
|
D | LocalFileRecord.java | 167 header.order(ByteOrder.LITTLE_ENDIAN); in getRecord() 268 dataDescriptorPotentialSig.order(ByteOrder.LITTLE_ENDIAN); in getRecord() 318 header.order(ByteOrder.LITTLE_ENDIAN); in outputRecordWithModifiedExtra() 347 result.order(ByteOrder.LITTLE_ENDIAN); in outputRecordWithDeflateCompressedData()
|
D | EocdRecord.java | 37 result.order(ByteOrder.LITTLE_ENDIAN); in createWithModifiedCentralDirectoryInfo()
|
D | CentralDirectoryRecord.java | 202 result.order(ByteOrder.LITTLE_ENDIAN); in createWithModifiedLocalFileHeaderOffset() 231 result.order(ByteOrder.LITTLE_ENDIAN); in createWithDeflateCompressedData()
|
/tools/apksig/src/main/java/com/android/apksig/internal/apk/v3/ |
D | V3SigningCertificateLineage.java | 193 encodedWithVersion.order(ByteOrder.LITTLE_ENDIAN); in encodeSigningCertificateLineage() 219 result.order(ByteOrder.LITTLE_ENDIAN); in encodeSigningCertificateNode() 232 result.order(ByteOrder.LITTLE_ENDIAN); in encodeSignedData()
|
D | V3SchemeSigner.java | 158 result.order(ByteOrder.LITTLE_ENDIAN); in generateV3SignerAttribute() 262 result.order(ByteOrder.LITTLE_ENDIAN); in encodeSigner() 298 result.order(ByteOrder.LITTLE_ENDIAN); in encodeSignedData()
|
/tools/test/connectivity/acts/framework/acts/ |
D | context.py | 128 event_bus.register(TestCaseBeginEvent, _update_test_case_context, order=-100) 129 event_bus.register(TestCaseEndEvent, _update_test_case_context, order=100)
|
/tools/test/connectivity/acts/framework/acts/controllers/buds_lib/dev_utils/proto/ |
D | plugin.proto | 65 // they import. The files will appear in topological order, so each file 117 // insertions to the same point will come out in the order they were added). 134 // in order to work correctly in that context. 138 // Code generators are executed in the order in which they appear on the
|
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/ |
D | Sector.java | 45 this.buffer.order(ByteOrder.LITTLE_ENDIAN); in Sector()
|
/tools/apksig/src/apksigner/java/com/android/apksigner/ |
D | help_rotate.txt | 75 order of old-signer then new-signer and, within each 98 order of old-signer then new-signer and, within each 156 certificate but can not guarantee the order of updates to 181 different providers. Providers are installed in the order in which they appear
|
D | help_lineage.txt | 72 order of old-signer then new-signer and, within each 95 order of old-signer then new-signer and, within each 153 certificate but can not guarantee the order of updates to
|
/tools/asuite/atest/asuite_lib_test/ |
D | Android.bp | 16 // also include asuite_metrics and other needed python files, in order to make sure asuite_metrics
|
/tools/apkzlib/src/test/resources/testData/packaging/text-files/ |
D | rfc2460.txt | 329 be processed strictly in the order they appear in the packet; a 362 order to retain 8-octet alignment for subsequent headers. Multi- 384 recommended that those headers appear in the following order: 410 order of the Authentication and Encapsulating 429 any order and occurring any number of times in the same packet, 433 recommended order until and unless subsequent specifications revise 475 the order they appear in the header; a receiver must not, for 481 highest-order two bits specify the action that must be taken if the 498 The third-highest-order bit of the Option Type specifies whether or 519 The three high-order bits described above are to be treated as part [all …]
|
/tools/apksig/src/main/java/com/android/apksig/ |
D | SigningCertificateLineage.java | 147 inBuff.order(ByteOrder.LITTLE_ENDIAN); in readFromDataSource() 165 attrValue).order(ByteOrder.LITTLE_ENDIAN)); in readFromV3AttributeValue() 496 result.order(ByteOrder.LITTLE_ENDIAN); in write()
|
/tools/test/connectivity/acts_tests/tests/google/tel/config/ |
D | README.md | 2 …ces from other ACTS configs that require additional keys to be defined in order to run nearly all …
|