HomeSort by relevance Sort by last modified time
    Searched defs:person_id (Results 1 - 3 of 3) sorted by null

  /frameworks/base/telephony/java/com/android/internal/telephony/
CallerInfo.java 96 public long person_id; field in class:CallerInfo
206 // Look for the person_id.
209 info.person_id = cursor.getLong(columnIndex);
210 if (VDBG) Rlog.v(TAG, "==> got info.person_id: " + info.person_id);
212 // No valid columnIndex, so we can't look up person_id.
213 Rlog.w(TAG, "Couldn't find person_id column for " + contactRef);
215 // person_id will be broken (like contact photo lookups in
432 * Returns the column index to use to find the "person_id" field in
437 * a Cursor. Looking up the person_id is nontrivial (compared to al
    [all...]
  /packages/apps/InCallUI/src/com/android/incallui/
CallerInfo.java 94 public long person_id; field in class:CallerInfo
204 // Look for the person_id.
207 info.person_id = cursor.getLong(columnIndex);
208 Log.v(TAG, "==> got info.person_id: " + info.person_id);
210 // No valid columnIndex, so we can't look up person_id.
211 Log.v(TAG, "Couldn't find person_id column for " + contactRef);
213 // person_id will be broken (like contact photo lookups in
429 * Returns the column index to use to find the "person_id" field in
434 * a Cursor. Looking up the person_id is nontrivial (compared to al
    [all...]
  /packages/services/Telephony/src/com/android/phone/
NotificationMgr.java 375 long person_id = cursor.getLong( local
379 + ". id : " + person_id);
381 personUri = ContentUris.withAppendedId(Contacts.CONTENT_URI, person_id);
    [all...]

Completed in 57 milliseconds