Home
last modified time | relevance | path

Searched refs:profile_id (Results 1 – 25 of 37) sorted by relevance

12

/external/chromium_org/chrome/browser/extensions/api/media_galleries_private/
Dgallery_watch_manager.cc238 void* profile_id) { in GetForProfile() argument
240 DCHECK(profile_id); in GetForProfile()
242 GalleryWatchManager::HasForProfile(profile_id)); in GetForProfile()
246 (*g_gallery_watch_managers)[profile_id] = new GalleryWatchManager; in GetForProfile()
247 return (*g_gallery_watch_managers)[profile_id]; in GetForProfile()
251 bool GalleryWatchManager::HasForProfile(void* profile_id) { in HasForProfile() argument
253 DCHECK(profile_id); in HasForProfile()
257 g_gallery_watch_managers->find(profile_id); in HasForProfile()
262 void GalleryWatchManager::OnProfileShutdown(void* profile_id) { in OnProfileShutdown() argument
264 DCHECK(profile_id); in OnProfileShutdown()
[all …]
Dgallery_watch_manager.h28 static GalleryWatchManager* GetForProfile(void* profile_id);
32 static bool HasForProfile(void* profile_id);
35 static void OnProfileShutdown(void* profile_id);
43 void* profile_id,
52 static void RemoveGalleryWatch(void* profile_id,
57 static void OnExtensionUnloaded(void* profile_id,
Dmedia_galleries_private_api.cc47 void HandleProfileShutdownOnFileThread(void* profile_id) { in HandleProfileShutdownOnFileThread() argument
49 GalleryWatchManager::OnProfileShutdown(profile_id); in HandleProfileShutdownOnFileThread()
/external/bluetooth/bluedroid/btif/src/
Dbluetooth.c332 static const void* get_profile_interface (const char *profile_id) in get_profile_interface() argument
334 ALOGI("get_profile_interface %s", profile_id); in get_profile_interface()
341 if (is_profile(profile_id, BT_PROFILE_HANDSFREE_ID)) in get_profile_interface()
344 if (is_profile(profile_id, BT_PROFILE_HANDSFREE_CLIENT_ID)) in get_profile_interface()
347 if (is_profile(profile_id, BT_PROFILE_SOCKETS_ID)) in get_profile_interface()
350 if (is_profile(profile_id, BT_PROFILE_PAN_ID)) in get_profile_interface()
353 if (is_profile(profile_id, BT_PROFILE_ADVANCED_AUDIO_ID)) in get_profile_interface()
356 if (is_profile(profile_id, BT_PROFILE_ADVANCED_AUDIO_SINK_ID)) in get_profile_interface()
359 if (is_profile(profile_id, BT_PROFILE_HIDHOST_ID)) in get_profile_interface()
362 if (is_profile(profile_id, BT_PROFILE_HEALTH_ID)) in get_profile_interface()
[all …]
/external/chromium_org/ui/message_center/
Dnotifier_settings.cc31 if (profile_id != other.profile_id) in operator ==()
44 if (profile_id != other.profile_id) in operator <()
45 return profile_id < other.profile_id; in operator <()
Dnotification.h96 void set_profile_id(const std::string& profile_id) { in set_profile_id() argument
97 notifier_id_.profile_id = profile_id; in set_profile_id()
/external/chromium_org/chrome/browser/extensions/
Duser_script_listener.cc157 void UserScriptListener::UserScriptsReady(void* profile_id) { in UserScriptsReady() argument
160 profile_data_[profile_id].user_scripts_ready = true; in UserScriptsReady()
164 void UserScriptListener::ProfileDestroyed(void* profile_id) { in ProfileDestroyed() argument
166 profile_data_.erase(profile_id); in ProfileDestroyed()
172 void UserScriptListener::AppendNewURLPatterns(void* profile_id, in AppendNewURLPatterns() argument
178 ProfileData& data = profile_data_[profile_id]; in AppendNewURLPatterns()
185 void UserScriptListener::ReplaceURLPatterns(void* profile_id, in ReplaceURLPatterns() argument
189 ProfileData& data = profile_data_[profile_id]; in ReplaceURLPatterns()
Duser_script_listener.h69 void UserScriptsReady(void* profile_id);
72 void ProfileDestroyed(void* profile_id);
76 void AppendNewURLPatterns(void* profile_id, const URLPatterns& new_patterns);
80 void ReplaceURLPatterns(void* profile_id, const URLPatterns& patterns);
/external/chromium_org/chrome/browser/ui/ash/multi_user/
Dmulti_user_notification_blocker_chromeos_unittest.cc106 const std::string profile_id) { in ShouldShowNotificationAsPopup() argument
108 id_with_profile.profile_id = profile_id; in ShouldShowNotificationAsPopup()
114 const std::string profile_id) { in ShouldShowNotification() argument
116 id_with_profile.profile_id = profile_id; in ShouldShowNotification()
Dmulti_user_notification_blocker_chromeos.cc30 return notifier_id.profile_id == active_user_id_; in ShouldShowNotification()
/external/chromium_org/third_party/boringssl/src/ssl/
Dd1_srtp.c332 uint16_t profile_id; in ssl_parse_clienthello_use_srtp_ext() local
334 if (!CBS_get_u16(&profile_ids, &profile_id)) in ssl_parse_clienthello_use_srtp_ext()
340 if (find_profile_by_num(profile_id, &cprof)) in ssl_parse_clienthello_use_srtp_ext()
407 uint16_t profile_id; in ssl_parse_serverhello_use_srtp_ext() local
420 !CBS_get_u16(&profile_ids, &profile_id) || in ssl_parse_serverhello_use_srtp_ext()
455 if(prof->id == profile_id) in ssl_parse_serverhello_use_srtp_ext()
/external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
Dprivate_api_file_system.cc77 file_manager::EventRouter* GetEventRouterByProfileId(void* profile_id) { in GetEventRouterByProfileId() argument
82 Profile* profile = reinterpret_cast<Profile*>(profile_id); in GetEventRouterByProfileId()
91 void* profile_id, in NotifyCopyProgress() argument
100 GetEventRouterByProfileId(profile_id); in NotifyCopyProgress()
110 void* profile_id, in OnCopyProgress() argument
121 profile_id, *operation_id, type, in OnCopyProgress()
127 void* profile_id, in NotifyCopyCompletion() argument
135 GetEventRouterByProfileId(profile_id); in NotifyCopyCompletion()
145 void* profile_id, in OnCopyCompleted() argument
155 profile_id, *operation_id, in OnCopyCompleted()
[all …]
Dprivate_api_misc.cc85 profile_info->profile_id = multi_user_util::GetUserIDFromProfile(profile); in GetLoggedInProfileInfoList()
407 if (profiles[i]->profile_id == params->profile_id) { in RunSync()
426 params->profile_id); in RunSync()
430 params->profile_id)) { in RunSync()
/external/chromium_org/chrome/browser/chromeos/fileapi/
Dexternal_file_protocol_handler.cc14 ExternalFileProtocolHandler::ExternalFileProtocolHandler(void* profile_id) in ExternalFileProtocolHandler() argument
15 : profile_id_(profile_id) { in ExternalFileProtocolHandler()
Dexternal_file_url_request_job.cc49 URLHelper(void* profile_id, in URLHelper() argument
52 : profile_id_(profile_id), url_(url), callback_(callback) { in URLHelper()
141 void* profile_id, in ExternalFileURLRequestJob() argument
145 profile_id_(profile_id), in ExternalFileURLRequestJob()
Dexternal_file_protocol_handler.h20 explicit ExternalFileProtocolHandler(void* profile_id);
Dexternal_file_url_request_job.h42 ExternalFileURLRequestJob(void* profile_id,
/external/chromium_org/chrome/browser/
Dshell_integration_win.cc71 base::string16 profile_id; in GetProfileIdFromPath() local
72 profile_id.reserve(basenames.size()); in GetProfileIdFromPath()
79 profile_id += basenames[i]; in GetProfileIdFromPath()
82 return profile_id; in GetProfileIdFromPath()
399 const base::string16 profile_id(GetProfileIdFromPath(profile_path)); in GetAppModelIdForProfile() local
400 if (!profile_id.empty()) in GetAppModelIdForProfile()
401 components.push_back(profile_id); in GetAppModelIdForProfile()
/external/chromium_org/extensions/browser/
Dextension_function_dispatcher.cc227 void* profile_id, in DispatchOnIOThread() argument
247 profile_id, in DispatchOnIOThread()
276 static_cast<content::BrowserContext*>(profile_id)); in DispatchOnIOThread()
440 void* profile_id, in CreateExtensionFunction() argument
456 function->set_profile_id(profile_id); in CreateExtensionFunction()
Dextension_function_dispatcher.h86 void* profile_id,
143 void* profile_id,
Dwarning_service.cc86 void* profile_id, in NotifyWarningsOnUI() argument
90 reinterpret_cast<content::BrowserContext*>(profile_id); in NotifyWarningsOnUI()
Dextension_function.h213 void set_profile_id(void* profile_id) { profile_id_ = profile_id; } in set_profile_id() argument
214 void* profile_id() const { return profile_id_; } in profile_id() function
Dwarning_service.h66 static void NotifyWarningsOnUI(void* profile_id, const WarningSet& warnings);
/external/chromium_org/chrome/browser/ui/webui/options/chromeos/
Ddisplay_options_handler.cc458 int profile_id; in HandleSetColorProfile() local
459 if (!base::StringToInt(profile_value, &profile_id)) { in HandleSetColorProfile()
464 if (profile_id < ui::COLOR_PROFILE_STANDARD || in HandleSetColorProfile()
465 profile_id > ui::COLOR_PROFILE_READING) { in HandleSetColorProfile()
466 LOG(ERROR) << "Invalid profile_id: " << profile_id; in HandleSetColorProfile()
471 display_id, static_cast<ui::ColorCalibrationProfile>(profile_id)); in HandleSetColorProfile()
/external/chromium_org/chrome/browser/net/
Dchrome_extensions_network_delegate.cc33 void* profile_id, in NotifyEPMRequestStatus() argument
37 Profile* profile = reinterpret_cast<Profile*>(profile_id); in NotifyEPMRequestStatus()
63 RequestStatus status, net::URLRequest* request, void* profile_id) { in ForwardRequestStatus() argument
77 status, profile_id, process_id, render_frame_id)); in ForwardRequestStatus()

12