Searched defs:service_id (Results 1 - 25 of 60) sorted by relevance

123

/external/chromium_org/gpu/command_buffer/service/
H A Did_manager.cc15 bool IdManager::AddMapping(GLuint client_id, GLuint service_id) { argument
17 std::make_pair(client_id, service_id));
21 bool IdManager::RemoveMapping(GLuint client_id, GLuint service_id) { argument
23 if (iter != id_map_.end() && iter->second == service_id) {
30 bool IdManager::GetServiceId(GLuint client_id, GLuint* service_id) { argument
31 DCHECK(service_id);
34 *service_id = iter->second;
40 bool IdManager::GetClientId(GLuint service_id, GLuint* client_id) { argument
46 if (iter->second == service_id) {
H A Did_manager_unittest.cc34 GLuint service_id = 0; local
35 EXPECT_TRUE(manager_.GetServiceId(kClientId1, &service_id));
36 EXPECT_EQ(kServiceId1, service_id);
41 service_id = 0;
43 EXPECT_FALSE(manager_.GetServiceId(kClientId2, &service_id));
45 EXPECT_EQ(0u, service_id);
50 service_id = 0;
51 EXPECT_TRUE(manager_.GetServiceId(kClientId1, &service_id));
52 EXPECT_EQ(kServiceId1, service_id);
53 EXPECT_TRUE(manager_.GetServiceId(kClientId2, &service_id));
[all...]
H A Dimage_manager.cc26 void ImageManager::AddImage(gfx::GLImage* image, int32 service_id) { argument
27 DCHECK(images_.find(service_id) == images_.end());
28 images_[service_id] = image;
31 void ImageManager::RemoveImage(int32 service_id) { argument
32 GLImageMap::iterator iter = images_.find(service_id);
38 gfx::GLImage* ImageManager::LookupImage(int32 service_id) { argument
39 GLImageMap::const_iterator iter = images_.find(service_id);
H A Dvertex_array_manager.cc33 GLuint service_id,
37 new VertexAttribManager(this, service_id, num_vertex_attribs));
75 GLuint service_id, GLuint* client_id) const {
80 if (it->second->service_id() == service_id) {
32 CreateVertexAttribManager(GLuint client_id, GLuint service_id, uint32 num_vertex_attribs, bool client_visible) argument
74 GetClientId( GLuint service_id, GLuint* client_id) const argument
H A Dshader_manager.cc15 Shader::Shader(GLuint service_id, GLenum shader_type) argument
17 service_id_(service_id),
146 glDeleteShader(shader->service_id());
156 GLuint service_id,
161 new Shader(service_id, shader_type))));
171 bool ShaderManager::GetClientId(GLuint service_id, GLuint* client_id) const { argument
175 if (it->second->service_id() == service_id) {
154 CreateShader( GLuint client_id, GLuint service_id, GLenum shader_type) argument
H A Dbuffer_manager.cc44 void BufferManager::CreateBuffer(GLuint client_id, GLuint service_id) { argument
45 scoped_refptr<Buffer> buffer(new Buffer(this, service_id));
75 Buffer::Buffer(BufferManager* manager, GLuint service_id) argument
81 service_id_(service_id),
90 GLuint id = service_id();
228 bool BufferManager::GetClientId(GLuint service_id, GLuint* client_id) const { argument
232 if (it->second->service_id() == service_id) {
H A Dbuffer_manager.h30 Buffer(BufferManager* manager, GLuint service_id);
32 GLuint service_id() const { function in class:gpu::gles2::Buffer
185 void CreateBuffer(GLuint client_id, GLuint service_id);
194 bool GetClientId(GLuint service_id, GLuint* client_id) const;
H A Dframebuffer_manager.h60 Framebuffer(FramebufferManager* manager, GLuint service_id);
62 GLuint service_id() const { function in class:gpu::gles2::Framebuffer
243 void CreateFramebuffer(GLuint client_id, GLuint service_id);
252 bool GetClientId(GLuint service_id, GLuint* client_id) const;
H A Dquery_manager_unittest.cc64 GLuint service_id) {
66 .WillOnce(SetArgumentPointee<1>(service_id))
72 GLuint service_id,
74 EXPECT_CALL(*gl_, BeginQueryARB(query->target(), service_id))
62 CreateQuery( GLenum target, GLuint client_id, int32 shm_id, uint32 shm_offset, GLuint service_id) argument
71 QueueQuery(QueryManager::Query* query, GLuint service_id, base::subtle::Atomic32 submit_count) argument
H A Drenderbuffer_manager.cc58 GLuint service_id)
61 service_id_(service_id),
74 GLuint id = service_id();
128 GLuint client_id, GLuint service_id) {
130 new Renderbuffer(this, client_id, service_id));
56 Renderbuffer(RenderbufferManager* manager, GLuint client_id, GLuint service_id) argument
127 CreateRenderbuffer( GLuint client_id, GLuint service_id) argument
H A Drenderbuffer_manager.h28 GLuint service_id);
30 GLuint service_id() const { function in class:gpu::gles2::Renderbuffer
155 void CreateRenderbuffer(GLuint client_id, GLuint service_id);
H A Dshader_manager.h37 GLuint service_id() const { function in class:gpu::gles2::Shader
130 Shader(GLuint service_id, GLenum shader_type);
183 GLuint service_id,
191 bool GetClientId(GLuint service_id, GLuint* client_id) const;
/external/chromium_org/ppapi/cpp/private/
H A Dplatform_verification.cc40 const Var& service_id,
50 pp_resource(), service_id.pp_var(), challenge.pp_var(),
39 ChallengePlatform( const Var& service_id, const Var& challenge, Var* signed_data, Var* signed_data_signature, Var* platform_key_certificate, const CompletionCallback& callback) argument
/external/chromium_org/ppapi/thunk/
H A Dppb_platform_verification_private_thunk.cc36 struct PP_Var service_id,
47 service_id,
35 ChallengePlatform(PP_Resource instance, struct PP_Var service_id, struct PP_Var challenge, struct PP_Var* signed_data, struct PP_Var* signed_data_signature, struct PP_Var* platform_key_certificate, struct PP_CompletionCallback callback) argument
/external/chromium_org/chrome/browser/renderer_host/pepper/
H A Dpepper_platform_verification_message_filter.cc56 const std::string& service_id,
79 service_id, local
54 OnChallengePlatform( ppapi::host::HostMessageContext* context, const std::string& service_id, const std::vector<uint8_t>& challenge) argument
/external/bluetooth/bluedroid/bta/gatt/
H A Dbta_gatts_utils.c133 tBTA_GATTS_SRVC_CB * bta_gatts_find_srvc_cb_by_srvc_id(tBTA_GATTS_CB *p_cb, UINT16 service_id) argument
136 APPL_TRACE_DEBUG("bta_gatts_find_srvc_cb_by_srvc_id service_id=%d", service_id);
140 p_cb->srvc_cb[i].service_id == service_id)
167 attr_id >= p_cb->srvc_cb[i].service_id &&
168 attr_id < p_cb->srvc_cb[i + 1].service_id) ||
173 attr_id >= p_cb->srvc_cb[i].service_id) ||
176 attr_id >= p_cb->srvc_cb[i].service_id)
H A Dbta_gatts_act.c350 UINT16 service_id = 0; local
363 service_id = GATTS_CreateService (p_cb->rcb[rcb_idx].gatt_if,
369 if (service_id != 0)
373 p_cb->srvc_cb[srvc_idx].service_id = service_id;
378 cb_data.create.service_id = service_id;
422 cb_data.add_result.service_id = p_msg->api_add_incl_srvc.hdr.layer_specific;
457 cb_data.add_result.service_id = p_msg->api_add_incl_srvc.hdr.layer_specific;
495 cb_data.add_result.service_id
[all...]
H A Dbta_gatts_api.c184 ** Parameters service_id: service ID to which this included service is to
191 void BTA_GATTS_AddIncludeService(UINT16 service_id, UINT16 included_service_id) argument
201 p_buf->hdr.layer_specific = service_id;
215 ** Parameters service_id: service ID to which this included service is to
224 void BTA_GATTS_AddCharacteristic (UINT16 service_id, tBT_UUID *p_char_uuid, argument
234 p_buf->hdr.layer_specific = service_id;
255 ** Parameters service_id: service ID to which this charatceristic descriptor is to
263 void BTA_GATTS_AddCharDescriptor (UINT16 service_id, argument
276 p_buf->hdr.layer_specific = service_id;
296 ** Parameters service_id
301 BTA_GATTS_DeleteService(UINT16 service_id) argument
329 BTA_GATTS_StartService(UINT16 service_id, tBTA_GATT_TRANSPORT sup_transport) argument
356 BTA_GATTS_StopService(UINT16 service_id) argument
[all...]
/external/chromium_org/ppapi/proxy/
H A Dplatform_verification_private_resource.cc34 const PP_Var& service_id,
49 StringVar* service_id_str = StringVar::FromPPVar(service_id);
33 ChallengePlatform( const PP_Var& service_id, const PP_Var& challenge, PP_Var* signed_data, PP_Var* signed_data_signature, PP_Var* platform_key_certificate, const scoped_refptr<TrackedCallback>& callback) argument
/external/chromium_org/chrome/browser/chromeos/attestation/
H A Dplatform_verification_flow.h145 // interaction will be associated with |web_contents|. The |service_id| is an
155 const std::string& service_id,
173 const std::string& service_id,
179 std::string service_id; member in struct:chromeos::attestation::PlatformVerificationFlow::ChallengeContext
/external/bluetooth/bluedroid/stack/hid/
H A Dhidh_conn.c1014 UINT8 service_id = BTM_SEC_SERVICE_HIDH_NOSEC_CTRL; local
1031 service_id = BTM_SEC_SERVICE_HIDH_SEC_CTRL;
1034 BTM_SetOutService (p_dev->addr, service_id, mx_chan_id);
/external/bluetooth/bluedroid/stack/pan/
H A Dpan_api.c302 UINT8 service_id; local
346 service_id = BTM_SEC_SERVICE_BNEP_PANU;
351 service_id = BTM_SEC_SERVICE_BNEP_GN;
356 service_id = BTM_SEC_SERVICE_BNEP_NAP;
373 service_id = BTM_SEC_SERVICE_BNEP_GN;
378 service_id = BTM_SEC_SERVICE_BNEP_NAP;
/external/chromium_org/chrome/browser/chromeos/extensions/
H A Decho_private_api.cc110 const std::string& service_id = params->id; local
116 offer_update->SetWithoutPathExpansion("echo." + service_id, dict);
129 const std::string& service_id = params->id; local
136 "echo." + service_id, &offer_info)) {
/external/chromium_org/components/signin/core/browser/
H A Dmutable_profile_oauth2_token_service.cc26 bool IsLegacyRefreshTokenId(const std::string& service_id) { argument
27 return service_id == GaiaConstants::kGaiaOAuth2LoginRefreshToken;
/external/chromium_org/content/common/gpu/
H A Dtexture_image_transport_surface.cc388 GLuint service_id; local
389 glGenTextures(1, &service_id);
390 backbuffer_ = TextureRef::Create(texture_manager, 0, service_id);
398 backbuffer_->service_id());
448 backbuffer_->service_id(),

Completed in 562 milliseconds

123