Lines Matching refs:date

463      * @param date In millisec since epoch. Use NOW to use the current time.
470 private void insertWithCachedValues(String number, long date, int duration, int type,
472 insert(number, date, duration, type);
492 * @param date In millisec since epoch. Use NOW to use the current time.
496 private void insert(String number, long date, int duration, int type) {
497 insertValues(getValuesToInsert(number, date, duration, type));
511 * @param date In millisec since epoch. Use NOW to use the current time.
515 private Object[] getValuesToInsert(String number, long date, int duration, int type) {
519 values[CallLogQuery.DATE] = date == NOW ? new Date().getTime() : date;
534 * @param date In millisec since epoch. Use NOW to use the current time.
537 private void insertVoicemail(String number, long date, int duration) {
538 Object[] values = getValuesToInsert(number, date, duration, Calls.VOICEMAIL_TYPE);
547 * @param date In millisec since epoch. Use NOW to use the current time.
550 private void insertPrivate(long date, int duration) {
551 insert(CallerInfo.PRIVATE_NUMBER, date, duration, Calls.INCOMING_TYPE);
556 * @param date In millisec since epoch. Use NOW to use the current time.
559 private void insertUnknown(long date, int duration) {
560 insert(CallerInfo.UNKNOWN_NUMBER, date, duration, Calls.INCOMING_TYPE);
565 * @param date In millisec since epoch. Use NOW to use the current time.
568 private void insertCalltoVoicemail(long date, int duration) {
571 insert(mVoicemail, date, duration, Calls.OUTGOING_TYPE);