Home
last modified time | relevance | path

Searched refs:order (Results 1 – 25 of 48) sorted by relevance

12

/tools/test/connectivity/acts/framework/acts/event/
Devent_bus.py40 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)
Ddecorators.py21 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)
Dsubscription_handle.py22 def __init__(self, event_type, func, event_filter=None, order=0): argument
26 self._order = order
36 order=self._order)
Dsubscription_bundle.py29 order=0): argument
40 order=order)
/tools/apksig/src/main/java/com/android/apksig/internal/apk/v4/
DV4Signature.java46 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/
DApkSigningBlockUtilsLite.java71 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()
DAndroidBinXmlParser.java86 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()
DApkSigningBlockUtils.java148 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/
Devent_bus_test.py44 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/
DApkUtilsLite.java54 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/
DZipUtils.java188 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()
DLocalFileRecord.java167 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()
DEocdRecord.java37 result.order(ByteOrder.LITTLE_ENDIAN); in createWithModifiedCentralDirectoryInfo()
DCentralDirectoryRecord.java202 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/
DV3SigningCertificateLineage.java193 encodedWithVersion.order(ByteOrder.LITTLE_ENDIAN); in encodeSigningCertificateLineage()
219 result.order(ByteOrder.LITTLE_ENDIAN); in encodeSigningCertificateNode()
232 result.order(ByteOrder.LITTLE_ENDIAN); in encodeSignedData()
DV3SchemeSigner.java158 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/
Dcontext.py128 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/
Dplugin.proto65 // 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/
DSector.java45 this.buffer.order(ByteOrder.LITTLE_ENDIAN); in Sector()
/tools/apksig/src/apksigner/java/com/android/apksigner/
Dhelp_rotate.txt75 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
Dhelp_lineage.txt72 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/
DAndroid.bp16 // 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/
Drfc2460.txt329 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/
DSigningCertificateLineage.java147 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/
DREADME.md2 …ces from other ACTS configs that require additional keys to be defined in order to run nearly all …

12