Lines Matching refs:reqInfo
1158 void RilInterfaceTest::InputTransmitApduChannelParam(ApduSimIORequestInfo &reqInfo)
1161 cin >> reqInfo.channelId;
1163 cin >> reqInfo.type;
1165 cin >> reqInfo.instruction;
1167 cin >> reqInfo.p1;
1169 cin >> reqInfo.p2;
1171 cin >> reqInfo.p3;
1177 ApduSimIORequestInfo reqInfo = ApduSimIORequestInfo();
1178 InputTransmitApduChannelParam(reqInfo);
1179 int32_t ret = g_rilInterface->SimTransmitApduLogicalChannel(slotId, GetSerialId(), reqInfo);
1186 ApduSimIORequestInfo reqInfo = ApduSimIORequestInfo();
1187 InputTransmitApduChannelParam(reqInfo);
1188 int32_t ret = g_rilInterface->SimTransmitApduBasicChannel(slotId, GetSerialId(), reqInfo);
1195 SimAuthenticationRequestInfo reqInfo = SimAuthenticationRequestInfo();
1199 cin >> reqInfo.serial;
1204 cin >> reqInfo.aid;
1206 cin >> reqInfo.authData;
1207 int32_t ret = g_rilInterface->SimAuthentication(slotId, GetSerialId(), reqInfo);
1214 NcfgOperatorInfo reqInfo = NcfgOperatorInfo();
1216 cin >> reqInfo.operName;
1218 cin >> reqInfo.operKey;
1220 cin >> reqInfo.state;
1222 cin >> reqInfo.reserve;
1223 int32_t ret = g_rilInterface->SendSimMatchedOperatorInfo(slotId, GetSerialId(), reqInfo);