Lines Matching refs:date

462      * @param date In millisec since epoch. Use NOW to use the current time.
469 private void insertWithCachedValues(String number, long date, int duration, int type,
471 insert(number, Calls.PRESENTATION_ALLOWED, date, duration, type);
492 * @param date In millisec since epoch. Use NOW to use the current time.
496 private void insert(String number, int presentation, long date, int duration, int type) {
497 insertValues(getValuesToInsert(number, presentation, date, duration, type));
512 * @param date In millisec since epoch. Use NOW to use the current time.
517 long date, int duration, int type) {
522 values[CallLogQuery.DATE] = date == NOW ? new Date().getTime() : date;
537 * @param date In millisec since epoch. Use NOW to use the current time.
540 private void insertVoicemail(String number, int presentation, long date, int duration) {
541 Object[] values = getValuesToInsert(number, presentation, date, duration, Calls.VOICEMAIL_TYPE);
550 * @param date In millisec since epoch. Use NOW to use the current time.
553 private void insertPrivate(long date, int duration) {
554 insert("", Calls.PRESENTATION_RESTRICTED, date, duration, Calls.INCOMING_TYPE);
559 * @param date In millisec since epoch. Use NOW to use the current time.
562 private void insertUnknown(long date, int duration) {
563 insert("", Calls.PRESENTATION_UNKNOWN, date, duration, Calls.INCOMING_TYPE);
568 * @param date In millisec since epoch. Use NOW to use the current time.
571 private void insertCalltoVoicemail(long date, int duration) {
574 insert(mVoicemail, Calls.PRESENTATION_ALLOWED, date, duration, Calls.OUTGOING_TYPE);