HomeSort by relevance Sort by last modified time
    Searched refs:interface_name (Results 1 - 25 of 232) sorted by null

1 2 3 4 5 6 7 8 910

  /external/chromium_org/ppapi/c/
ppb.h 42 typedef const void* (*PPB_GetInterface)(const char* interface_name);
ppp.h 118 * @param[in] interface_name A pointer to a "PPP" (plugin) interface name.
124 PP_EXPORT const void* PPP_GetInterface(const char* interface_name);
153 typedef const void* (*PP_GetInterface_Func)(const char* interface_name);
  /external/chromium_org/ppapi/api/
ppb.idl 28 typedef interface_t PPB_GetInterface([in] str_t interface_name);
ppp.idl 107 * @param[in] interface_name A pointer to a "PPP" (plugin) interface name.
113 PP_EXPORT const void* PPP_GetInterface(const char* interface_name);
139 typedef interface_t PP_GetInterface_Func([in] str_t interface_name);
  /external/chromium_org/remoting/client/plugin/
pepper_entrypoints.h 16 const void* PPP_GetInterface(const char* interface_name);
17 const void* PPP_GetBrowserInterface(const char* interface_name);
pepper_entrypoints.cc 58 const void* PPP_GetInterface(const char* interface_name) {
61 return pp::Module::Get()->GetPluginInterface(interface_name);
64 const void* PPP_GetBrowserInterface(const char* interface_name) {
67 return pp::Module::Get()->GetBrowserInterface(interface_name);
  /development/host/windows/usb/winusb/
AdbWinUsbApi.cpp 41 @param[in] interface_name Name of the interface.
48 const wchar_t* interface_name) {
50 if (NULL == interface_name) {
56 return new AdbWinUsbInterfaceObject(interface_name);
  /external/chromium_org/ppapi/cpp/
module_impl.h 20 template <typename T> const char* interface_name() { function in namespace:pp::__anon13992
26 pp::Module::Get()->GetBrowserInterface(interface_name<T>()));
instance.cc 29 template <> const char* interface_name<PPB_Console_1_0>() { function in namespace:pp::__anon13988
33 template <> const char* interface_name<PPB_InputEvent_1_0>() { function in namespace:pp::__anon13988
37 template <> const char* interface_name<PPB_Instance_1_0>() { function in namespace:pp::__anon13988
41 template <> const char* interface_name<PPB_Messaging_1_0>() { function in namespace:pp::__anon13988
155 void Instance::AddPerInstanceObject(const std::string& interface_name,
159 PP_DCHECK(interface_name_to_objects_.find(interface_name) ==
161 interface_name_to_objects_[interface_name] = object;
164 void Instance::RemovePerInstanceObject(const std::string& interface_name,
167 interface_name);
184 const std::string& interface_name,
    [all...]
module.h 80 /// @param[in] interface_name The module interface for the browser to get.
81 const void* GetPluginInterface(const char* interface_name);
85 /// @param[in] interface_name The browser interface for the module to get.
86 const void* GetBrowserInterface(const char* interface_name);
114 /// @param[in] interface_name The interface name that will receive a handler.
116 /// <code>interface_name</code>.
117 void AddPluginInterface(const std::string& interface_name,
ppp_entrypoints.cc 53 PP_EXPORT const void* PPP_GetInterface(const char* interface_name) {
55 return g_module_singleton->GetPluginInterface(interface_name);
57 return g_broker_get_interface(interface_name);
instance.h 548 /// @param[in] interface_name The name of the interface to associate with the
551 void AddPerInstanceObject(const std::string& interface_name, void* object);
557 /// @param[in] interface_name The name of the interface to associate with the
560 void RemovePerInstanceObject(const std::string& interface_name, void* object);
566 const std::string& interface_name,
576 /// @param[in] interface_name The name of the interface to associate with the
579 const std::string& interface_name);
mouse_cursor.cc 13 template <> const char* interface_name<PPB_MouseCursor_1_0>() { function in namespace:pp::__anon13993
  /external/chromium_org/ppapi/native_client/tests/ppapi_test_lib/
module_instance.cc 47 void AddInterface(const char* interface_name, const void* ppp_interface) {
48 interface_map_[nacl::string(interface_name)] = ppp_interface;
50 const void* GetInterface(const char* interface_name) {
52 return interface_map_[nacl::string(interface_name)];
66 void RegisterPluginInterface(const char* interface_name,
68 PluginInterfaceTable::Get()->AddInterface(interface_name, ppp_interface);
155 const void* PPP_GetInterface(const char* interface_name) {
156 const void* ppp = PluginInterfaceTable::Get()->GetInterface(interface_name);
160 if (ppp == NULL && 0 == strncmp(PPP_INSTANCE_INTERFACE, interface_name,
166 if (0 == strncmp(PPP_MESSAGING_INTERFACE, interface_name,
    [all...]
  /external/chromium_org/ppapi/cpp/dev/
crypto_dev.cc 15 template <> const char* interface_name<PPB_Crypto_Dev_0_1>() { function in namespace:pp::__anon13956
memory_dev.cc 15 template <> const char* interface_name<PPB_Memory_Dev>() { function in namespace:pp::__anon13962
view_dev.cc 14 template <> const char* interface_name<PPB_View_Dev>() { function in namespace:pp::__anon13974
  /external/chromium_org/ppapi/thunk/
thunk.h 15 #define PROXIED_IFACE(interface_name, InterfaceType) \
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
compute_interfaces_info_overall.py 49 |interfaces_info| is a dict, keyed by |interface_name|.
140 def compute_inheritance_info(interface_name):
142 def generate_ancestors(interface_name):
143 while interface_name in parent_interfaces:
144 interface_name = parent_interfaces[interface_name]
145 yield interface_name
147 ancestors = list(generate_ancestors(interface_name))
148 inherited_extended_attributes = inherited_extended_attributes_by_interface[interface_name]
156 interfaces_info[interface_name].update(
    [all...]
generate_global_constructors.py 62 def interface_name_to_constructors(interface_name):
64 global_names = interface_name_to_global_names[interface_name]
70 interface_name = idl_filename_to_interface_name(idl_filename)
92 new_constructors_list = generate_global_constructors_list(interface_name, extended_attributes)
97 def generate_global_constructors_list(interface_name, extended_attributes):
107 attribute_string = 'attribute {interface_name}Constructor {interface_name}'.format(interface_name=interface_name)
120 attribute_string = 'attribute %sConstructorConstructor %s' % (interface_name, constructor_name
    [all...]
  /external/chromium_org/dbus/
object_manager.h 81 // const std::string& interface_name)
84 // object_proxy, interface_name,
146 // |object_proxy|. The D-Bus interface name |interface_name| is that passed
155 const std::string& interface_name) = 0;
159 // name |interface_name| is that passed to RegisterInterface() by the
164 // |interface_name| as appropriate. An implementation class will only
167 const std::string& interface_name) { }
171 // name |interface_name| is that passed to RegisterInterface() by the
179 const std::string& interface_name) { }
188 // interface named in |interface_name|. That object's CreateProperties(
    [all...]
mock_exported_object.h 23 bool(const std::string& interface_name,
27 void(const std::string& interface_name,
object_manager.cc 74 void ObjectManager::RegisterInterface(const std::string& interface_name,
76 interface_map_[interface_name] = interface;
79 void ObjectManager::UnregisterInterface(const std::string& interface_name) {
80 InterfaceMap::iterator iter = interface_map_.find(interface_name);
96 const std::string& interface_name) {
104 object->properties_map.find(interface_name);
122 const std::string& interface_name) {
129 object->properties_map.find(interface_name);
184 void ObjectManager::InterfacesAddedConnected(const std::string& interface_name,
209 const std::string& interface_name,
226 std::string interface_name; local
    [all...]
  /external/chromium_org/components/nacl/loader/nonsfi/
irt_ppapi.cc 42 const void *PPP_GetInterface(const char *interface_name) {
43 return nacl::nonsfi::g_pp_functions.PPP_GetInterface(interface_name);
  /external/chromium_org/ppapi/cpp/private/
file_io_private.cc 16 template <> const char* interface_name<PPB_FileIO_Private>() { function in namespace:pp::__anon14001

Completed in 497 milliseconds

1 2 3 4 5 6 7 8 910