Searched refs:client_id (Results 151 - 175 of 264) sorted by relevance

1234567891011

/external/mesa3d/src/glx/apple/
H A Dappledri.h103 unsigned int client_id, unsigned int key[2],
/external/chromium_org/gpu/command_buffer/service/
H A Dtexture_manager_unittest.cc116 EXPECT_EQ(kClient1Id, texture->client_id());
130 EXPECT_EQ(0u, texture->client_id());
429 if (!texture_ref_->client_id()) {
1887 if (!texture2_->client_id()) {
1981 void Consume(GLuint client_id, Texture* texture) { argument
1982 EXPECT_TRUE(manager_->Consume(client_id, texture));
2021 GLuint client_id = texture2_->client_id(); local
2022 manager_->RemoveTexture(client_id);
2023 Consume(client_id, produced_textur
2052 GLuint client_id = texture2_->client_id(); local
2078 GLuint client_id = texture2_->client_id(); local
2108 GLuint client_id = texture2_->client_id(); local
2150 GLuint client_id = texture2_->client_id(); local
[all...]
H A Dquery_manager.cc476 GLenum target, GLuint client_id, int32 shm_id, uint32 shm_offset) {
510 queries_.insert(std::make_pair(client_id, query));
528 GLuint client_id) {
529 QueryMap::iterator it = queries_.find(client_id);
533 void QueryManager::RemoveQuery(GLuint client_id) { argument
534 QueryMap::iterator it = queries_.find(client_id);
541 generated_query_ids_.erase(client_id);
475 CreateQuery( GLenum target, GLuint client_id, int32 shm_id, uint32 shm_offset) argument
527 GetQuery( GLuint client_id) argument
H A Dtexture_manager.h402 TextureRef(TextureManager* manager, GLuint client_id, Texture* texture);
404 GLuint client_id,
412 GLuint client_id() const { return client_id_; } function in class:gpu::gles2::TextureRef
583 TextureRef* Consume(GLuint client_id, Texture* texture);
611 TextureRef* CreateTexture(GLuint client_id, GLuint service_id);
614 TextureRef* GetTexture(GLuint client_id) const;
617 void RemoveTexture(GLuint client_id);
H A Dprogram_manager.h367 Program* CreateProgram(GLuint client_id, GLuint service_id);
370 Program* GetProgram(GLuint client_id);
373 bool GetClientId(GLuint service_id, GLuint* client_id) const;
/external/chromium_org/content/browser/gpu/
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 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 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);
/external/chromium_org/gpu/command_buffer/common/
H A Dgles2_cmd_format.h241 client_id = _client_id;
256 uint32_t client_id; member in struct:gpu::gles2::cmds::CreateAndConsumeTextureCHROMIUMImmediate
266 offsetof(CreateAndConsumeTextureCHROMIUMImmediate, client_id) == 8,
/external/chromium_org/storage/browser/quota/
H A Dusage_tracker.h41 ClientUsageTracker* GetClientTracker(QuotaClient::ID client_id);
46 void UpdateUsageCache(QuotaClient::ID client_id,
56 void SetUsageCacheEnabled(QuotaClient::ID client_id,
H A Dquota_manager.cc891 QuotaClient::ID client_id,
894 NotifyStorageAccessedInternal(client_id, origin, type, base::Time::Now());
898 QuotaClient::ID client_id,
901 NotifyStorageModifiedInternal(client_id, origin, type, delta,
918 void QuotaManager::SetUsageCacheEnabled(QuotaClient::ID client_id, argument
924 GetUsageTracker(type)->SetUsageCacheEnabled(client_id, origin, enabled);
1101 QuotaClient::ID client_id,
1106 GetUsageTracker(type)->GetClientTracker(client_id);
1115 QuotaClient::ID client_id) const {
1117 return tracker && tracker->GetClientTracker(client_id);
890 NotifyStorageAccessed( QuotaClient::ID client_id, const GURL& origin, StorageType type) argument
897 NotifyStorageModified( QuotaClient::ID client_id, const GURL& origin, StorageType type, int64 delta) argument
1099 GetHostUsage(const std::string& host, StorageType type, QuotaClient::ID client_id, const UsageCallback& callback) argument
1284 NotifyStorageAccessedInternal( QuotaClient::ID client_id, const GURL& origin, StorageType type, base::Time accessed_time) argument
1304 NotifyStorageModifiedInternal( QuotaClient::ID client_id, const GURL& origin, StorageType type, int64 delta, base::Time modified_time) argument
[all...]
H A Dusage_tracker.cc95 ClientUsageTracker* UsageTracker::GetClientTracker(QuotaClient::ID client_id) { argument
96 ClientTrackerMap::iterator found = client_tracker_map_.find(client_id);
188 QuotaClient::ID client_id, const GURL& origin, int64 delta) {
189 ClientUsageTracker* client_tracker = GetClientTracker(client_id);
213 void UsageTracker::SetUsageCacheEnabled(QuotaClient::ID client_id, argument
216 ClientUsageTracker* client_tracker = GetClientTracker(client_id);
187 UpdateUsageCache( QuotaClient::ID client_id, const GURL& origin, int64 delta) argument
/external/chromium_org/sync/engine/net/
H A Dserver_connection_manager.h203 const std::string client_id() const { return client_id_; } function in class:syncer::ServerConnectionManager
222 void set_client_id(const std::string& client_id) { argument
225 client_id_.assign(client_id);
/external/chromium_org/ui/display/chromeos/
H A Ddisplay_configurator.cc297 ContentProtectionClientId client_id) {
298 client_protection_requests_.erase(client_id);
316 ContentProtectionClientId client_id,
362 ProtectionRequests::iterator it = client_protection_requests_.find(client_id);
375 ContentProtectionClientId client_id,
389 if (it->first == client_id && it2->first == display_id)
400 if (client_protection_requests_.find(client_id) !=
402 client_protection_requests_[client_id].erase(display_id);
403 if (client_protection_requests_[client_id].size() == 0)
404 client_protection_requests_.erase(client_id);
296 UnregisterContentProtectionClient( ContentProtectionClientId client_id) argument
315 QueryContentProtectionStatus( ContentProtectionClientId client_id, int64_t display_id, uint32_t* link_mask, uint32_t* protection_mask) argument
374 EnableContentProtection( ContentProtectionClientId client_id, int64_t display_id, uint32_t desired_method_mask) argument
[all...]
/external/chromium_org/chrome/browser/ui/webui/
H A Dhistory_ui.cc233 const std::string& client_id,
240 sync_service->GetDeviceInfoTracker()->GetDeviceInfo(client_id);
273 const std::string& client_id, bool is_search_result,
280 this->client_id = client_id;
373 if (!client_id.empty())
374 GetDeviceNameAndType(sync_service, client_id, &device_name, &device_type);
879 std::string client_id; local
880 id->GetString("client_id", &client_id);
232 GetDeviceNameAndType(const ProfileSyncService* sync_service, const std::string& client_id, std::string* name, std::string* type) argument
270 HistoryEntry( BrowsingHistoryHandler::HistoryEntry::EntryType entry_type, const GURL& url, const base::string16& title, base::Time time, const std::string& client_id, bool is_search_result, const base::string16& snippet, bool blocked_visit, const std::string& accept_languages) argument
[all...]
/external/chromium_org/chrome/browser/sync/glue/
H A Ddevice_info_sync_service_unittest.cc117 SyncData CreateRemoteData(const std::string& client_id, argument
123 specifics.set_cache_guid(client_id);
142 const std::string& client_id,
144 SyncData sync_data = CreateRemoteData(client_id, client_name);
150 const std::string& client_id,
152 SyncData sync_data = CreateRemoteData(client_id, client_name);
141 AddInitialData(SyncDataList& sync_data_list, const std::string& client_id, const std::string& client_name) argument
148 AddChange(SyncChangeList& change_list, SyncChange::SyncChangeType change_type, const std::string& client_id, const std::string& client_name) argument
/external/chromium_org/chrome/browser/chromeos/app_mode/
H A Dstartup_app_launcher.cc57 const char kOAuthClientId[] = "client_id";
141 dict->GetString(kOAuthClientId, &auth_params->client_id);
147 // Override chrome client_id and secret that will be used for identity
149 if (!auth_params_.client_id.empty() && !auth_params_.client_secret.empty()) {
151 auth_params_.client_id,
/external/ppp/pppd/plugins/radius/
H A Dbuildreq.c26 UINT4 client_id; local
44 if ((client_id = rc_own_ipaddress()) == 0)
47 if (rc_avpair_add(sendpairs, PW_NAS_IP_ADDRESS, &client_id,
/external/chromium_org/chrome/browser/chromeos/settings/
H A Ddevice_oauth2_token_service.h79 const std::string& client_id,
/external/chromium_org/chrome/browser/metrics/
H A Dchrome_metrics_service_client.h59 virtual void SetMetricsClientId(const std::string& client_id) OVERRIDE;
/external/chromium_org/chrome/browser/policy/cloud/
H A Duser_policy_signin_service.cc105 callback.Run(client->dm_token(), client->client_id());
/external/chromium_org/chrome/browser/signin/
H A Dandroid_profile_oauth2_token_service.cc44 virtual void Start(const std::string& client_id,
75 void AndroidAccessTokenFetcher::Start(const std::string& client_id, argument
226 const std::string& client_id,
230 client_id,
224 InvalidateOAuth2Token( const std::string& account_id, const std::string& client_id, const ScopeSet& scopes, const std::string& access_token) argument
H A Dandroid_profile_oauth2_token_service.h102 const std::string& client_id,
/external/chromium_org/components/policy/core/common/cloud/
H A Ddevice_management_service.h62 void SetClientID(const std::string& client_id);
/external/chromium_org/content/renderer/service_worker/
H A Dembedded_worker_context_client.h97 int client_id,

Completed in 6665 milliseconds

1234567891011