HomeSort by relevance Sort by last modified time
    Searched refs:interface_name (Results 1 - 25 of 248) 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/dbus/
util.cc 9 std::string GetAbsoluteMemberName(const std::string& interface_name,
11 return interface_name + "." + member_name;
util.h 14 // Returns the absolute name of a member by concatanating |interface_name| and
23 const std::string& interface_name,
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,
  /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 49 const void* PPP_GetInterface(const char* interface_name) {
52 return pp::Module::Get()->GetPluginInterface(interface_name);
55 const void* PPP_GetBrowserInterface(const char* interface_name) {
58 return pp::Module::Get()->GetBrowserInterface(interface_name);
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
compute_interfaces_info_overall.py 49 |interfaces_info| is a dict, keyed by |interface_name|.
141 def compute_inheritance_info(interface_name):
143 def generate_ancestors(interface_name):
144 while interface_name in parent_interfaces:
145 interface_name = parent_interfaces[interface_name]
146 yield interface_name
148 ancestors = list(generate_ancestors(interface_name))
149 inherited_extended_attributes = inherited_extended_attributes_by_interface[interface_name]
157 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)
90 new_constructors_list = generate_global_constructors_list(interface_name, extended_attributes)
95 def generate_global_constructors_list(interface_name, extended_attributes):
105 attribute_string = 'attribute {interface_name}Constructor {interface_name}'.format(interface_name=interface_name)
118 attribute_string = 'attribute %sConstructorConstructor %s' % (interface_name, constructor_name
    [all...]
  /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/native_client/src/trusted/plugin/
ppapi_entrypoints.h 16 const void* PPP_GetInterface(const char* interface_name);
ppapi_entrypoints.cc 33 const void* PPP_GetInterface(const char* interface_name) {
36 return pp::Module::Get()->GetPluginInterface(interface_name);
  /external/chromium_org/ppapi/cpp/
module_impl.h 20 template <typename T> const char* interface_name() { function in namespace:pp::__anon14623
26 pp::Module::Get()->GetBrowserInterface(interface_name<T>()));
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 599 /// @param[in] interface_name The name of the interface to associate with the
602 void AddPerInstanceObject(const std::string& interface_name, void* object);
608 /// @param[in] interface_name The name of the interface to associate with the
611 void RemovePerInstanceObject(const std::string& interface_name, void* object);
617 const std::string& interface_name,
627 /// @param[in] interface_name The name of the interface to associate with the
630 const std::string& interface_name);
  /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::__anon14587
memory_dev.cc 15 template <> const char* interface_name<PPB_Memory_Dev>() { function in namespace:pp::__anon14593
view_dev.cc 14 template <> const char* interface_name<PPB_View_Dev>() { function in namespace:pp::__anon14605
  /external/chromium_org/ppapi/thunk/
thunk.h 15 #define PROXIED_IFACE(interface_name, InterfaceType) \
  /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);

Completed in 1150 milliseconds

1 2 3 4 5 6 7 8 910