/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);
|
/external/wpa_supplicant_8/wpa_supplicant/examples/p2p/ |
p2p_disconnect.py | 3 # Will perform disconnect on interface_name 16 print " %s -i <interface_name> \ " \ 36 global interface_name 49 def __init__(self,interface_name,wpas_dbus_interface,timeout): 51 self.interface_name = interface_name 83 self.interface_name) 85 error = 'Error:\n Interface ' + self.interface_name \ 117 # interface_name is required 118 interface_name = Non variable [all...] |
p2p_flush.py | 17 print " %s -i <interface_name> \ " \ 36 global interface_name 49 def __init__(self,interface_name,wpas_dbus_interface,timeout): 51 self.interface_name = interface_name 83 self.interface_name) 85 error = 'Error:\n Interface ' + self.interface_name \ 117 # interface_name is required 118 interface_name = None variable 136 interface_name = valu [all...] |
p2p_stop_find.py | 15 print " %s -i <interface_name> \ " \ 38 global interface_name 51 def __init__(self,interface_name,wpas_dbus_interface,timeout): 53 self.interface_name = interface_name 85 self.interface_name) 87 error = 'Error:\n Interface ' + self.interface_name \ 122 # interface_name is required 123 interface_name = None variable 141 interface_name = valu [all...] |
p2p_find.py | 17 print " %s -i <interface_name> [-t <timeout>] \ " \ 40 global interface_name 53 def __init__(self,interface_name,wpas_dbus_interface,timeout): 56 self.interface_name = interface_name 87 self.interface_name) 89 error = 'Error:\n Interface ' + self.interface_name \ 128 # interface_name is required 129 interface_name = None variable 147 interface_name = valu [all...] |
p2p_group_add.py | 15 print " %s -i <interface_name> [-p <persistent>] \ " \ 46 global interface_name 64 def __init__(self,interface_name,wpas_dbus_interface,persistent,frequency, 67 self.interface_name = interface_name 101 self.interface_name) 103 error = 'Error:\n Interface ' + self.interface_name \ 164 # interface_name is required 165 interface_name = None variable 183 interface_name = valu [all...] |
p2p_invite.py | 15 print " %s -i <interface_name> -a <addr> \ " \ 45 global interface_name 62 def __init__(self,interface_name,wpas_dbus_interface,addr, 65 self.interface_name = interface_name 98 self.interface_name) 100 error = 'Error:\n Interface ' + self.interface_name \ 146 # interface_name is required 147 interface_name = None variable 165 interface_name = valu [all...] |
p2p_listen.py | 17 print " %s -i <interface_name> [-t <timeout>] \ " \ 37 global interface_name 50 def __init__(self,interface_name,wpas_dbus_interface,timeout): 53 self.interface_name = interface_name 84 self.interface_name) 86 error = 'Error:\n Interface ' + self.interface_name \ 118 # interface_name is required 119 interface_name = None variable 137 interface_name = valu [all...] |
/external/chromium_org/ppapi/native_client/tests/ppapi_browser/bad/ |
ppapi_bad_get_ppp_instance_crash.cc | 28 PP_EXPORT const void* PPP_GetInterface(const char* interface_name) { 29 printf("PPP_GetInterface(%s)\n", interface_name); 30 if (0 == std::strcmp(interface_name, PPP_INSTANCE_INTERFACE)) // Required.
|
ppapi_bad_no_ppp_instance.cc | 34 PP_EXPORT const void* PPP_GetInterface(const char* interface_name) { 35 printf("PPP_GetInterface(%s)\n", interface_name); 36 if (0 == std::strcmp(interface_name, PPP_INSTANCE_INTERFACE)) // Required.
|
ppapi_bad_get_ppp_messaging_crash.cc | 65 PP_EXPORT const void* PPP_GetInterface(const char* interface_name) { 66 printf("PPP_GetInterface(%s)\n", interface_name); 67 if (0 == std::strcmp(interface_name, PPP_INSTANCE_INTERFACE)) // Required. 69 if (0 == std::strcmp(interface_name, PPP_MESSAGING_INTERFACE))
|
ppapi_bad_get_ppp_printing_crash.cc | 65 PP_EXPORT const void* PPP_GetInterface(const char* interface_name) { 66 printf("PPP_GetInterface(%s)\n", interface_name); 67 if (0 == std::strcmp(interface_name, PPP_INSTANCE_INTERFACE)) // Required. 69 if (0 == std::strcmp(interface_name, PPP_PRINTING_DEV_INTERFACE))
|
ppapi_bad_event_replay_crash.cc | 60 PP_EXPORT const void* PPP_GetInterface(const char* interface_name) { 61 printf("PPP_GetInterface(%s)\n", interface_name); 62 if (0 == std::strcmp(interface_name, PPP_INSTANCE_INTERFACE)) // Required.
|
ppapi_bad_ppp_instance_didcreate.cc | 64 PP_EXPORT const void* PPP_GetInterface(const char* interface_name) { 65 printf("PPP_GetInterface(%s)\n", interface_name); 66 if (0 == std::strcmp(interface_name, PPP_INSTANCE_INTERFACE)) // Required.
|
ppapi_bad_ppp_instance_didcreate_crash.cc | 55 PP_EXPORT const void* PPP_GetInterface(const char* interface_name) { 56 printf("PPP_GetInterface(%s)\n", interface_name); 57 if (0 == std::strcmp(interface_name, PPP_INSTANCE_INTERFACE)) // Required.
|
/external/chromium_org/ppapi/native_client/tests/ppapi_browser/manifest/ |
manifest_bad.cc | 34 PP_EXPORT const void* PPP_GetInterface(const char* interface_name) { 35 printf("PPP_GetInterface(%s)\n", interface_name); 36 if (0 == std::strcmp(interface_name, PPP_INSTANCE_INTERFACE)) // Required.
|
/external/chromium_org/dbus/ |
object_manager.cc | 71 void ObjectManager::RegisterInterface(const std::string& interface_name, 73 interface_map_[interface_name] = interface; 76 void ObjectManager::UnregisterInterface(const std::string& interface_name) { 77 InterfaceMap::iterator iter = interface_map_.find(interface_name); 93 const std::string& interface_name) { 101 object->properties_map.find(interface_name); 119 const std::string& interface_name) { 126 object->properties_map.find(interface_name); 181 void ObjectManager::InterfacesAddedConnected(const std::string& interface_name, 206 const std::string& interface_name, 223 std::string interface_name; local [all...] |
mock_exported_object.h | 23 bool(const std::string& interface_name, 27 void(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/ |
instance.cc | 28 template <> const char* interface_name<PPB_Console_1_0>() { function in namespace:pp::__anon9755 32 template <> const char* interface_name<PPB_InputEvent_1_0>() { function in namespace:pp::__anon9755 36 template <> const char* interface_name<PPB_Instance_1_0>() { function in namespace:pp::__anon9755 40 template <> const char* interface_name<PPB_Messaging_1_0>() { function in namespace:pp::__anon9755 147 void Instance::AddPerInstanceObject(const std::string& interface_name, 151 PP_DCHECK(interface_name_to_objects_.find(interface_name) == 153 interface_name_to_objects_[interface_name] = object; 156 void Instance::RemovePerInstanceObject(const std::string& interface_name, 159 interface_name); 176 const std::string& interface_name, [all...] |
module_impl.h | 20 template <typename T> const char* interface_name() { function in namespace:pp::__anon9757 26 pp::Module::Get()->GetBrowserInterface(interface_name<T>()));
|
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/ |
compute_dependencies.py | 113 def get_implemented_interfaces_from_idl(file_contents, interface_name): 116 if left_identifier != interface_name: 117 raise IdlBadFilenameError("Identifier on the left of the 'implements' statement should be %s in %s.idl, but found %s" % (interface_name, interface_name, left_identifier)) 161 def generate_constructor_attribute_list(interface_name, extended_attributes): 171 attribute_string = 'attribute {interface_name}Constructor {interface_name}'.format(interface_name=interface_name) 182 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/third_party/WebKit/Source/bindings/scripts/unstable/ |
interface_dependency_resolver.py | 72 interface_name, _ = os.path.splitext(basename) 73 self.additional_interfaces.add(interface_name) 76 def resolve_dependencies(self, definitions, interface_name): 91 dependency_idl_filenames = self.compute_dependency_idl_files(interface_name) 95 # <interface_name>.idl MUST contain the interface "interface_name" or 96 # exception "interface_name", unless it is a dependency (e.g., 98 if interface_name in definitions.exceptions: 102 target_interface = definitions.interfaces[interface_name] 104 raise InterfaceNotFoundError('Could not find interface or exception "{0}" in {0}.idl'.format(interface_name)) [all...] |