Home
last modified time | relevance | path

Searched refs:transmit (Results 1 – 25 of 30) sorted by relevance

12

/packages/modules/Uwb/service/tests/src/com/android/server/uwb/secure/
DInitiatorSecureChannelTest.java158 when(mSecureElementChannel.transmit(any(SwapInAdfCommand.class))).thenReturn( in openChannelSwapInAdfSuccess()
181 when(mSecureElementChannel.transmit(any(SwapInAdfCommand.class))).thenReturn( in openChannelSwapInAdfFailed()
195 when(mSecureElementChannel.transmit(any(SelectAdfCommand.class))) in doSelectAdf()
218 when(mSecureElementChannel.transmit(any(SelectAdfCommand.class))) in selectAdfFailed()
254 when(mSecureElementChannel.transmit(any(InitiateTransactionCommand.class))) in unicastInitiateTransactionSuccess()
272 when(mSecureElementChannel.transmit(any(InitiateTransactionCommand.class))) in unicastInitiateTransactionFail()
292 when(mSecureElementChannel.transmit(any(InitiateTransactionCommand.class))) in multicastInitiateTransactionSuccess()
311 when(mSecureElementChannel.transmit(any(InitiateTransactionCommand.class))) in multicastInitiateTransactionFail()
330 when(mSecureElementChannel.transmit(any(InitiateTransactionCommand.class))) in doPrepareSC()
342 when(mSecureElementChannel.transmit(any(DispatchCommand.class))).thenReturn(responseApdu); in doEstablishSC()
[all …]
DSecureElementChannelTest.java141 when(mMockOmapiConnection.transmit(eq(mMockCommandApdu))) in transmit_swTemporarilyUnavailableOnFirstTwoAttempts_succeedsOnThirdTry()
147 ResponseApdu actualResponse = mSecureElementChannel.transmit(mMockCommandApdu); in transmit_swTemporarilyUnavailableOnFirstTwoAttempts_succeedsOnThirdTry()
149 verify(mMockOmapiConnection, times(3)).transmit(eq(mMockCommandApdu)); in transmit_swTemporarilyUnavailableOnFirstTwoAttempts_succeedsOnThirdTry()
191 when(mMockOmapiConnection.transmit(eq(mMockCommandApdu))) in transmit_retriesExhausted_failure()
195 ResponseApdu actualResponse = mSecureElementChannel.transmit(mMockCommandApdu); in transmit_retriesExhausted_failure()
197 verify(mMockOmapiConnection, times(3)).transmit(eq(mMockCommandApdu)); in transmit_retriesExhausted_failure()
234 when(mMockOmapiConnection.transmit(any())).thenReturn(mMockResponseApdu); in transmit_callsSeTransmit()
237 ResponseApdu responseFromCall = mSecureElementChannel.transmit(mMockCommandApdu); in transmit_callsSeTransmit()
239 verify(mMockOmapiConnection).transmit(eq(mMockCommandApdu)); in transmit_callsSeTransmit()
245 ResponseApdu response = mSecureElementChannel.transmit(mMockCommandApdu); in transmit_unopened_failure()
[all …]
DResponderSecureChannelTest.java140 when(mSecureElementChannel.transmit(any(FiRaCommand.class))) in remoteSelectAdfWithMatchedAdfOid()
169 when(mSecureElementChannel.transmit(any(FiRaCommand.class))) in remoteSelectAdfWithMismatchedAdfOid()
230 when(mSecureElementChannel.transmit(any(SwapInAdfCommand.class))) in openChannelSwapInAdfFailed()
/packages/apps/SecureElement/src/com/android/se/
DChannel.java115 public byte[] transmit(byte[] command) throws IOException { in transmit() method in Channel
151 return mTerminal.transmit(command); in transmit()
177 byte[] bufferSelectResponse = mTerminal.transmit(selectCommand); in selectNext()
315 public byte[] transmit(byte[] command) throws RemoteException { in transmit() method in Channel.SecureElementChannel
318 return Channel.this.transmit(command); in transmit()
DTerminal.java502 byte[] selectResponse = transmit(selectCommand); in select()
783 public byte[] transmit(byte[] cmd) throws IOException { in transmit() method in Terminal
795 rsp = transmit(cmd); in transmit()
817 rsp = mAidlHal.transmit(cmd); in transmitInternal()
829 response = mSEHal.transmit(byteArrayToArrayList(cmd)); in transmitInternal()
/packages/modules/Uwb/service/java/com/android/server/uwb/secure/
DSecureElementChannel.java154 public ResponseApdu transmit(@NonNull FiRaCommand fiRaCommand) throws IOException { in transmit() method in SecureElementChannel
155 return transmit(fiRaCommand.getCommandApdu()); in transmit()
162 public ResponseApdu transmit(@NonNull CommandApdu command) throws IOException { in transmit() method in SecureElementChannel
169 responseApdu = mOmapiConnection.transmit(command); in transmit()
DFiRaSecureChannel.java215 mSecureElementChannel.transmit(swapInAdfCmd)); in swapInAdf()
233 mSecureElementChannel.transmit(swapOutAdfCmd)); in swapOutAdf()
263 mSecureElementChannel.transmit(dispatchCommand)); in processRemoteCommandOrResponse()
358 mSecureElementChannel.transmit(getSessionIdCommand); in readDefaultSessionId()
407 ResponseApdu responseApdu = mSecureElementChannel.transmit(commandApdu); in sendLocalCommandApdu()
438 mSecureElementChannel.transmit(getDoCommand)); in terminateLocally()
DInitiatorSecureChannel.java100 mSecureElementChannel.transmit(selectAdfCmd)); in selectAdf()
123 mSecureElementChannel.transmit(initiateTransactionCmd)); in execInitiateTransactionCmd()
157 mSecureElementChannel.transmit(tunnelCmd)); in tunnelToRemoteDevice()
/packages/modules/Uwb/service/tests/src/com/android/server/uwb/secure/provisioning/
DProvisioningManagerTest.java74 when(mSecureElementChannel.transmit(any(FiRaCommand.class))) in deleteAdfSuccess()
86 when(mSecureElementChannel.transmit(any(FiRaCommand.class))) in deleteAdfFail()
98 when(mSecureElementChannel.transmit(any(FiRaCommand.class))) in deleteAdfWithException()
DScriptRunnerTest.java77 when(mSecureElementChannel.transmit(any(CommandApdu.class))).thenReturn( in successSetup()
137 when(mSecureElementChannel.transmit(any(CommandApdu.class))).thenReturn( in importAdfSuccess()
204 when(mSecureElementChannel.transmit(any(CommandApdu.class))).thenReturn( in failedProvisioning()
216 when(mSecureElementChannel.transmit(any(CommandApdu.class))).thenThrow( in failedProvisioningWithException()
/packages/modules/Uwb/service/java/com/android/server/uwb/secure/omapi/
DOmapiConnectionImpl.java84 public ResponseApdu transmit(CommandApdu command) throws IOException { in transmit() method in OmapiConnectionImpl
85 byte[] response = transmit(command.getEncoded()); in transmit()
97 private byte[] transmit(byte[] command) throws IOException { in transmit() method in OmapiConnectionImpl
102 return mChannel.transmit(command); in transmit()
DOmapiConnection.java39 ResponseApdu transmit(CommandApdu command) throws IOException; in transmit() method
/packages/modules/Bluetooth/flags/
Dl2cap.aconfig7 description: "Provide l2cap transmit complete information b/301168932"
/packages/modules/NetworkStack/src/com/android/networkstack/metrics/
Dstats.proto66 // The discover packet (re)transmit count
69 // The request packet (re)transmit count
124 // The request packet (re)transmit count
/packages/apps/SecureElement/src/com/android/se/security/arf/
DSecureElement.java87 return mArfChannel.transmit(cmd); in exchangeAPDU()
/packages/modules/Uwb/service/java/com/android/server/uwb/secure/provisioning/
DProvisioningManager.java75 mSecureElementChannel.transmit(deleteAdfCommand)); in deleteAdf()
DScriptRunner.java64 ResponseApdu responseApdu = mSecureElementChannel.transmit(commandApdu); in run()
/packages/apps/SecureElement/src/com/android/se/security/ara/
DAccessRuleApplet.java158 byte[] response = mChannel.transmit(cmdApdu.toBytes()); in send()
/packages/modules/Bluetooth/system/gd/l2cap/internal/
Dbasic_mode_channel_data_controller_test.cc72 TEST_F(BasicModeDataControllerTest, transmit) { in TEST_F() argument
/packages/modules/Bluetooth/system/gd/rust/linux/docs/
Dstyle_guide.md23 2. General computing shorthands (e.g. `tx` instead of `transmit`) are generally
/packages/modules/adb/
Dprotocol.txt80 or identifier string. The banner is used to transmit useful properties.
/packages/modules/Bluetooth/tools/rootcanal/packets/
Dhci_packets.pdl3511 tx_time : 16, // microseconds used to transmit a single PDU 0x0148 to 0x4290
3526 tx_time : 16, // microseconds used to transmit a single PDU 0x0148 to 0x4290
3531 tx_time : 16, // microseconds used to transmit a single PDU 0x0148 to 0x4290
4985 // Length in bytes of the eSCO payload in the transmit direction.
5006 // Length in bytes of the SCO/eSCO payload in the transmit direction.
/packages/modules/Bluetooth/system/pdl/hci/
Dhci_packets.pdl3699 tx_time : 16, // microseconds used to transmit a single PDU 0x0148 to 0x4290
3714 tx_time : 16, // microseconds used to transmit a single PDU 0x0148 to 0x4290
3719 tx_time : 16, // microseconds used to transmit a single PDU 0x0148 to 0x4290
6153 // Length in bytes of the eSCO payload in the transmit direction.
6174 // Length in bytes of the SCO/eSCO payload in the transmit direction.
/packages/apps/Dialer/java/com/android/dialer/about/res/raw/
Dthird_party_licenses10612 to any third party for) any data, content, or resources that you create, transmit or display through
/packages/inputmethods/LatinIME/dictionaries/
Des_wordlist.combined.gz1dictionary=main:es,locale=es,description=Español,date=1414726268, ...

12