Searched refs:groupCallType (Results 1 – 1 of 1) sorted by relevance
112 int groupCallType = cursor.getInt(CallLogQuery.CALL_TYPE); in addGroups() local154 && areBothNotVoicemail(callType, groupCallType) in addGroups()155 && (areBothNotBlocked(callType, groupCallType) || areBothBlocked(callType, groupCallType)) in addGroups()176 groupCallType = callType; in addGroups()269 private boolean areBothNotVoicemail(int callType, int groupCallType) { in areBothNotVoicemail() argument270 return callType != Calls.VOICEMAIL_TYPE && groupCallType != Calls.VOICEMAIL_TYPE; in areBothNotVoicemail()273 private boolean areBothNotBlocked(int callType, int groupCallType) { in areBothNotBlocked() argument274 return callType != Calls.BLOCKED_TYPE && groupCallType != Calls.BLOCKED_TYPE; in areBothNotBlocked()277 private boolean areBothBlocked(int callType, int groupCallType) { in areBothBlocked() argument278 return callType == Calls.BLOCKED_TYPE && groupCallType == Calls.BLOCKED_TYPE; in areBothBlocked()