Searched defs:instance_id (Results 1 - 25 of 52) sorted by relevance

123

/external/tcpdump/
H A Dprint-otv.c48 u_int32_t instance_id; local
61 instance_id = EXTRACT_24BITS(bp);
75 printf("instance %u\n", instance_id);
/external/chromium_org/chrome/renderer/pepper/
H A Dchrome_pdf_print_client.cc17 blink::WebElement GetWebElement(PP_Instance instance_id) { argument
19 content::PepperPluginInstance::Get(instance_id);
41 bool ChromePDFPrintClient::IsPrintingEnabled(PP_Instance instance_id) { argument
42 blink::WebElement element = GetWebElement(instance_id);
47 bool ChromePDFPrintClient::Print(PP_Instance instance_id) { argument
48 blink::WebElement element = GetWebElement(instance_id);
/external/chromium_org/content/plugin/
H A Dwebplugin_delegate_stub.h41 WebPluginDelegateStub(const std::string& mime_type, int instance_id,
50 int instance_id() { return instance_id_; } function in class:content::WebPluginDelegateStub
H A Dplugin_channel.cc215 RemoveRoute(plugin_stubs_[i]->instance_id());
273 int* instance_id) {
274 *instance_id = GenerateRouteID();
276 mime_type, *instance_id, this));
277 AddRoute(*instance_id, stub.get(), NULL);
281 void PluginChannel::OnDestroyInstance(int instance_id, argument
284 if (plugin_stubs_[i]->instance_id() == instance_id) {
295 RemoveRoute(instance_id);
272 OnCreateInstance(const std::string& mime_type, int* instance_id) argument
H A Dwebplugin_delegate_stub.cc60 const std::string& mime_type, int instance_id, PluginChannel* channel) :
62 instance_id_(instance_id),
59 WebPluginDelegateStub( const std::string& mime_type, int instance_id, PluginChannel* channel) argument
/external/chromium_org/extensions/common/
H A Devent_filtering_info.cc26 void EventFilteringInfo::SetInstanceID(int instance_id) { argument
27 instance_id_ = instance_id;
H A Devent_filtering_info.h30 void SetInstanceID(int instance_id);
39 int instance_id() const { return instance_id_; } function in class:extensions::EventFilteringInfo
H A Devent_matcher.cc29 return event_info.instance_id() == GetInstanceID();
63 int instance_id = 0; local
64 filter_->GetInteger("instanceId", &instance_id);
65 return instance_id;
/external/chromium_org/third_party/webrtc/video_engine/
H A Dvie_shared_data.h39 // TODO(mflodman) Remove all calls to 'instance_id()'.
40 int instance_id() { return 0;} function in class:webrtc::ViESharedData
/external/chromium_org/extensions/browser/guest_view/web_view/
H A Dweb_view_renderer_state.h24 int instance_id; member in struct:extensions::WebViewRendererState::WebViewInfo
/external/bluetooth/bluedroid/bta/include/
H A Dbta_mce_api.h59 UINT8 instance_id; member in struct:__anon908
/external/chromium_org/content/renderer/browser_plugin/
H A Dbrowser_plugin_browsertest.cc143 int instance_id = 0; local
151 if (!iter.ReadInt(&instance_id))
159 browser_plugin->OnAttachACK(instance_id);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
H A Dnv50_push.c29 uint32_t instance_id; member in struct:push_context
79 ctx->translate->run_elts8(ctx->translate, elts, nr, ctx->instance_id,
112 ctx->translate->run_elts16(ctx->translate, elts, nr, ctx->instance_id,
145 ctx->translate->run_elts(ctx->translate, elts, nr, ctx->instance_id,
170 ctx->translate->run(ctx->translate, start, push, ctx->instance_id,
269 ctx.instance_id = info->start_instance;
306 ctx.instance_id++;
/external/chromium_org/third_party/webrtc/voice_engine/
H A Dchannel_manager.cc48 ChannelManager::ChannelManager(uint32_t instance_id, const Config& config) argument
49 : instance_id_(instance_id),
H A Dshared_data.h37 uint32_t instance_id() const { return _instanceId; } function in class:webrtc::voe::SharedData
/external/mesa3d/src/gallium/drivers/nv50/
H A Dnv50_push.c29 uint32_t instance_id; member in struct:push_context
79 ctx->translate->run_elts8(ctx->translate, elts, nr, ctx->instance_id,
112 ctx->translate->run_elts16(ctx->translate, elts, nr, ctx->instance_id,
145 ctx->translate->run_elts(ctx->translate, elts, nr, ctx->instance_id,
170 ctx->translate->run(ctx->translate, start, push, ctx->instance_id,
269 ctx.instance_id = info->start_instance;
306 ctx.instance_id++;
/external/chromium_org/extensions/browser/guest_view/
H A Dguest_view_manager.cc230 int instance_id = *iter; local
233 DCHECK(instance_id > last_instance_id_removed_);
234 if (instance_id != last_instance_id_removed_ + 1)
/external/chromium_org/ppapi/proxy/
H A Dppb_audio_proxy.cc140 PP_Instance instance_id,
144 PluginDispatcher* dispatcher = PluginDispatcher::GetForInstance(instance_id);
157 API_ID_PPB_AUDIO, instance_id,
184 void PPB_Audio_Proxy::OnMsgCreate(PP_Instance instance_id, argument
188 thunk::EnterResourceCreation resource_creation(instance_id);
194 instance_id,
195 resource_creation.functions()->CreateAudioTrusted(instance_id));
217 instance_id, static_cast<PP_AudioSampleRate>(sample_rate),
139 CreateProxyResource( PP_Instance instance_id, PP_Resource config_id, const AudioCallbackCombined& audio_callback, void* user_data) argument
H A Dppb_testing_proxy.cc67 uint32_t GetLiveObjectsForInstance(PP_Instance instance_id) { argument
69 PluginDispatcher* dispatcher = PluginDispatcher::GetForInstance(instance_id);
75 API_ID_PPB_TESTING, instance_id, &result));
83 void SimulateInputEvent(PP_Instance instance_id, PP_Resource input_event) { argument
85 PluginDispatcher* dispatcher = PluginDispatcher::GetForInstance(instance_id);
94 API_ID_PPB_TESTING, instance_id, input_event_data));
H A Dppp_class_proxy.cc222 PP_Instance instance_id,
227 return var->CreateObject(instance_id, &class_interface, object_proxy);
220 CreateProxiedObject(const PPB_Var_Deprecated* var, Dispatcher* dispatcher, PP_Instance instance_id, int64 ppp_class, int64 class_data) argument
/external/chromium_org/ppapi/thunk/
H A Dppb_pdf_thunk.cc136 PP_Var ModalPromptForPassword(PP_Instance instance_id, argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/
H A Dnvc0_push.c27 uint32_t instance_id; member in struct:push_context
140 ctx->translate->run_elts8(ctx->translate, elts, nr, ctx->instance_id,
181 ctx->translate->run_elts16(ctx->translate, elts, nr, ctx->instance_id,
222 ctx->translate->run_elts(ctx->translate, elts, nr, ctx->instance_id,
255 ctx->translate->run(ctx->translate, start, push, ctx->instance_id,
352 ctx.instance_id = info->start_instance;
387 ctx.instance_id++;
/external/mesa3d/src/gallium/drivers/nvc0/
H A Dnvc0_push.c27 uint32_t instance_id; member in struct:push_context
140 ctx->translate->run_elts8(ctx->translate, elts, nr, ctx->instance_id,
181 ctx->translate->run_elts16(ctx->translate, elts, nr, ctx->instance_id,
222 ctx->translate->run_elts(ctx->translate, elts, nr, ctx->instance_id,
255 ctx->translate->run(ctx->translate, start, push, ctx->instance_id,
352 ctx.instance_id = info->start_instance;
387 ctx.instance_id++;
/external/qemu/hw/android/goldfish/
H A Dtty.c213 static int instance_id = 0; local
234 instance_id++,
/external/chromium_org/components/pdf/renderer/
H A Dppb_pdf_impl.cc63 PP_Var GetLocalizedString(PP_Instance instance_id, argument
66 content::PepperPluginInstance::Get(instance_id);
75 PP_Instance instance_id,
80 if (!content::PepperPluginInstance::Get(instance_id))
97 scoped_refptr<PrivateFontFile> font(new PrivateFontFile(instance_id, fd));
180 void DidStartLoading(PP_Instance instance_id) { argument
182 content::PepperPluginInstance::Get(instance_id);
188 void DidStopLoading(PP_Instance instance_id) { argument
190 content::PepperPluginInstance::Get(instance_id);
196 void SetContentRestriction(PP_Instance instance_id, in argument
74 GetFontFileWithFallback( PP_Instance instance_id, const PP_BrowserFont_Trusted_Description* description, PP_PrivateFontCharset charset) argument
216 HasUnsupportedFeature(PP_Instance instance_id) argument
233 SaveAs(PP_Instance instance_id) argument
265 GetResourceImageForScale(PP_Instance instance_id, PP_ResourceImage image_id, float scale) argument
282 GetResourceImage(PP_Instance instance_id, PP_ResourceImage image_id) argument
287 ModalPromptForPassword(PP_Instance instance_id, PP_Var message) argument
307 IsOutOfProcess(PP_Instance instance_id) argument
311 SetSelectedText(PP_Instance instance_id, const char* selected_text) argument
315 SetLinkUnderCursor(PP_Instance instance_id, const char* url) argument
353 InvokePrintingForInstance(PP_Instance instance_id) argument
[all...]

Completed in 459 milliseconds

123