Home | History | Annotate | Download | only in browser

Lines Matching full:profile

37     // Default to zero. In the case no profile is set up, the initial
39 // creates a profile. Otherwise, we'll read the ID of the last used
40 // profile from the prefs db.
87 // Read the last active AutoFill profile id.
92 // Load the autofill profile data from the database. We use a database separate
95 // is extremely slow. We do this to ensure that if there's a profile set, the
130 // At this point we've loaded the profile if there was one, so let any thread
137 // to actually setting the inferred profile.
139 // We did not load a profile from disk. Try to infer one from the user's
141 final Uri profileUri = Uri.withAppendedPath(ContactsContract.Profile.CONTENT_URI,
146 // Only attempt to read other data and set a profile if we could successfully
165 // Only use this profile if one hasn't been set inbetween the
198 public synchronized void setAutoFillProfile(AutoFillProfile profile, Message msg) {
201 if (profile != null) {
202 profileId = profile.getUniqueId();
203 // Update the AutoFill DB with the new profile.
204 new SaveProfileToDbTask(msg).execute(profile);
206 // Delete the current profile.
213 // which will expect a new profile to be set
214 mAutoFillProfile = profile;