/frameworks/opt/net/voip/src/java/android/net/sip/ |
SipProfile.java | 36 * Defines a SIP profile, including a SIP account, domain and server information. 96 * Creates a builder based on the given profile. 98 public Builder(SipProfile profile) { 99 if (profile == null) throw new NullPointerException(); 101 mProfile = (SipProfile) profile.clone(); 106 mUri = profile.getUri(); 107 mUri.setUserPassword(profile.getPassword()); 108 mDisplayName = profile.getDisplayName(); 109 mProxyAddress = profile.getProxyAddress(); 110 mProfile.mPort = profile.getPort() [all...] |
/packages/services/Telephony/src/com/android/phone/sip/ |
SipSettings.java | 59 * The PreferenceActivity class for managing sip profile preferences. 80 private SipProfile mProfile; // profile that's being edited 112 Log.v(TAG, "profile uid is " + profileUid + " isPrimary:" 193 Log.v(TAG, "Removed Profile:" + mProfile.getProfileName()); 197 SipProfile profile = intent.getParcelableExtra(KEY_SIP_PROFILE); local 199 Log.v(TAG, "New Profile Name:" + profile.getProfileName()); 200 addProfile(profile); 204 Log.v(TAG, "Can not handle the profile : " + e.getMessage()); 281 private String getProfileName(SipProfile profile) { 325 SipProfile profile = getProfileFromList(activeProfile); local [all...] |
/cts/tests/tests/permission/src/android/permission/cts/ |
ContactsProviderTest.java | 71 * Verifies that query(ContactsContract.Profile.CONTENT_URI) requires 79 getContext().getContentResolver().query(ContactsContract.Profile.CONTENT_URI, 81 fail("query(ContactsContract.Profile.CONTENT_URI) did not throw SecurityException" 89 * Verifies that insert(ContactsContract.Profile.CONTENT_URI) requires 99 getContext().getContentResolver().insert(ContactsContract.Profile.CONTENT_URI, 101 fail("insert(ContactsContract.Profile.CONTENT_URI) did not throw SecurityException " 109 * Verifies that update(ContactsContract.Profile.CONTENT_URI) requires 117 getContext().getContentResolver().update(ContactsContract.Profile.CONTENT_URI, 119 fail("update(ContactsContract.Profile.CONTENT_URI) did not throw SecurityException"
|
/external/chromium/chrome/browser/chromeos/notifications/ |
balloon_collection_impl.cc | 41 Profile* profile) { 42 Balloon* new_balloon = MakeBalloon(notification, profile); 68 Profile* profile, 72 Balloon* new_balloon = new Balloon(notification, profile, this); 158 Profile* profile) { 159 Balloon* new_balloon = new Balloon(notification, profile, this);
|
/external/chromium/chrome/browser/chromeos/ |
sim_dialog_delegate.cc | 42 HtmlDialogWithoutContextMenuView(Profile* profile, 44 : HtmlDialogView(profile, delegate) {} 60 Profile* profile; local 64 profile = browser->profile(); 66 profile = ProfileManager::GetDefaultProfile(); 69 profile, new SimDialogDelegate(mode));
|
/external/chromium/chrome/browser/extensions/ |
extension_history_api.h | 26 void ObserveProfile(Profile* profile); 39 void HistoryUrlVisited(Profile* profile, 42 void HistoryUrlsRemoved(Profile* profile, 45 void DispatchEvent(Profile* profile, 53 typedef std::map<uintptr_t, Profile*> ProfileMap;
|
/external/chromium/chrome/browser/prefs/ |
session_startup_pref.cc | 15 #include "chrome/browser/profiles/profile.h" 55 Profile* profile, 57 DCHECK(profile); 58 SetStartupPref(profile->GetPrefs(), pref); 85 SessionStartupPref SessionStartupPref::GetStartupPref(Profile* profile) { 86 DCHECK(profile); 87 return GetStartupPref(profile->GetPrefs());
|
/external/chromium/chrome/browser/tabs/ |
pinned_tab_codec.cc | 10 #include "chrome/browser/profiles/profile.h" 96 void PinnedTabCodec::WritePinnedTabs(Profile* profile) { 97 PrefService* prefs = profile->GetPrefs(); 106 browser->profile() == profile && HasPinnedTabs(browser)) { 115 std::vector<Tab> PinnedTabCodec::ReadPinnedTabs(Profile* profile) { 118 PrefService* prefs = profile->GetPrefs();
|
/external/chromium/chrome/browser/ui/gtk/ |
constrained_html_delegate_gtk.cc | 22 ConstrainedHtmlDelegateGtk(Profile* profile, 67 Profile* profile, 69 : HtmlDialogTabContentsDelegate(profile), 70 tab_(new TabContents(profile, NULL, MSG_ROUTING_NONE, NULL, NULL)), 108 Profile* profile, 112 new ConstrainedHtmlDelegateGtk(profile, delegate);
|
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/ |
NewTabPagePrefs.java | 8 import org.chromium.chrome.browser.profiles.Profile; 17 * Initialize this class with the given profile. 18 * @param profile Profile that will be used for syncing. 20 public NewTabPagePrefs(Profile profile) { 21 mNativeNewTabPagePrefs = nativeInit(profile); 100 private static native long nativeInit(Profile profile);
|
RecentlyClosedBridge.java | 8 import org.chromium.chrome.browser.profiles.Profile; 56 * Initializes this class with the given profile. 57 * @param profile The Profile whose recently closed tabs will be queried. 59 public RecentlyClosedBridge(Profile profile) { 60 mNativeRecentlyClosedTabsBridge = nativeInit(profile); 115 private native long nativeInit(Profile profile);
|
/external/chromium_org/chrome/browser/chromeos/input_method/ |
input_method_persistence.cc | 14 #include "chrome/browser/profiles/profile.h" 41 Profile* const profile = ProfileManager::GetDefaultProfile(); local 43 if (profile == NULL) 49 const std::string username = profile->GetProfileName(); 87 Profile* profile = ProfileManager::GetDefaultProfile(); local 88 if (profile) 89 user_prefs = profile->GetPrefs();
|
/external/chromium_org/chrome/browser/content_settings/ |
content_settings_internal_extension_provider.cc | 37 Profile* profile = extension_service->profile(); local 39 content::Source<Profile>(profile)); 41 content::Source<Profile>(profile)); 43 content::Source<Profile>(profile));
|
/external/chromium_org/chrome/browser/extensions/api/runtime/ |
runtime_api.h | 17 class Profile; 85 Profile* profile, 90 static void DispatchOnBrowserUpdateAvailableEvent(Profile* profile); 94 Profile* profile, 99 static void OnExtensionUninstalled(Profile* profile,
|
/external/chromium_org/chrome/browser/prefs/ |
pref_metrics_service.h | 16 #include "chrome/browser/profiles/profile.h" 30 explicit PrefMetricsService(Profile* profile); 36 static PrefMetricsService* GetForProfile(Profile* profile); 45 content::BrowserContext* profile) const OVERRIDE; 63 PrefMetricsService(Profile* profile, 116 Profile* profile_;
|
/external/chromium_org/chrome/browser/resources/options/ |
browser_options_profile_list.js | 11 * Creates a new profile list item. 12 * @param {Object} profileInfo The profile this item respresents. 24 * Decorates an element as a profile list item. 36 * @type {string} the file path of this profile list item. 43 * @type {boolean} whether this profile is managed. 56 iconEl.className = 'profile-img'; 61 nameEl.className = 'profile-name'; 63 nameEl.classList.add('profile-item-current'); 105 // Don't allow the user to edit a profile that is not current.
|
/external/chromium_org/chrome/browser/search_engines/ |
template_url_service_factory.cc | 20 TemplateURLService* TemplateURLServiceFactory::GetForProfile(Profile* profile) { 22 GetInstance()->GetServiceForBrowserContext(profile, true)); 32 content::BrowserContext* profile) { 33 return new TemplateURLService(static_cast<Profile*>(profile)); 48 content::BrowserContext* profile) const { 49 return BuildInstanceFor(static_cast<Profile*>(profile));
|
/external/chromium_org/chrome/browser/sync/test/integration/ |
extension_settings_helper.cc | 15 #include "chrome/browser/profiles/profile.h" 48 Profile* profile, const std::string& id) { 51 profile->GetExtensionService()->settings_frontend()->RunWithStorage( 59 bool AreSettingsSame(Profile* expected_profile, Profile* actual_profile) { 95 Profile* profile, const std::string& id, const DictionaryValue& settings) { 97 profile->GetExtensionService()->settings_frontend()->RunWithStorage(
|
/external/chromium_org/chrome/browser/thumbnails/ |
thumbnail_service_unittest.cc | 18 explicit MockTopSites(Profile* profile) 19 : history::TopSitesImpl(profile), 83 // Set up the mock profile along with mock top sites. 86 MockProfile profile; local 89 new thumbnails::ThumbnailServiceImpl(&profile)); 103 profile.AddKnownURL(kGoodURL, bad_score); 104 ASSERT_TRUE(profile.GetTopSites()->IsNonForcedFull()); 121 profile.AddKnownURL(kGoodURL, good_score);
|
/external/chromium_org/chrome/browser/ui/ash/launcher/ |
launcher_context_menu_unittest.cc | 14 #include "chrome/browser/profiles/profile.h" 21 TestChromeLauncherController(Profile* profile, ash::ShelfModel* model) 22 : ChromeLauncherController(profile, model) {} 43 new TestChromeLauncherController(profile(), &shelf_model_)); 59 Profile* profile() { return profile_.get(); } function in class:LauncherContextMenuTest 82 IncognitoModePrefs::SetAvailability(profile()->GetPrefs(), 104 IncognitoModePrefs::SetAvailability(profile()->GetPrefs(),
|
/external/chromium_org/chrome/browser/ui/bookmarks/ |
bookmark_browsertest.cc | 15 #include "chrome/browser/profiles/profile.h" 58 BookmarkModel* WaitForBookmarkModel(Profile* profile) { 60 BookmarkModelFactory::GetForProfile(profile); 81 BookmarkModel* bookmark_model = WaitForBookmarkModel(browser()->profile()); 89 BookmarkModel* bookmark_model = WaitForBookmarkModel(browser()->profile()); 99 #if !defined(OS_CHROMEOS) // No multi-profile on ChromeOS. 107 BookmarkModel* bookmark_model1 = WaitForBookmarkModel(browser()->profile()); 114 BookmarkModel* bookmark_model2 = WaitForBookmarkModel(browser2->profile());
|
/external/chromium_org/chrome/browser/ui/ |
browser_close_browsertest.cc | 15 #include "chrome/browser/profiles/profile.h" 69 // We always probe a window in profile A. 86 // Create a second profile to work within multi-profile. 87 Profile* CreateSecondProfile() { 94 Profile* second_profile = 123 BrowserContext::GetDownloadManager(browser->profile()); 147 // Go through and, for every single profile, wait until there are 149 std::vector<Profile*> profiles( 151 for (std::vector<Profile*>::const_iterator pit = profiles.begin() [all...] |
/external/chromium_org/chrome/browser/ui/gtk/ |
first_run_dialog.cc | 39 bool ShowFirstRunDialog(Profile* profile) { 40 return FirstRunDialog::Show(profile); 46 bool FirstRunDialog::Show(Profile* profile) { 58 new FirstRunDialog(profile); 72 FirstRunDialog::FirstRunDialog(Profile* profile) 73 : profile_(profile),
|
/external/chromium_org/chrome/browser/ui/search/ |
instant_search_prerenderer.cc | 11 #include "chrome/browser/profiles/profile.h" 28 InstantSearchPrerenderer::InstantSearchPrerenderer(Profile* profile, 30 : profile_(profile), 41 Profile* profile) { 42 DCHECK(profile); 44 InstantServiceFactory::GetForProfile(profile); 51 // TODO(kmadhusu): Enable Instant for Incognito profile.
|
/external/chromium_org/chrome/browser/ui/tabs/ |
pinned_tab_service.cc | 8 #include "chrome/browser/profiles/profile.h" 17 // profile (across all desktops). 21 it->profile() == browser->profile()) { 30 PinnedTabService::PinnedTabService(Profile* profile) 31 : profile_(profile), 68 browser->profile() == profile_) { 83 browser->profile() == profile_) {
|