Lines Matching refs:response

57     // Byte order received in response to COMMAND_GET_RESPONSE
173 Message response
178 0, 0, GET_RESPONSE_EF_SIZE_BYTES, null, null, mAid, response);
205 Message response = obtainMessage(EVENT_GET_RECORD_SIZE_IMG_DONE,
212 null, null, mAid, response);
227 Message response
231 0, 0, GET_RESPONSE_EF_SIZE_BYTES, null, null, mAid, response);
259 Message response = obtainMessage(EVENT_GET_RECORD_SIZE_DONE,
263 0, 0, GET_RESPONSE_EF_SIZE_BYTES, null, null, mAid, response);
290 Message response = obtainMessage(EVENT_GET_BINARY_SIZE_DONE,
294 0, 0, GET_RESPONSE_EF_SIZE_BYTES, null, null, mAid, response);
308 Message response = obtainMessage(EVENT_READ_BINARY_DONE,
312 0, 0, size, null, null, mAid, response);
327 Message response = obtainMessage(EVENT_READ_ICON_DONE, fileid, 0,
341 highOffset, lowOffset, length, null, null, mAid, response);
395 private void sendResult(Message response, Object result, Throwable ex) {
396 if (response == null) {
400 AsyncResult.forMessage(response, result, ex);
402 response.sendToTarget();
405 private boolean processException(Message response, AsyncResult ar) {
410 sendResult(response, null, ar.exception);
415 sendResult(response, null, iccException);
428 Message response = null;
444 response = lc.mOnLoaded;
446 if (processException(response, (AsyncResult) msg.obj)) {
463 sendResult(response, recordSize, null);
471 response = lc.mOnLoaded;
473 if (processException(response, (AsyncResult) msg.obj)) {
510 response = (Message) ar.userObj;
513 if (processException(response, (AsyncResult) msg.obj)) {
540 fileid, 0, response));
549 response = lc.mOnLoaded;
552 if (processException(response, (AsyncResult) msg.obj)) {
557 sendResult(response, result.payload, null);
564 sendResult(response, lc.results, null);
583 response = (Message) ar.userObj;
586 if (processException(response, (AsyncResult) msg.obj)) {
590 sendResult(response, result.payload, null);
594 if (response != null) {
595 sendResult(response, null, exc);