OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ProfileDatabaseHelper
(Results
1 - 5
of
5
) sorted by null
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
SynchronousProfileProvider.java
28
private static
ProfileDatabaseHelper
sDbHelper;
35
protected
ProfileDatabaseHelper
getDatabaseHelper(final Context context) {
37
sDbHelper =
ProfileDatabaseHelper
.getNewInstanceForTest(context);
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
ProfileDatabaseHelper.java
29
public class
ProfileDatabaseHelper
extends ContactsDatabaseHelper {
30
private static final String TAG = "
ProfileDatabaseHelper
";
39
private static
ProfileDatabaseHelper
sSingleton = null;
45
public static
ProfileDatabaseHelper
getNewInstanceForTest(Context context) {
46
return new
ProfileDatabaseHelper
(context, null, false);
49
private
ProfileDatabaseHelper
(
54
public static synchronized
ProfileDatabaseHelper
getInstance(Context context) {
56
sSingleton = new
ProfileDatabaseHelper
(context, DATABASE_NAME, true);
ContactsUpgradeReceiver.java
84
ProfileDatabaseHelper
profileHelper =
ProfileDatabaseHelper
.getInstance(context);
ProfileProvider.java
51
protected
ProfileDatabaseHelper
getDatabaseHelper(Context context) {
52
return
ProfileDatabaseHelper
.getInstance(context);
ContactsProvider2.java
450
// map) is in the profile ID-space (see {@link
ProfileDatabaseHelper
#PROFILE_ID_SPACE}).
[
all
...]
Completed in 473 milliseconds