Home
last modified time | relevance | path

Searched refs:AsyncResultCallback (Results 1 – 8 of 8) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/euicc/
DEuiccCardController.java47 import com.android.internal.telephony.uicc.euicc.async.AsyncResultCallback;
241 AsyncResultCallback<EuiccProfileInfo[]> cardCb = in getAllProfiles()
242 new AsyncResultCallback<EuiccProfileInfo[]>() { in getAllProfiles()
290 AsyncResultCallback<EuiccProfileInfo> cardCb = new AsyncResultCallback<EuiccProfileInfo>() { in getProfile()
338 AsyncResultCallback<Void> cardCb = new AsyncResultCallback<Void>() { in disableProfile()
386 AsyncResultCallback<EuiccProfileInfo> profileCb = in switchToProfile()
387 new AsyncResultCallback<EuiccProfileInfo>() { in switchToProfile()
390 AsyncResultCallback<Void> switchCb = new AsyncResultCallback<Void>() { in switchToProfile()
452 AsyncResultCallback<Void> cardCb = new AsyncResultCallback<Void>() { in setNickname()
500 AsyncResultCallback<Void> cardCb = new AsyncResultCallback<Void>() { in deleteProfile()
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/euicc/apdu/
DApduSender.java26 import com.android.internal.telephony.uicc.euicc.async.AsyncResultCallback;
127 mOpenChannel.invoke(mAid, new AsyncResultCallback<IccOpenLogicalChannelResponse>() { in send()
176 mTransmitApdu.invoke(command, new AsyncResultCallback<IccIoResult>() { in sendCommand()
182 new AsyncResultCallback<IccIoResult>() { in sendCommand()
223 AsyncResultCallback<IccIoResult> resultCallback, in getCompleteResponse()
243 new AsyncResultCallback<IccIoResult>() { in getCompleteResponse()
266 mCloseChannel.invoke(channel, new AsyncResultCallback<Boolean>() { in closeAndReturn()
DApduSenderResultCallback.java20 import com.android.internal.telephony.uicc.euicc.async.AsyncResultCallback;
27 public abstract class ApduSenderResultCallback extends AsyncResultCallback<byte[]> {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/euicc/
DEuiccCard.java53 import com.android.internal.telephony.uicc.euicc.async.AsyncResultCallback;
174 AsyncResultCallback<String> cardCb = new AsyncResultCallback<String>() { in loadEidAndNotifyRegistrants()
200 public void getSpecVersion(AsyncResultCallback<EuiccSpecVersion> callback, Handler handler) { in getSpecVersion()
236 public void getAllProfiles(AsyncResultCallback<EuiccProfileInfo[]> callback, Handler handler) { in getAllProfiles()
275 public final void getProfile(String iccid, AsyncResultCallback<EuiccProfileInfo> callback, in getProfile()
311 public void disableProfile(String iccid, boolean refresh, AsyncResultCallback<Void> callback, in disableProfile()
350 public void switchToProfile(String iccid, boolean refresh, AsyncResultCallback<Void> callback, in switchToProfile()
395 public void getEid(AsyncResultCallback<String> callback, Handler handler) { in getEid()
424 public void setNickname(String iccid, String nickname, AsyncResultCallback<Void> callback, in setNickname()
452 public void deleteProfile(String iccid, AsyncResultCallback<Void> callback, Handler handler) { in deleteProfile()
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/euicc/async/
DAsyncMessageInvocation.java45 Request request, AsyncResultCallback<Response> resultCallback, Handler handler) { in invoke()
54 AsyncResultCallback<Response> resultCallback = in handleMessage()
55 (AsyncResultCallback<Response>) result.userObj; in handleMessage()
DAsyncResultHelper.java36 final T result, final AsyncResultCallback<T> callback, @Nullable Handler handler) { in returnResult()
56 final Throwable e, final AsyncResultCallback<?> callback, @Nullable Handler handler) { in throwException()
DAsyncResultCallback.java41 public abstract class AsyncResultCallback<Result> { class
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/euicc/
DEuiccCardTest.java57 import com.android.internal.telephony.uicc.euicc.async.AsyncResultCallback;
72 private static class ResultCaptor<T> extends AsyncResultCallback<T> {