Searched refs:client_id (Results 76 - 100 of 264) sorted by path

1234567891011

/external/chromium_org/components/policy/core/common/cloud/
H A Dcloud_policy_client.cc79 const std::string& client_id) {
81 DCHECK(!client_id.empty());
85 client_id_ = client_id;
94 const std::string& client_id,
102 if (client_id.empty()) {
108 client_id_ = client_id;
119 if (!client_id.empty())
78 SetupRegistration(const std::string& dm_token, const std::string& client_id) argument
92 Register(em::DeviceRegisterRequest::Type type, const std::string& auth_token, const std::string& client_id, bool is_auto_enrollement, const std::string& requisition, const std::string& current_state_key) argument
H A Dcloud_policy_client.h107 const std::string& client_id);
114 const std::string& client_id,
186 const std::string& client_id() const { return client_id_; } function in class:policy::CloudPolicyClient
H A Ddevice_management_service.cc375 void DeviceManagementRequestJob::SetClientID(const std::string& client_id) { argument
376 AddParameter(dm_protocol::kParamDeviceID, client_id);
H A Ddevice_management_service.h62 void SetClientID(const std::string& client_id);
H A Dmock_device_management_service.h61 const std::string& client_id,
/external/chromium_org/components/signin/ios/browser/
H A Dprofile_oauth2_token_service_ios.h37 const std::string& client_id,
/external/chromium_org/components/sync_driver/
H A Ddevice_info_sync_service.cc172 const std::string& client_id = local
175 if (local_device_id == client_id) {
182 DeleteSyncData(client_id);
186 StoreSyncData(client_id, sync_data);
200 const std::string& client_id) const {
201 SyncDataMap::const_iterator iter = all_data_.find(client_id);
325 void DeviceInfoSyncService::StoreSyncData(const std::string& client_id, argument
329 << " with ID " << client_id;
330 all_data_[client_id] = sync_data;
333 void DeviceInfoSyncService::DeleteSyncData(const std::string& client_id) { argument
[all...]
H A Ddevice_info_sync_service.h42 const std::string& client_id) const OVERRIDE;
62 void StoreSyncData(const std::string& client_id,
65 void DeleteSyncData(const std::string& client_id);
H A Ddevice_info_tracker.h26 // Returns an empty scoped_ptr if device with the given |client_id| hasn't
29 const std::string& client_id) const = 0;
/external/chromium_org/content/browser/appcache/
H A Dappcache_host_unittest.cc99 virtual void NotifyStorageAccessed(storage::QuotaClient::ID client_id,
102 virtual void NotifyStorageModified(storage::QuotaClient::ID client_id,
106 virtual void SetUsageCacheEnabled(storage::QuotaClient::ID client_id,
H A Dappcache_storage_impl_unittest.cc301 virtual void NotifyStorageAccessed(storage::QuotaClient::ID client_id,
304 EXPECT_EQ(storage::QuotaClient::kAppcache, client_id);
310 virtual void NotifyStorageModified(storage::QuotaClient::ID client_id,
314 EXPECT_EQ(storage::QuotaClient::kAppcache, client_id);
325 virtual void SetUsageCacheEnabled(storage::QuotaClient::ID client_id,
/external/chromium_org/content/browser/
H A Ddatabase_tracker_unittest.cc111 virtual void NotifyStorageAccessed(storage::QuotaClient::ID client_id,
114 EXPECT_EQ(storage::QuotaClient::kDatabase, client_id);
119 virtual void NotifyStorageModified(storage::QuotaClient::ID client_id,
123 EXPECT_EQ(storage::QuotaClient::kDatabase, client_id);
132 virtual void SetUsageCacheEnabled(storage::QuotaClient::ID client_id,
/external/chromium_org/content/browser/devtools/
H A Drenderer_overrides_handler.cc776 const std::string& client_id,
780 usage_item->SetString(devtools::Page::UsageItem::kParamId, client_id);
774 DidGetHostUsage( base::ListValue* list, const std::string& client_id, const base::Closure& barrier, int64 value) argument
/external/chromium_org/content/browser/gpu/
H A Dbrowser_gpu_channel_host_factory.cc48 int client_id)
54 client_id(client_id) {}
61 int client_id; member in struct:content::BrowserGpuChannelHostFactory::AllocateGpuMemoryBufferRequest
464 request->client_id,
44 AllocateGpuMemoryBufferRequest(size_t width, size_t height, unsigned internalformat, unsigned usage, int client_id) argument
H A Dgpu_process_host.cc598 int client_id,
613 client_id, share_context, allow_future_sync_points))) {
622 CreateChannelCache(client_id);
629 int client_id,
639 compositing_surface, surface_id, client_id, init_params, route_id))) {
1037 void GpuProcessHost::CreateChannelCache(int32 client_id) { argument
1041 ShaderCacheFactory::GetInstance()->Get(client_id);
1047 client_id_to_shader_cache_[client_id] = cache;
1050 void GpuProcessHost::OnDestroyChannel(int32 client_id) { argument
1052 client_id_to_shader_cache_.erase(client_id);
597 EstablishGpuChannel( int client_id, bool share_context, bool allow_future_sync_points, const EstablishChannelCallback& callback) argument
626 CreateViewCommandBuffer( const gfx::GLSurfaceHandle& compositing_surface, int surface_id, int client_id, const GPUCreateCommandBufferConfig& init_params, int route_id, const CreateCommandBufferCallback& callback) argument
1055 OnCacheShader(int32 client_id, const std::string& key, const std::string& shader) argument
[all...]
H A Dgpu_process_host.h109 void EstablishGpuChannel(int client_id,
119 int client_id,
180 void CreateChannelCache(int32 client_id);
181 void OnDestroyChannel(int32 client_id);
182 void OnCacheShader(int32 client_id, const std::string& key,
H A Dshader_disk_cache.cc429 void ShaderCacheFactory::SetCacheInfo(int32 client_id, argument
431 client_id_to_path_map_[client_id] = path;
434 void ShaderCacheFactory::RemoveCacheInfo(int32 client_id) { argument
435 client_id_to_path_map_.erase(client_id);
438 scoped_refptr<ShaderDiskCache> ShaderCacheFactory::Get(int32 client_id) { argument
440 client_id_to_path_map_.find(client_id);
H A Dshader_disk_cache.h113 // Retrieve the shader disk cache for the provided |client_id|.
114 scoped_refptr<ShaderDiskCache> Get(int32 client_id);
116 // Set the |path| to be used for the disk cache for |client_id|.
117 void SetCacheInfo(int32 client_id, const base::FilePath& path);
119 // Remove the path mapping for |client_id|.
120 void RemoveCacheInfo(int32 client_id);
/external/chromium_org/content/browser/loader/
H A Dresource_scheduler.cc119 ScheduledResourceRequest(const ClientId& client_id, argument
124 client_id_(client_id),
155 const ClientId& client_id() const { return client_id_; } function in class:content::ResourceScheduler::ScheduledResourceRequest
750 ClientId client_id = MakeClientId(child_id, route_id); local
752 new ScheduledResourceRequest(client_id, url_request, this,
755 ClientMap::iterator it = client_map_.find(client_id);
778 ClientMap::iterator client_it = client_map_.find(request->client_id());
791 ClientId client_id = MakeClientId(child_id, route_id); local
792 DCHECK(!ContainsKey(client_map_, client_id));
795 client_map_[client_id]
804 ClientId client_id = MakeClientId(child_id, route_id); local
842 ClientId client_id = MakeClientId(child_id, route_id); local
856 ClientId client_id = MakeClientId(child_id, route_id); local
872 ClientId client_id = MakeClientId(child_id, route_id); local
899 ClientId client_id = MakeClientId(child_id, route_id); local
[all...]
/external/chromium_org/content/browser/media/
H A Dmidi_host.cc81 void MidiHost::OnStartSession(int client_id) { argument
83 midi_manager_->StartSession(this, client_id);
120 void MidiHost::CompleteStartSession(int client_id, media::MidiResult result) { argument
135 Send(new MidiMsg_SessionStarted(client_id,
H A Dmidi_host.h38 virtual void CompleteStartSession(int client_id,
47 void OnStartSession(int client_id);
/external/chromium_org/content/browser/quota/
H A Dmock_quota_manager_proxy.cc40 QuotaClient::ID client_id, const GURL& origin, StorageType type) {
47 QuotaClient::ID client_id, const GURL& origin,
39 NotifyStorageAccessed( QuotaClient::ID client_id, const GURL& origin, StorageType type) argument
46 NotifyStorageModified( QuotaClient::ID client_id, const GURL& origin, StorageType type, int64 delta) argument
H A Dmock_quota_manager_proxy.h33 virtual void SetUsageCacheEnabled(QuotaClient::ID client_id,
43 // Validates the |client_id| and updates the internal access count
47 virtual void NotifyStorageAccessed(QuotaClient::ID client_id,
55 virtual void NotifyStorageModified(QuotaClient::ID client_id,
H A Dquota_backend_impl_unittest.cc51 virtual void SetUsageCacheEnabled(storage::QuotaClient::ID client_id,
56 virtual void NotifyStorageModified(storage::QuotaClient::ID client_id,
/external/chromium_org/content/browser/renderer_host/media/
H A Dvideo_capture_manager.cc292 VideoCaptureControllerID client_id,
328 client_id, client_handler, client_render_process, session_id, params);
333 VideoCaptureControllerID client_id,
362 controller->RemoveClient(client_id, client_handler);
372 VideoCaptureControllerID client_id,
388 controller->PauseOrResumeClient(client_id, client_handler, true);
403 VideoCaptureControllerID client_id,
419 controller->PauseOrResumeClient(client_id, client_handler, false);
288 StartCaptureForClient( media::VideoCaptureSessionId session_id, const media::VideoCaptureParams& params, base::ProcessHandle client_render_process, VideoCaptureControllerID client_id, VideoCaptureControllerEventHandler* client_handler, const DoneCB& done_cb) argument
331 StopCaptureForClient( VideoCaptureController* controller, VideoCaptureControllerID client_id, VideoCaptureControllerEventHandler* client_handler, bool aborted_due_to_error) argument
370 PauseCaptureForClient( VideoCaptureController* controller, VideoCaptureControllerID client_id, VideoCaptureControllerEventHandler* client_handler) argument
399 ResumeCaptureForClient( media::VideoCaptureSessionId session_id, const media::VideoCaptureParams& params, VideoCaptureController* controller, VideoCaptureControllerID client_id, VideoCaptureControllerEventHandler* client_handler) argument

Completed in 531 milliseconds

1234567891011