Home | History | Annotate | Download | only in telephony

Lines Matching defs:msgBox

214     private void constructQueryForBox(SQLiteQueryBuilder qb, int msgBox) {
217 if (msgBox != Mms.MESSAGE_BOX_ALL) {
218 qb.appendWhere(Mms.MESSAGE_BOX + "=" + msgBox);
268 int msgBox = Mms.MESSAGE_BOX_ALL;
281 msgBox = (Integer) msgBoxObj;
285 msgBox = Mms.MESSAGE_BOX_INBOX;
289 msgBox = Mms.MESSAGE_BOX_INBOX;
292 msgBox = Mms.MESSAGE_BOX_SENT;
295 msgBox = Mms.MESSAGE_BOX_DRAFTS;
298 msgBox = Mms.MESSAGE_BOX_OUTBOX;
343 if (addMsgBox && (msgBox != Mms.MESSAGE_BOX_ALL)) {
344 finalValues.put(Mms.MESSAGE_BOX, msgBox);
347 if (msgBox != Mms.MESSAGE_BOX_INBOX) {
555 int msgBox = getMessageBoxByMatch(match);
556 extraSelection = Mms.MESSAGE_BOX + "=" + msgBox;