Lines Matching refs:aid

298         String aid = "2345";
299 mRILUnderTest.supplyIccPinForApp(pin, aid, obtainMessage());
300 verify(mRadioProxy).supplyIccPinForApp(mSerialNumberCaptor.capture(), eq(pin), eq(aid));
309 String aid = "2345";
310 mRILUnderTest.supplyIccPukForApp(puk, newPin, aid, obtainMessage());
312 .supplyIccPukForApp(mSerialNumberCaptor.capture(), eq(puk), eq(newPin), eq(aid));
320 String aid = "2345";
321 mRILUnderTest.supplyIccPin2ForApp(pin, aid, obtainMessage());
323 mSerialNumberCaptor.capture(), eq(pin), eq(aid));
333 String aid = "2345";
334 mRILUnderTest.supplyIccPuk2ForApp(puk, newPin, aid, obtainMessage());
336 .supplyIccPuk2ForApp(mSerialNumberCaptor.capture(), eq(puk), eq(newPin), eq(aid));
346 String aid = "2345";
347 mRILUnderTest.changeIccPinForApp(oldPin, newPin, aid, obtainMessage());
349 mSerialNumberCaptor.capture(), eq(oldPin), eq(newPin), eq(aid));
359 String aid = "2345";
360 mRILUnderTest.changeIccPin2ForApp(oldPin2, newPin2, aid, obtainMessage());
362 mSerialNumberCaptor.capture(), eq(oldPin2), eq(newPin2), eq(aid));
392 String aid = "1234";
393 mRILUnderTest.getIMSIForApp(aid, obtainMessage());
394 verify(mRadioProxy).getImsiForApp(mSerialNumberCaptor.capture(), eq(aid));
803 String aid = "aid";
805 mRILUnderTest.iccOpenLogicalChannel(aid, p2, obtainMessage());
806 verify(mRadioProxy).iccOpenLogicalChannel(mSerialNumberCaptor.capture(), eq(aid), eq(p2));
884 String aid = "aid";
885 mRILUnderTest.requestIccSimAuthentication(authContext, data, aid, obtainMessage());
887 mSerialNumberCaptor.capture(), eq(authContext), eq(data), eq(aid));