/hardware/qcom/media/mm-core/src/plutonium/ |
registry_table_android.c | 44 NULL, // Create instance function 45 // Unique instance handle 60 NULL, // Create instance function 61 // Unique instance handle 76 NULL, // Create instance function 77 // Unique instance handle 92 NULL, // Create instance function 93 // Unique instance handle 108 NULL, // Create instance function 109 // Unique instance handl [all...] |
/external/chromium_org/ppapi/proxy/ |
ppp_instance_proxy.cc | 42 PP_Bool DidCreate(PP_Instance instance, 54 HostDispatcher::GetForInstance(instance)->Send( 55 new PpapiMsg_PPPInstance_DidCreate(API_ID_PPP_INSTANCE, instance, 60 void DidDestroy(PP_Instance instance) { 61 HostDispatcher::GetForInstance(instance)->Send( 62 new PpapiMsg_PPPInstance_DidDestroy(API_ID_PPP_INSTANCE, instance)); 65 void DidChangeView(PP_Instance instance, PP_Resource view_resource) { 66 HostDispatcher* dispatcher = HostDispatcher::GetForInstance(instance); 75 EnterInstanceNoLock enter_instance(instance); 77 flash_fullscreen = enter_instance.functions()->FlashIsFullscreen(instance); [all...] |
/external/chromium_org/ppapi/cpp/ |
graphics_3d_client.h | 16 class Instance; 20 // instance. 26 /// @param[in] instance The instance that will own the new 28 explicit Graphics3DClient(Instance* instance);
|
instance.cc | 5 #include "ppapi/cpp/instance.h" 82 Instance::Instance(PP_Instance instance) : pp_instance_(instance) { 85 Instance::~Instance() { 88 bool Instance::Init(uint32_t /*argc*/, const char* /*argn*/[], 93 void Instance::DidChangeView(const View& view) { 98 void Instance::DidChangeView(const pp::Rect& /*position*/ [all...] |
mouse_lock.cc | 10 #include "ppapi/cpp/instance.h" 21 void MouseLockLost(PP_Instance instance) { 23 Instance::GetPerInstanceObject(instance, kPPPMouseLockInterface); 39 MouseLock::MouseLock(Instance* instance) 40 : associated_instance_(instance) { 42 instance->AddPerInstanceObject(kPPPMouseLockInterface, this); 46 Instance::RemovePerInstanceObject(associated_instance_,
|
/external/chromium_org/ppapi/thunk/ |
ppb_instance_thunk.cc | 18 PP_Bool BindGraphics(PP_Instance instance, PP_Resource device) { 20 EnterInstance enter(instance); 23 return enter.functions()->BindGraphics(instance, device); 26 PP_Bool IsFullFrame(PP_Instance instance) { 28 EnterInstance enter(instance); 31 return enter.functions()->IsFullFrame(instance);
|
ppb_zoom_dev_thunk.cc | 18 void ZoomChanged(PP_Instance instance, double factor) { 20 EnterInstance enter(instance); 23 enter.functions()->ZoomChanged(instance, factor); 26 void ZoomLimitsChanged(PP_Instance instance, 30 EnterInstance enter(instance); 33 enter.functions()->ZoomLimitsChanged(instance,
|
ppb_flash_thunk.cc | 23 void SetInstanceAlwaysOnTop(PP_Instance instance, PP_Bool on_top) { 24 EnterInstanceAPI<PPB_Flash_Functions_API> enter(instance); 27 enter.functions()->SetInstanceAlwaysOnTop(instance, on_top); 30 PP_Bool DrawGlyphs(PP_Instance instance, 41 EnterInstanceAPI<PPB_Flash_Functions_API> enter(instance); 45 instance, pp_image_data, font_desc, color, position, clip, transformation, 49 PP_Var GetProxyForURL(PP_Instance instance, const char* url) { 50 EnterInstanceAPI<PPB_Flash_Functions_API> enter(instance); 53 return enter.functions()->GetProxyForURL(instance, url); 59 // TODO(brettw): this function should take an instance 61 PP_Instance instance; local [all...] |
ppb_messaging_thunk.cc | 19 void PostMessage(PP_Instance instance, struct PP_Var message) { 21 EnterInstance enter(instance); 24 enter.functions()->PostMessage(instance, message); 28 PP_Instance instance, 33 EnterInstance enter(instance); 36 return enter.functions()->RegisterMessageHandler_1_1_Deprecated(instance, 42 int32_t RegisterMessageHandler_1_2(PP_Instance instance, 47 EnterInstance enter(instance); 50 return enter.functions()->RegisterMessageHandler(instance, 56 void UnregisterMessageHandler(PP_Instance instance) { [all...] |
ppb_uma_private_thunk.cc | 20 void HistogramCustomTimes(PP_Instance instance, 27 EnterInstanceAPI<PPB_UMA_Singleton_API> enter(instance); 30 enter.functions()->HistogramCustomTimes(instance, 38 void HistogramCustomCounts(PP_Instance instance, 45 EnterInstanceAPI<PPB_UMA_Singleton_API> enter(instance); 48 enter.functions()->HistogramCustomCounts(instance, 56 void HistogramEnumeration(PP_Instance instance, 61 EnterInstanceAPI<PPB_UMA_Singleton_API> enter(instance); 64 enter.functions()->HistogramEnumeration(instance, 70 int32_t IsCrashReportingEnabled(PP_Instance instance, [all...] |
ppb_file_mapping_thunk.cc | 20 int32_t Map(PP_Instance instance, 29 EnterInstanceAPI<PPB_FileMapping_API> enter(instance, callback); 32 return enter.SetResult(enter.functions()->Map(instance, 42 int32_t Unmap(PP_Instance instance, 47 EnterInstanceAPI<PPB_FileMapping_API> enter(instance, callback); 50 return enter.SetResult(enter.functions()->Unmap(instance, 56 int64_t GetMapPageSize(PP_Instance instance) { 58 EnterInstanceAPI<PPB_FileMapping_API> enter(instance); 61 return enter.functions()->GetMapPageSize(instance);
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/internal/ |
AppSingletonizer.java | 20 T instance = get(shadowApplication); local 21 if (instance == null) { 22 instance = createInstance(applicationContext); 23 set(shadowApplication, instance); 25 return instance; 30 protected abstract void set(ShadowApplication shadowApplication, T instance);
|
/external/apache-harmony/support/src/test/java/tests/support/ |
Support_URLConnector.java | 32 private URLConnection instance; field in class:Support_URLConnector 40 instance = new URL(address).openConnection(); 45 ((HttpURLConnection) instance).disconnect(); 53 if (instance == null) { 57 return instance.getInputStream(); 61 if (instance == null) { 64 instance.setDoOutput(true); 65 ((HttpURLConnection) instance).setRequestMethod("POST"); 67 return instance.getOutputStream(); 75 instance.setRequestProperty(key, value) [all...] |
/external/chromium_org/content/common/android/ |
surface_texture_lookup.cc | 22 void SurfaceTextureLookup::InitInstance(SurfaceTextureLookup* instance) { 23 DCHECK(!g_instance || !instance); 24 g_instance = instance;
|
/external/chromium_org/ui/aura/client/ |
window_stacking_client.cc | 12 WindowStackingClient* instance = NULL; member in namespace:aura::client::__anon21193 17 instance = client; 21 return instance;
|
/external/chromium_org/ui/base/ime/linux/ |
linux_input_method_context_factory.cc | 18 LinuxInputMethodContextFactory::instance() { function in class:ui::LinuxInputMethodContextFactory 24 const LinuxInputMethodContextFactory* instance) { 25 g_linux_input_method_context_factory = instance;
|
/external/chromium_org/ui/gfx/ |
linux_font_delegate.cc | 15 void LinuxFontDelegate::SetInstance(LinuxFontDelegate* instance) { 16 g_linux_font_delegate = instance; 19 const LinuxFontDelegate* LinuxFontDelegate::instance() { function in class:gfx::LinuxFontDelegate
|
/external/chromium_org/ui/shell_dialogs/ |
linux_shell_dialog.cc | 15 void LinuxShellDialog::SetInstance(LinuxShellDialog* instance) { 16 g_linux_shell_dialog = instance; 19 const LinuxShellDialog* LinuxShellDialog::instance() { function in class:ui::LinuxShellDialog
|
/device/asus/flo/ |
sec_config | 2 /* <GPS QMI Service ID - 16>:<GPS QMI Instance ID - all instances>:<Client Group ID> */
|
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/ |
HttpAuthDatabaseTest.java | 35 HttpAuthDatabase instance = HttpAuthDatabase.newInstance(getContext(), TEST_DATABASE); local 42 String[] result = instance.getHttpAuthUsernamePassword(host, realm); 45 instance.setHttpAuthUsernamePassword(host, realm, userName, password); 46 result = instance.getHttpAuthUsernamePassword(host, realm); 52 instance.setHttpAuthUsernamePassword(host, realm, userName, newPassword); 53 result = instance.getHttpAuthUsernamePassword(host, realm); 59 instance.setHttpAuthUsernamePassword(host, realm, newUserName, newPassword); 60 result = instance.getHttpAuthUsernamePassword(host, realm); 65 instance.setHttpAuthUsernamePassword(host, realm, null, password); 66 result = instance.getHttpAuthUsernamePassword(host, realm) [all...] |
/external/chromium_org/ppapi/api/dev/ |
ppp_scrollbar_dev.idl | 17 * Informs the instance that the scrollbar's value has changed. 19 void ValueChanged([in] PP_Instance instance, 24 * Informs the instance that the user has changed the system 28 void OverlayChanged([in] PP_Instance instance,
|
/external/chromium_org/ppapi/api/ |
ppb_instance.idl | 9 * the module instance on a web page. 20 * related to the module instance on a web page. 25 * The contents of this device is what will be displayed in the instance's 29 * unbind all devices from the given instance. The instance will then appear 34 * a device when it is already bound to another instance. If you want 41 * @param[in] instance A PP_Instance identifying one instance of a module. 47 * instance, so the caller can release its reference if it chooses. 50 [in] PP_Instance instance, [all...] |
/external/chromium_org/ppapi/cpp/dev/ |
zoom_dev.cc | 8 #include "ppapi/cpp/instance.h" 19 void Zoom(PP_Instance instance, 22 void* object = Instance::GetPerInstanceObject(instance, kPPPZoomInterface); 38 Zoom_Dev::Zoom_Dev(Instance* instance) : associated_instance_(instance) { 40 instance->AddPerInstanceObject(kPPPZoomInterface, this); 44 Instance::RemovePerInstanceObject(associated_instance_,
|
/external/chromium_org/ppapi/examples/stub/ |
stub.cc | 5 #include "ppapi/cpp/instance.h" 11 class MyInstance : public pp::Instance { 13 explicit MyInstance(PP_Instance instance) : pp::Instance(instance) {} 28 // Override CreateInstance to create your customized Instance object. 29 virtual pp::Instance* CreateInstance(PP_Instance instance) { 30 return new MyInstance(instance);
|
/external/chromium_org/ppapi/shared_impl/ |
host_resource.cc | 12 HostResource HostResource::MakeInstanceOnly(PP_Instance instance) { 14 resource.SetHostResource(instance, 0); 18 void HostResource::SetHostResource(PP_Instance instance, PP_Resource resource) { 19 instance_ = instance;
|