Lines Matching defs:response

55     // Byte order received in response to COMMAND_GET_RESPONSE
171 Message response
176 0, 0, GET_RESPONSE_EF_SIZE_BYTES, null, null, mAid, response);
203 Message response = obtainMessage(EVENT_GET_RECORD_SIZE_IMG_DONE,
210 null, null, mAid, response);
225 Message response
229 0, 0, GET_RESPONSE_EF_SIZE_BYTES, null, null, mAid, response);
257 Message response = obtainMessage(EVENT_GET_RECORD_SIZE_DONE,
261 0, 0, GET_RESPONSE_EF_SIZE_BYTES, null, null, mAid, response);
288 Message response = obtainMessage(EVENT_GET_BINARY_SIZE_DONE,
292 0, 0, GET_RESPONSE_EF_SIZE_BYTES, null, null, mAid, response);
306 Message response = obtainMessage(EVENT_READ_BINARY_DONE,
310 0, 0, size, null, null, mAid, response);
325 Message response = obtainMessage(EVENT_READ_ICON_DONE, fileid, 0,
339 highOffset, lowOffset, length, null, null, mAid, response);
393 private void sendResult(Message response, Object result, Throwable ex) {
394 if (response == null) {
398 AsyncResult.forMessage(response, result, ex);
400 response.sendToTarget();
403 private boolean processException(Message response, AsyncResult ar) {
408 sendResult(response, null, ar.exception);
413 sendResult(response, null, iccException);
426 Message response = null;
442 response = lc.mOnLoaded;
444 if (processException(response, (AsyncResult) msg.obj)) {
461 sendResult(response, recordSize, null);
469 response = lc.mOnLoaded;
471 if (processException(response, (AsyncResult) msg.obj)) {
508 response = (Message) ar.userObj;
511 if (processException(response, (AsyncResult) msg.obj)) {
533 fileid, 0, response));
542 response = lc.mOnLoaded;
545 if (processException(response, (AsyncResult) msg.obj)) {
550 sendResult(response, result.payload, null);
557 sendResult(response, lc.results, null);
576 response = (Message) ar.userObj;
579 if (processException(response, (AsyncResult) msg.obj)) {
583 sendResult(response, result.payload, null);
587 if (response != null) {
588 sendResult(response, null, exc);