Searched refs:AsyncResultCallback (Results 1 – 8 of 8) sorted by relevance
/frameworks/opt/telephony/src/java/com/android/internal/telephony/euicc/ |
D | EuiccCardController.java | 47 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/ |
D | ApduSender.java | 26 import com.android.internal.telephony.uicc.euicc.async.AsyncResultCallback; 105 mOpenChannel.invoke(mAid, new AsyncResultCallback<IccOpenLogicalChannelResponse>() { in send() 153 mTransmitApdu.invoke(command, new AsyncResultCallback<IccIoResult>() { in sendCommand() 159 new AsyncResultCallback<IccIoResult>() { in sendCommand() 200 AsyncResultCallback<IccIoResult> resultCallback, in getCompleteResponse() 220 new AsyncResultCallback<IccIoResult>() { in getCompleteResponse() 243 mCloseChannel.invoke(channel, new AsyncResultCallback<Boolean>() { in closeAndReturn()
|
D | ApduSenderResultCallback.java | 20 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/ |
D | EuiccCard.java | 54 import com.android.internal.telephony.uicc.euicc.async.AsyncResultCallback; 171 AsyncResultCallback<String> cardCb = new AsyncResultCallback<String>() { in loadEidAndNotifyRegistrants() 197 public void getSpecVersion(AsyncResultCallback<EuiccSpecVersion> callback, Handler handler) { in getSpecVersion() 233 public void getAllProfiles(AsyncResultCallback<EuiccProfileInfo[]> callback, Handler handler) { in getAllProfiles() 272 public final void getProfile(String iccid, AsyncResultCallback<EuiccProfileInfo> callback, in getProfile() 308 public void disableProfile(String iccid, boolean refresh, AsyncResultCallback<Void> callback, in disableProfile() 347 public void switchToProfile(String iccid, boolean refresh, AsyncResultCallback<Void> callback, in switchToProfile() 392 public void getEid(AsyncResultCallback<String> callback, Handler handler) { in getEid() 421 public void setNickname(String iccid, String nickname, AsyncResultCallback<Void> callback, in setNickname() 449 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/ |
D | AsyncMessageInvocation.java | 45 Request request, AsyncResultCallback<Response> resultCallback, Handler handler) { in invoke() 54 AsyncResultCallback<Response> resultCallback = in handleMessage() 55 (AsyncResultCallback<Response>) result.userObj; in handleMessage()
|
D | AsyncResultHelper.java | 36 final T result, final AsyncResultCallback<T> callback, @Nullable Handler handler) { in returnResult() 56 final Throwable e, final AsyncResultCallback<?> callback, @Nullable Handler handler) { in throwException()
|
D | AsyncResultCallback.java | 41 public abstract class AsyncResultCallback<Result> { class
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/euicc/ |
D | EuiccCardTest.java | 53 import com.android.internal.telephony.uicc.euicc.async.AsyncResultCallback; 67 private static class ResultCaptor<T> extends AsyncResultCallback<T> {
|