Created
December 10, 2014 21:46
-
-
Save kamituel/e917aed8697fc3c75b3c to your computer and use it in GitHub Desktop.
Log
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I/Gecko ( 1485): ACEservice: Setting test dev cert hash A683...2128 | |
I/Gecko ( 1485): [SUB0] QCONTENT_HELPER receiveMessage: 'RIL:IccOpenChannel' | |
I/Gecko ( 1485): [SUB0] QCONTENT_HELPER sendMessage to content process: RIL:IccOpenChannel { requestId : '{5bb68b09-40e0-4da9-8f8e-c44f77dd35a3}', errorMsg : null, channel : 2, } | |
I/Gecko ( 1485): -*- RILContentHelper: Received message 'RIL:IccOpenChannel': {"clientId":0,"data":{"requestId":"{5bb68b09-40e0-4da9-8f8e-c44f77dd35a3}","errorMsg":null,"channel":2}} | |
I/Gecko ( 1485): ACEservice: _openChannel/notifyOpenChannelSuccess: Channel 2 opened | |
I/Gecko ( 1485): ACEservice: _readODF | |
I/Gecko ( 1485): [SUB0] QCONTENT_HELPER receiveMessage: 'RIL:IccExchangeAPDU' | |
I/Gecko ( 1485): [SUB0] QCONTENT_HELPER sendMessage to content process: RIL:IccExchangeAPDU { requestId : '{ac11f446-deb1-41f2-956d-ae3c396bcbb1}', errorMsg : null, sw1 : 97, sw2 : 36, simResponse : null, } | |
I/Gecko ( 1485): -*- RILContentHelper: Received message 'RIL:IccExchangeAPDU': {"clientId":0,"data":{"requestId":"{ac11f446-deb1-41f2-956d-ae3c396bcbb1}","errorMsg":null,"sw1":97,"sw2":36,"simResponse":null}} | |
I/Gecko ( 1485): ACEservice: _exchangeAPDU/notifyExchangeAPDUResponse | |
I/Gecko ( 1485): ACEservice: APDU response is 6124 data: undefined | |
I/Gecko ( 1485): ACEservice: requesting more data | |
I/Gecko ( 1485): -*- RILContentHelper: data is not set , p3 : 0 | |
I/Gecko ( 1485): [SUB0] QCONTENT_HELPER receiveMessage: 'RIL:IccExchangeAPDU' | |
I/Gecko ( 1485): [SUB0] QCONTENT_HELPER sendMessage to content process: RIL:IccExchangeAPDU { requestId : '{aade720e-828c-46c5-89b6-e7e07722c743}', errorMsg : null, sw1 : 144, sw2 : 0, simResponse : '62228202412183025031a503c001408a01058b066f060101000180020010810200228800', } | |
I/Gecko ( 1485): -*- RILContentHelper: Received message 'RIL:IccExchangeAPDU': {"clientId":0,"data":{"requestId":"{aade720e-828c-46c5-89b6-e7e07722c743}","errorMsg":null,"sw1":144,"sw2":0,"simResponse":"62228202412183025031a503c001408a01058b066f060101000180020010810200228800"}} | |
I/Gecko ( 1485): ACEservice: _exchangeAPDU/notifyExchangeAPDUResponse | |
I/Gecko ( 1485): ACEservice: APDU response is 900 data: undefined | |
I/Gecko ( 1485): ACEservice: Passed value is not an array. | |
I/Gecko ( 1485): ACEservice: Select response: null |
notifyExchangeAPDUResponse: function(sw1, sw2, simResponse) {
let resposeArr = _hexStringToBytes(simResponse);
}
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
_hexStringToBytes: function(hexString) {
let bytes = [];
let length = hexString.length;
},