Home
last modified time | relevance | path

Searched refs:thread_id (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Messaging/tools/messagegen/
Dfillsms195 thread_id=$(( $TABLE_THREADS_START_ID + $i ))
196 …cipient_ids,snippet,snippet_cs,read,type,error,has_attachment) values ($thread_id, $timestamp, $sm…
207 …d,address,person,date,status,type,body,read,seen) values ($message_id, $thread_id, '$phone', '$pho…
230 …,m_size,pri,rr,tr_id,d_rpt,locked,seen,text_only) values ($message_id, $thread_id, $date, 0, $mess…
232 …s,m_type,v,m_size,pri,rr,tr_id,d_rpt,locked,seen) values ($message_id, $thread_id, $date, $message…
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/
DMmsSmsDatabaseHelper.java390 public static void updateThread(SQLiteDatabase db, long thread_id) { in updateThread() argument
391 if (thread_id < 0) { in updateThread()
395 updateThreads(db, "(thread_id = ?)", new String[]{ String.valueOf(thread_id) }); in updateThread()
506 int thread_id = -1; in deleteOneSms() local
512 thread_id = c.getInt(0); in deleteOneSms()
519 if (thread_id > 0) { in deleteOneSms()
521 updateThread(db, thread_id); in deleteOneSms()