Searched refs:groupCallType (Results 1 – 1 of 1) sorted by relevance
113 int groupCallType = cursor.getInt(CallLogQuery.CALL_TYPE); in addGroups() local155 && areBothNotVoicemail(callType, groupCallType) in addGroups()156 && (areBothNotBlocked(callType, groupCallType) || areBothBlocked(callType, groupCallType)) in addGroups()177 groupCallType = callType; in addGroups()270 private boolean areBothNotVoicemail(int callType, int groupCallType) { in areBothNotVoicemail() argument271 return callType != Calls.VOICEMAIL_TYPE && groupCallType != Calls.VOICEMAIL_TYPE; in areBothNotVoicemail()274 private boolean areBothNotBlocked(int callType, int groupCallType) { in areBothNotBlocked() argument275 return callType != Calls.BLOCKED_TYPE && groupCallType != Calls.BLOCKED_TYPE; in areBothNotBlocked()278 private boolean areBothBlocked(int callType, int groupCallType) { in areBothBlocked() argument279 return callType == Calls.BLOCKED_TYPE && groupCallType == Calls.BLOCKED_TYPE; in areBothBlocked()