Searched refs:Accounts (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Gallery2/src/com/android/photos/data/
H A DPhotoDatabase.java22 import com.android.photos.data.PhotoProvider.Accounts;
43 // Photos.ACCOUNT_ID is a foreign key to Accounts._ID
58 // Albums.ACCOUNT_ID is a foreign key to Accounts._ID
82 { Accounts._ID, "INTEGER PRIMARY KEY AUTOINCREMENT" },
83 { Accounts.ACCOUNT_NAME, "TEXT UNIQUE NOT NULL" },
88 createTable(db, Accounts.TABLE, getAccountTableDefinition());
116 dropTable(db, Accounts.TABLE);
H A DPhotoProvider.java67 * Contains columns that can be accessed via Accounts.CONTENT_URI
69 public static interface Accounts extends BaseColumns { interface in class:PhotoProvider
99 /** Long foreign key to Accounts._ID */
138 /** Long foreign key to Accounts._ID */
266 sUriMatcher.addURI(AUTHORITY, Accounts.TABLE, MATCH_ACCOUNT);
267 // match against Accounts._ID
268 sUriMatcher.addURI(AUTHORITY, Accounts.TABLE + "/#", MATCH_ACCOUNT_ID);
407 table = Accounts.TABLE;
470 return nestWhere(Photos.ACCOUNT_ID, Accounts.TABLE, where);
474 return nestWhere(Albums.ACCOUNT_ID, Accounts
[all...]

Completed in 192 milliseconds