Searched refs:ssData (Results 1 – 2 of 2) sorted by relevance
706 SsData ssData = new SsData(); in onSupplementaryServiceIndication() local708 ssData.serviceType = ssData.ServiceTypeFromRILInt(ss.serviceType); in onSupplementaryServiceIndication()709 ssData.requestType = ssData.RequestTypeFromRILInt(ss.requestType); in onSupplementaryServiceIndication()710 ssData.teleserviceType = ssData.TeleserviceTypeFromRILInt(ss.teleserviceType); in onSupplementaryServiceIndication()711 ssData.serviceClass = ss.serviceClass; // This is service class sent in the SS request. in onSupplementaryServiceIndication()712 ssData.result = ss.result; // This is the result of the SS request. in onSupplementaryServiceIndication()714 if (ssData.serviceType.isTypeCF() && in onSupplementaryServiceIndication()715 ssData.requestType.isTypeInterrogation()) { in onSupplementaryServiceIndication()718 ssData.cfInfo = new CallForwardInfo[num]; in onSupplementaryServiceIndication()722 ssData.cfInfo[i] = new CallForwardInfo(); in onSupplementaryServiceIndication()[all …]
326 SsData ssData = (SsData)data.result; in processSsData() local327 parseSsData(ssData); in processSsData()335 void parseSsData(SsData ssData) { in parseSsData() argument338 ex = CommandException.fromRilErrno(ssData.result); in parseSsData()339 mSc = getScStringFromScType(ssData.serviceType); in parseSsData()340 mAction = getActionStringFromReqType(ssData.requestType); in parseSsData()343 switch (ssData.requestType) { in parseSsData()348 if ((ssData.result == RILConstants.SUCCESS) && in parseSsData()349 ssData.serviceType.isTypeUnConditional()) { in parseSsData()355 boolean cffEnabled = ((ssData.requestType == SsData.RequestType.SS_ACTIVATION || in parseSsData()[all …]