/external/wpa_supplicant_8/hostapd/ |
D | main.c | 183 wpa_drivers[i]->global_init(iface->interfaces); in hostapd_driver_init() 262 hostapd_interface_init(struct hapd_interfaces *interfaces, const char *if_name, in hostapd_interface_init() argument 269 iface = hostapd_init(interfaces, config_fname); in hostapd_interface_init() 278 iface->interfaces = interfaces; in hostapd_interface_init() 325 struct hapd_interfaces *interfaces = signal_ctx; in handle_reload() local 328 hostapd_for_each_interface(interfaces, handle_reload_iface, NULL); in handle_reload() 339 static int hostapd_global_init(struct hapd_interfaces *interfaces, in hostapd_global_init() argument 357 interfaces->eloop_initialized = 1; in hostapd_global_init() 362 eloop_register_signal(SIGHUP, handle_reload, interfaces); in hostapd_global_init() 363 eloop_register_signal(SIGUSR1, handle_dump_state, interfaces); in hostapd_global_init() [all …]
|
/external/autotest/client/common_lib/cros/cfm/usb/ |
D | cfm_usb_devices.py | 25 interfaces=['uvcvideo', 'uvcvideo', 'usbhid'], 32 interfaces=['uvcvideo', 'uvcvideo', 'snd-usb-audio', 40 interfaces=['uvcvideo', 'uvcvideo', 'uvcvideo', 'uvcvideo'], 47 interfaces=['uvcvideo', 'uvcvideo', 'snd-usb-audio', 'snd-usb-audio'] 54 interfaces=['uvcvideo', 'uvcvideo', 'snd-usb-audio', 'snd-usb-audio'], 61 interfaces=['uvcvideo', 'uvcvideo', 'usbhid'], 68 interfaces=['uvcvideo', 'uvcvideo', 'usbhid'], 78 interfaces=['uvcvideo', 'uvcvideo', 'usbhid'], 86 interfaces=['snd-usb-audio', 'snd-usb-audio', 'snd-usb-audio', 'usbhid'], 94 interfaces=['snd-usb-audio', 'snd-usb-audio', 'snd-usb-audio', 'usbhid'], [all …]
|
/external/libchrome/mojo/public/cpp/bindings/tests/ |
D | BUILD.gn | 57 "//mojo/public/interfaces/bindings/tests:test_associated_interfaces", 58 "//mojo/public/interfaces/bindings/tests:test_export_component", 59 "//mojo/public/interfaces/bindings/tests:test_export_component2", 60 "//mojo/public/interfaces/bindings/tests:test_exported_import", 61 "//mojo/public/interfaces/bindings/tests:test_interfaces", 62 "//mojo/public/interfaces/bindings/tests:test_struct_traits_interfaces", 67 "//mojo/public/interfaces/bindings/tests/data/validation/", 80 "//mojo/public/interfaces/bindings/tests:test_interfaces_blink", 101 "//mojo/public/interfaces/bindings/tests:test_export_blink_component", 102 "//mojo/public/interfaces/bindings/tests:test_exported_import_blink", [all …]
|
/external/selinux/python/sepolgen/tests/ |
D | test_interfaces.py | 22 import sepolgen.interfaces as interfaces namespace 29 p = interfaces.Param() 40 ret = interfaces.av_extract_params(av, params) 45 ret = interfaces.av_extract_params(av, params) 55 ret = interfaces.av_extract_params(av, params) 65 ret = interfaces.av_extract_params(av, params) 75 ret = interfaces.av_extract_params(av, params) 202 i = interfaces.InterfaceSet() 205 self.assertEqual(len(i.interfaces), 1) 206 for key, interface in i.interfaces.items(): [all …]
|
/external/autotest/client/cros/cellular/mbim_compliance/ |
D | mbim_descriptor_cache.py | 115 interfaces = usb_descriptors.filter_descriptors( 119 interfaces, 129 interfaces, 138 interfaces, 162 interfaces = usb_descriptors.filter_descriptors( 166 interfaces, 172 interfaces, 182 interfaces, 191 interfaces, 200 interfaces, [all …]
|
/external/desugar/java/com/google/devtools/build/android/desugar/ |
D | EmulatedInterfaceRewriter.java | 46 String[] interfaces) { in visit() argument 52 if (interfaces != null && interfaces.length > 0) { in visit() 55 Collections.addAll(newInterfaces, interfaces); in visit() 56 for (String itf : interfaces) { in visit() 78 if (interfaces == null in visit() 80 : interfaces.length != newInterfaces.size()) { in visit() 81 interfaces = newInterfaces.toArray(EMPTY_ARRAY); in visit() 90 super.visit(version, access, name, signature, superName, interfaces); in visit()
|
/external/proguard/src/proguard/classfile/editor/ |
D | ClassEditor.java | 55 int[] interfaces = targetClass.u2interfaces; in addInterface() local 58 if (interfaces.length <= interfacesCount) in addInterface() 61 System.arraycopy(interfaces, 0, in addInterface() 64 interfaces = targetClass.u2interfaces; in addInterface() 73 interfaces[targetClass.u2interfacesCount++] = interfaceConstantIndex; in addInterface() 82 int[] interfaces = targetClass.u2interfaces; in removeInterface() local 87 System.arraycopy(interfaces, interfaceIndex+1, in removeInterface() 88 interfaces, interfaceIndex, in removeInterface() 92 interfaces[--targetClass.u2interfacesCount] = 0; in removeInterface() 103 int[] interfaces = targetClass.u2interfaces; in findInterfaceIndex() local [all …]
|
D | InterfacesEditor.java | 74 int[] interfaces = targetClass.u2interfaces; in deleteInterface() local 79 interfaces[index] = interfaces[index + 1]; in deleteInterface() 83 interfaces[interfacesCount] = 0; in deleteInterface() 97 int[] interfaces = targetClass.u2interfaces; in findInterfaceIndex() local 101 if (interfaces[index] == interfaceConstantIndex) in findInterfaceIndex()
|
/external/wpa_supplicant_8/src/ap/ |
D | hostapd.c | 64 int hostapd_for_each_interface(struct hapd_interfaces *interfaces, in hostapd_for_each_interface() argument 71 for (i = 0; i < interfaces->count; i++) { in hostapd_for_each_interface() 72 ret = cb(interfaces->iface[i], ctx); in hostapd_for_each_interface() 199 struct hapd_interfaces *interfaces = iface->interfaces; in hostapd_reload_config() local 212 if (iface->interfaces == NULL || in hostapd_reload_config() 213 iface->interfaces->config_read_cb == NULL) in hostapd_reload_config() 215 newconf = iface->interfaces->config_read_cb(iface->config_fname); in hostapd_reload_config() 233 hostapd_remove_iface(interfaces, hapd->conf->iface); in hostapd_reload_config() 234 iface = hostapd_init(interfaces, fname); in hostapd_reload_config() 242 iface->interfaces = interfaces; in hostapd_reload_config() [all …]
|
/external/libchrome/mojo/public/tools/bindings/pylib/mojom/generate/ |
D | test_support.py | 97 len(module1.interfaces) != len(module2.interfaces): 102 for i in range(len(module1.interfaces)): 103 if not InterfacesAreEqual(module1.interfaces[i], module2.interfaces[i]): 139 errors += EXPECT_EQ(1, len(module.interfaces)) 140 errors += EXPECT_EQ('Server', module.interfaces[0].name) 141 errors += EXPECT_EQ(1, len(module.interfaces[0].methods)) 142 errors += EXPECT_EQ('Foo', module.interfaces[0].methods[0].name) 143 errors += EXPECT_EQ(2, len(module.interfaces[0].methods[0].parameters)) 144 errors += EXPECT_EQ('foo', module.interfaces[0].methods[0].parameters[0].name) 146 module.interfaces[0].methods[0].parameters[0].kind) [all …]
|
/external/bcc/tests/python/ |
D | test_brb2.py | 72 allocated_interfaces = set(ipdb.interfaces.keys()) 88 ipdb.interfaces[veth_br_2_pem].up().commit() 94 br1.add_port(ipdb.interfaces[veth_pem_2_br]) 95 br1.add_port(ipdb.interfaces[veth_rt_2_br]) 118 ifindex = ipdb.interfaces[ifname].index 128 br1_ifindex = ipdb.interfaces[self.veth_br1_2_pem].index 129 br2_ifindex = ipdb.interfaces[self.veth_br2_2_pem].index 193 if self.br1 in ipdb.interfaces: ipdb.interfaces[self.br1].remove().commit() 194 if self.br2 in ipdb.interfaces: ipdb.interfaces[self.br2].remove().commit() 195 … if self.veth_pem_2_br1 in ipdb.interfaces: ipdb.interfaces[self.veth_pem_2_br1].remove().commit() [all …]
|
/external/grpc-grpc/src/python/grpcio_tests/tests/unit/beta/ |
D | _connectivity_channel_test.py | 18 from grpc.beta import interfaces 24 self.assertIsNotNone(interfaces.ChannelConnectivity.IDLE) 25 self.assertIsNotNone(interfaces.ChannelConnectivity.CONNECTING) 26 self.assertIsNotNone(interfaces.ChannelConnectivity.READY) 27 self.assertIsNotNone(interfaces.ChannelConnectivity.TRANSIENT_FAILURE) 28 self.assertIsNotNone(interfaces.ChannelConnectivity.FATAL_FAILURE)
|
D | _not_found_test.py | 19 from grpc.beta import interfaces 20 from grpc.framework.interfaces.face import face 46 interfaces.StatusCode.UNIMPLEMENTED) 54 interfaces.StatusCode.UNIMPLEMENTED) 56 interfaces.StatusCode.UNIMPLEMENTED)
|
/external/dexmaker/dexmaker-mockito-inline/src/main/java/com/android/dx/mockito/inline/ |
D | MockFeatures.java | 13 final Set<Class<?>> interfaces; field in MockFeatures 15 private MockFeatures(Class<T> mockedType, Set<Class<?>> interfaces) { in MockFeatures() argument 17 this.interfaces = Collections.unmodifiableSet(interfaces); in MockFeatures() 20 static <T> MockFeatures<T> withMockFeatures(Class<T> mockedType, Set<Class<?>> interfaces) { in withMockFeatures() argument 21 return new MockFeatures<>(mockedType, interfaces); in withMockFeatures()
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/strftime/ |
D | coverage.txt | 5 conformance/interfaces/strftime/1-1: build: FAILED: Compiler output: 7 conformance/interfaces/strftime/1-1.c: In function `main': 8 conformance/interfaces/strftime/1-1.c:67: warning: `%c' yields only last 2 digits of year in some l… 9 conformance/interfaces/strftime/1-1.c:95: warning: `%D' yields only last 2 digits of year 10 conformance/interfaces/strftime/1-1.c:132: warning: `%g' yields only last 2 digits of year 11 conformance/interfaces/strftime/1-1.c:312: warning: `%x' yields only last 2 digits of year in some … 12 conformance/interfaces/strftime/1-1.c:330: warning: `%y' yields only last 2 digits of year
|
/external/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/ |
D | MockFeatures.java | 15 final Set<Class<?>> interfaces; field in MockFeatures 19 …private MockFeatures(Class<T> mockedType, Set<Class<?>> interfaces, SerializableMode serializableM… in MockFeatures() argument 21 this.interfaces = Collections.unmodifiableSet(interfaces); in MockFeatures() 27 Set<Class<?>> interfaces, in withMockFeatures() argument 30 return new MockFeatures<T>(mockedType, interfaces, serializableMode, stripAnnotations); in withMockFeatures()
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/ |
D | ImmutableClassDef.java | 56 @Nonnull protected final ImmutableList<String> interfaces; field in ImmutableClassDef 67 @Nullable Collection<String> interfaces, in ImmutableClassDef() argument 82 …this.interfaces = interfaces==null ? ImmutableList.<String>of() : ImmutableList.copyOf(interfaces); in ImmutableClassDef() 94 @Nullable Collection<String> interfaces, in ImmutableClassDef() argument 104 …this.interfaces = interfaces==null ? ImmutableList.<String>of() : ImmutableList.copyOf(interfaces); in ImmutableClassDef() 116 @Nullable ImmutableList<String> interfaces, in ImmutableClassDef() argument 126 this.interfaces = ImmutableUtils.nullToEmptyList(interfaces); in ImmutableClassDef() 155 @Nonnull @Override public ImmutableList<String> getInterfaces() { return interfaces; } in getInterfaces()
|
/external/iputils/ |
D | rdisc.c | 155 static struct interface *interfaces; variable 611 ap->ira_addr = interfaces[i].localaddr.s_addr; in advertise() 612 ap->ira_preference = htonl(interfaces[i].preference); in advertise() 621 &interfaces[i]); in advertise() 624 &interfaces[i]); in advertise() 626 struct interface *ifp = &interfaces[i]; in advertise() 1002 if ((interfaces[i].flags & (IFF_BROADCAST|IFF_POINTOPOINT)) == 0) in sendbcast() 1004 cc = sendbcastif(s, packet, packetlen, &interfaces[i]); in sendbcast() 1044 if ((interfaces[i].flags & (IFF_BROADCAST|IFF_POINTOPOINT|IFF_MULTICAST)) == 0) in sendmcast() 1046 cc = sendmcastif(s, packet, packetlen, sin, &interfaces[i]); in sendmcast() [all …]
|
/external/autotest/client/cros/tendo/ |
D | peerd_dbus_helper.py | 90 peer_objects = [(path, interfaces) 91 for path, interfaces in objects.iteritems() 93 DBUS_INTERFACE_PEER in interfaces)] 95 for peer_path, interfaces in peer_objects: 97 interfaces[DBUS_INTERFACE_SERVICE] 98 for path, interfaces in objects.iteritems() 100 DBUS_INTERFACE_SERVICE in interfaces)] 111 peer_properties = interfaces[DBUS_INTERFACE_PEER]
|
/external/apache-commons-bcel/src/main/java/org/apache/bcel/classfile/ |
D | JavaClass.java | 61 private int[] interfaces; // implemented interfaces field in JavaClass 120 … final int minor, final int access_flags, final ConstantPool constant_pool, int[] interfaces, in JavaClass() argument 123 if (interfaces == null) { in JavaClass() 124 interfaces = new int[0]; in JavaClass() 141 this.interfaces = interfaces; in JavaClass() 173 interface_names = new String[interfaces.length]; in JavaClass() 174 for (int i = 0; i < interfaces.length; i++) { in JavaClass() 175 final String str = constant_pool.getConstantString(interfaces[i], Const.CONSTANT_Class); in JavaClass() 197 … final int minor, final int access_flags, final ConstantPool constant_pool, final int[] interfaces, in JavaClass() argument 200 constant_pool, interfaces, fields, methods, attributes, HEAP); in JavaClass() [all …]
|
/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/ |
D | ClassGen.java | 91 final String[] interfaces, final ConstantPoolGen cp) { in ClassGen() argument 104 if (interfaces != null) { in ClassGen() 105 for (final String interface1 : interfaces) { in ClassGen() 121 final String[] interfaces) { in ClassGen() argument 122 this(class_name, super_class_name, file_name, access_flags, interfaces, in ClassGen() 146 final String[] interfaces = clazz.getInterfaceNames(); in ClassGen() local 147 for (final String interface1 : interfaces) { in ClassGen() 201 final int[] interfaces = getInterfaces(); in getJavaClass() local 217 super.getAccessFlags(), _cp, interfaces, fields, methods, attributes); in getJavaClass() 459 final String[] interfaces = new String[size]; in getInterfaceNames() local [all …]
|
/external/wpa_supplicant_8/wpa_supplicant/dbus/ |
D | dbus_new_introspect.c | 20 struct interfaces { struct 27 static struct interfaces * add_interface(struct dl_list *list, in add_interface() argument 30 struct interfaces *iface; in add_interface() 32 dl_list_for_each(iface, list, struct interfaces, list) { in add_interface() 37 iface = os_zalloc(sizeof(struct interfaces)); in add_interface() 100 struct interfaces *iface; in extract_interfaces_methods() 115 struct interfaces *iface; in extract_interfaces_signals() 130 struct interfaces *iface; in extract_interfaces_properties() 161 struct interfaces *iface, *n; in add_interfaces() 163 dl_list_for_each_safe(iface, n, list, struct interfaces, list) { in add_interfaces()
|
/external/turbine/java/com/google/turbine/binder/bound/ |
D | SourceHeaderBoundClass.java | 34 private final ImmutableList<ClassSymbol> interfaces; field in SourceHeaderBoundClass 40 ImmutableList<ClassSymbol> interfaces, in SourceHeaderBoundClass() argument 44 this.interfaces = interfaces; in SourceHeaderBoundClass() 54 public ImmutableList<ClassSymbol> interfaces() { in interfaces() method in SourceHeaderBoundClass 55 return interfaces; in interfaces()
|
/external/wpa_supplicant_8/hostapd/hidl/1.1/ |
D | hidl.cpp | 39 int hostapd_hidl_init(struct hapd_interfaces *interfaces) in hostapd_hidl_init() argument 50 hidl_fd, hostapd_hidl_sock_handler, interfaces, NULL) < 0) in hostapd_hidl_init() 52 service = new Hostapd(interfaces); in hostapd_hidl_init() 59 hostapd_hidl_deinit(interfaces); in hostapd_hidl_init() 63 void hostapd_hidl_deinit(struct hapd_interfaces *interfaces) in hostapd_hidl_deinit() argument
|
/external/javaparser/javaparser-symbol-solver-logic/src/main/java/com/github/javaparser/symbolsolver/logic/ |
D | AbstractClassDeclaration.java | 58 List<ResolvedReferenceType> interfaces = new ArrayList<>(); in getAllInterfaces() local 60 interfaces.add(interfaceDeclaration); in getAllInterfaces() 61 interfaces.addAll(interfaceDeclaration.getAllInterfacesAncestors()); in getAllInterfaces() 65 interfaces.addAll(superClass.getAllInterfacesAncestors()); in getAllInterfaces() 67 return interfaces; in getAllInterfaces()
|