Searched defs:interfaces (Results 26 - 50 of 75) sorted by relevance

123

/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DClassDefItem.java58 /** {@code null-ok;} list of implemented interfaces */
59 private TypeListItem interfaces; field in class:ClassDefItem
84 * @param interfaces {@code non-null;} list of implemented interfaces
89 CstType superclass, TypeList interfaces, CstString sourceFile) {
99 if (interfaces == null) {
100 throw new NullPointerException("interfaces == null");
106 this.interfaces =
107 (interfaces.size() == 0) ? null : new TypeListItem(interfaces);
88 ClassDefItem(CstType thisClass, int accessFlags, CstType superclass, TypeList interfaces, CstString sourceFile) argument
[all...]
/external/doclava/src/com/google/doclava/
H A DPackageInfo.java132 ClassInfo.makeLinkListHDF(data, base + ".interfaces", interfaces());
140 public ClassInfo[] interfaces() { method in class:PackageInfo
143 ClassInfo.sortByName(filterHidden(Converter.convertClasses(mPackage.interfaces())));
H A DClassInfo.java110 public void init(TypeInfo typeInfo, ArrayList<ClassInfo> interfaces, argument
118 mRealInterfaces = new ArrayList<ClassInfo>(interfaces);
268 private static void gatherHiddenInterfaces(ClassInfo cl, HashSet<ClassInfo> interfaces) { argument
271 interfaces.add(iface);
273 gatherHiddenInterfaces(iface, interfaces);
278 public ArrayList<ClassInfo> interfaces() { method in class:ClassInfo
281 HashSet<ClassInfo> interfaces = new HashSet<ClassInfo>();
284 gatherHiddenInterfaces(superclass, interfaces);
287 gatherHiddenInterfaces(this, interfaces);
288 mInterfaces = new ArrayList<ClassInfo>(interfaces);
[all...]
/external/grub/netboot/
H A Dsmc9000.c40 static const char *interfaces[ 2 ] = { "TP", "AUI" }; variable
474 if_string = interfaces[media - 1];
/external/wpa_supplicant_8/hostapd/
H A Dmain.c283 hostapd_interface_init(struct hapd_interfaces *interfaces, argument
293 iface->interfaces = interfaces;
340 struct hapd_interfaces *interfaces = signal_ctx; local
343 hostapd_for_each_interface(interfaces, handle_reload_iface, NULL);
350 struct hapd_interfaces *interfaces = signal_ctx; local
351 hostapd_for_each_interface(interfaces, handle_dump_state_iface, NULL);
357 static int hostapd_global_init(struct hapd_interfaces *interfaces, argument
379 eloop_register_signal(SIGHUP, handle_reload, interfaces);
380 eloop_register_signal(SIGUSR1, handle_dump_state, interfaces);
512 hostapd_get_global_ctrl_iface(struct hapd_interfaces *interfaces, const char *path) argument
536 struct hapd_interfaces interfaces; local
[all...]
H A Dctrl_iface.c1152 static int hostapd_ctrl_iface_add(struct hapd_interfaces *interfaces, argument
1155 if (hostapd_add_iface(interfaces, buf) < 0) {
1163 static int hostapd_ctrl_iface_remove(struct hapd_interfaces *interfaces, argument
1166 if (hostapd_remove_iface(interfaces, buf) < 0) {
1177 void *interfaces = eloop_ctx; local
1200 if (hostapd_ctrl_iface_add(interfaces, buf + 4) < 0)
1203 if (hostapd_ctrl_iface_remove(interfaces, buf + 7) < 0)
1336 void hostapd_global_ctrl_iface_deinit(struct hapd_interfaces *interfaces) argument
1340 if (interfaces->global_ctrl_sock > -1) {
1341 eloop_unregister_read_sock(interfaces
[all...]
/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_new_introspect.c20 struct interfaces { struct
27 static struct interfaces * add_interface(struct dl_list *list,
30 struct interfaces *iface;
32 dl_list_for_each(iface, list, struct interfaces, list) { argument
37 iface = os_zalloc(sizeof(struct interfaces));
98 struct interfaces *iface;
112 struct interfaces *iface;
126 struct interfaces *iface;
136 * extract_interfaces - Extract interfaces from methods, signals and props
138 * @obj_dsc: Description of object from which interfaces wil
157 dl_list_for_each_safe(iface, n, list, struct interfaces, list) argument
[all...]
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dwps_upnp_i.h118 * multiple wireless interfaces sharing the same UPnP device instance. Each
125 struct dl_list interfaces; /* struct upnp_wps_device_interface */ member in struct:upnp_wps_device_sm
/external/wpa_supplicant_8/src/wps/
H A Dwps_upnp_i.h118 * multiple wireless interfaces sharing the same UPnP device instance. Each
125 struct dl_list interfaces; /* struct upnp_wps_device_interface */ member in struct:upnp_wps_device_sm
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dwps_upnp_i.h118 * multiple wireless interfaces sharing the same UPnP device instance. Each
125 struct dl_list interfaces; /* struct upnp_wps_device_interface */ member in struct:upnp_wps_device_sm
/external/dexmaker/src/main/java/com/google/dexmaker/stock/
H A DProxyBuilder.java51 * interfaces.
135 private Set<Class<?>> interfaces = new HashSet<Class<?>>(); field in class:ProxyBuilder
170 public ProxyBuilder<T> implementing(Class<?>... interfaces) { argument
171 for (Class<?> i : interfaces) {
175 this.interfaces.add(i);
238 && interfaces.equals(asSet(proxyClass.getInterfaces()))) {
584 TypeId<?>[] result = new TypeId<?>[interfaces.size()];
586 for (Class<?> implemented : interfaces) {
601 for (Class<?> c : interfaces) {
/external/javassist/src/main/javassist/bytecode/
H A DClassFile.java39 int[] interfaces; field in class:ClassFile
132 interfaces = null;
193 if (interfaces != null) {
194 int n = interfaces.length;
196 interfaces[i]
197 = cp.addClassInfo(constPool.getClassInfo(interfaces[i]));
496 * Returns the names of the interfaces implemented by the class.
504 if (interfaces == null)
507 int n = interfaces.length;
510 list[i] = constPool.getClassInfo(interfaces[
[all...]
H A DClassFileWriter.java120 * @param interfaces implemented interfaces.
128 int[] interfaces, AttributeWriter aw) {
133 if (interfaces == null)
136 int n = interfaces.length;
139 output.writeShort(interfaces[i]);
163 * @param interfaces implemented interfaces.
172 int[] interfaces, AttributeWriter aw)
180 if (interfaces
127 end(int accessFlags, int thisClass, int superClass, int[] interfaces, AttributeWriter aw) argument
170 end(DataOutputStream out, int accessFlags, int thisClass, int superClass, int[] interfaces, AttributeWriter aw) argument
[all...]
H A DSignatureAttribute.java178 ClassType[] interfaces; field in class:SignatureAttribute.ClassSignature
182 interfaces = i;
200 * Returns the super interfaces.
202 * @return a zero-length array if the super interfaces are not specified.
204 public ClassType[] getInterfaces() { return interfaces; }
214 if (interfaces.length > 0) {
216 Type.toString(sbuf, interfaces);
/external/kernel-headers/original/linux/
H A Ddevice.h146 struct list_head interfaces; member in class:__anon6843
147 struct semaphore sem; /* locks both the children and interfaces lists */
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
H A DClassPath.java585 * This is a list of all of the interfaces that a class implements, either directly or indirectly. It includes
586 * all interfaces implemented by the superclass, and all super-interfaces of any implemented interface. The
612 //this is a list of all the interfaces that the class implements directory, or any super interfaces of those
613 //interfaces. It is generated in such a way that it is ordered in the same way as dalvik's ClassObject.iftable,
736 * Returns true if this class implements the given interface. This searches the interfaces that this class
738 * any of these interfaces.
819 if (classInfo.interfaces != null) {
820 for (String interfaceType: classInfo.interfaces) {
1143 public final String[] interfaces; field in class:ClassPath.TempClassInfo
[all...]
/external/wpa_supplicant_6/wpa_supplicant/
H A Dwpa_priv.c1146 struct wpa_priv_interface *interfaces = NULL, *iface; local
1193 iface->next = interfaces;
1194 interfaces = iface;
1206 iface = interfaces;
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dhostapd.c45 int hostapd_for_each_interface(struct hapd_interfaces *interfaces, argument
52 for (i = 0; i < interfaces->count; i++) {
53 ret = cb(interfaces->iface[i], ctx);
117 if (iface->interfaces == NULL ||
118 iface->interfaces->config_read_cb == NULL)
120 newconf = iface->interfaces->config_read_cb(iface->config_fname);
291 if (hapd->iface->interfaces &&
292 hapd->iface->interfaces->ctrl_iface_deinit)
293 hapd->iface->interfaces->ctrl_iface_deinit(hapd);
776 if (hapd->iface->interfaces
1153 hostapd_iface_alloc(struct hapd_interfaces *interfaces) argument
1177 hostapd_config_alloc(struct hapd_interfaces *interfaces, const char *ifname, const char *ctrl_iface) argument
1215 hostapd_data_alloc( struct hapd_interfaces *interfaces, struct hostapd_config *conf) argument
1246 hostapd_add_iface(struct hapd_interfaces *interfaces, char *buf) argument
1310 hostapd_remove_iface(struct hapd_interfaces *interfaces, char *buf) argument
[all...]
H A Dhostapd.h33 int (*for_each_interface)(struct hapd_interfaces *interfaces,
197 struct hapd_interfaces *interfaces; member in struct:hostapd_iface
259 int hostapd_for_each_interface(struct hapd_interfaces *interfaces,
/external/wpa_supplicant_8/src/ap/
H A Dhostapd.c45 int hostapd_for_each_interface(struct hapd_interfaces *interfaces, argument
52 for (i = 0; i < interfaces->count; i++) {
53 ret = cb(interfaces->iface[i], ctx);
117 if (iface->interfaces == NULL ||
118 iface->interfaces->config_read_cb == NULL)
120 newconf = iface->interfaces->config_read_cb(iface->config_fname);
291 if (hapd->iface->interfaces &&
292 hapd->iface->interfaces->ctrl_iface_deinit)
293 hapd->iface->interfaces->ctrl_iface_deinit(hapd);
776 if (hapd->iface->interfaces
1153 hostapd_iface_alloc(struct hapd_interfaces *interfaces) argument
1177 hostapd_config_alloc(struct hapd_interfaces *interfaces, const char *ifname, const char *ctrl_iface) argument
1215 hostapd_data_alloc( struct hapd_interfaces *interfaces, struct hostapd_config *conf) argument
1246 hostapd_add_iface(struct hapd_interfaces *interfaces, char *buf) argument
1310 hostapd_remove_iface(struct hapd_interfaces *interfaces, char *buf) argument
[all...]
H A Dhostapd.h33 int (*for_each_interface)(struct hapd_interfaces *interfaces,
197 struct hapd_interfaces *interfaces; member in struct:hostapd_iface
259 int hostapd_for_each_interface(struct hapd_interfaces *interfaces,
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dhostapd.c45 int hostapd_for_each_interface(struct hapd_interfaces *interfaces, argument
52 for (i = 0; i < interfaces->count; i++) {
53 ret = cb(interfaces->iface[i], ctx);
117 if (iface->interfaces == NULL ||
118 iface->interfaces->config_read_cb == NULL)
120 newconf = iface->interfaces->config_read_cb(iface->config_fname);
291 if (hapd->iface->interfaces &&
292 hapd->iface->interfaces->ctrl_iface_deinit)
293 hapd->iface->interfaces->ctrl_iface_deinit(hapd);
776 if (hapd->iface->interfaces
1153 hostapd_iface_alloc(struct hapd_interfaces *interfaces) argument
1177 hostapd_config_alloc(struct hapd_interfaces *interfaces, const char *ifname, const char *ctrl_iface) argument
1215 hostapd_data_alloc( struct hapd_interfaces *interfaces, struct hostapd_config *conf) argument
1246 hostapd_add_iface(struct hapd_interfaces *interfaces, char *buf) argument
1310 hostapd_remove_iface(struct hapd_interfaces *interfaces, char *buf) argument
[all...]
H A Dhostapd.h33 int (*for_each_interface)(struct hapd_interfaces *interfaces,
197 struct hapd_interfaces *interfaces; member in struct:hostapd_iface
259 int hostapd_for_each_interface(struct hapd_interfaces *interfaces,
/external/wpa_supplicant_8/wpa_supplicant/
H A Dwpa_priv.c960 struct wpa_priv_interface *interfaces = NULL, *iface; local
1007 iface->next = interfaces;
1008 interfaces = iface;
1020 iface = interfaces;
/external/javassist/src/main/javassist/util/proxy/
H A DProxyFactory.java40 * the given interfaces. The calls of the methods inherited from the super class are
43 * the interfaces are also forwarded to the method handler.
126 * if its super class or any of its interfaces implement <code>java.io.Serializable</code>.
154 private Class[] interfaces; field in class:ProxyFactory
335 interfaces = null;
363 * Sets the interfaces of a proxy class.
366 interfaces = ifs;
372 * Obtains the interfaces set by <code>setInterfaces</code>.
376 public Class[] getInterfaces() { return interfaces; }
439 public String getKey(Class superClass, Class[] interfaces, byt argument
835 setInterfaces(ClassFile cf, Class[] interfaces) argument
[all...]

Completed in 6497 milliseconds

123