HomeSort by relevance Sort by last modified time
    Searched refs:iface (Results 126 - 150 of 234) sorted by null

1 2 3 4 56 7 8 910

  /external/wpa_supplicant_6/wpa_supplicant/
ctrl_iface.c 1844 struct wpa_interface iface; local
1951 struct wpa_interface_info *iface = NULL, *last = NULL, *tmp; local
    [all...]
  /frameworks/base/tools/aidl/
aidl.cpp 723 interface_type* iface = (interface_type*)malloc( local
725 memset(iface, 0, sizeof(interface_type));
726 iface->document_item.item_type = INTERFACE_TYPE;
727 iface->interface_token.lineno = lineno;
728 iface->interface_token.data = strdup(type);
729 iface->package = packagename ? strdup(packagename) : NULL;
730 iface->name.lineno = lineno;
731 iface->name.data = strdup(classname);
732 iface->open_brace_token.lineno = lineno;
733 iface->open_brace_token.data = strdup("{")
905 interface_type* iface = (interface_type*)doc; local
    [all...]
generate_java.cpp 580 generate_interface_class(const interface_type* iface)
583 NAMES.Find(iface->package, iface->name.data));
587 interface->comment = gather_comments(iface->comments_token->extra);
595 NAMES.Find(iface->package, append(iface->name.data, ".Stub").c_str()),
601 NAMES.Find(iface->package,
602 append(iface->name.data, ".Stub.Proxy").c_str()),
611 interface_item_type* item = iface->interface_items;
625 interface_type* iface)
    [all...]
  /external/wpa_supplicant/
ctrl_iface.c 1336 struct wpa_interface iface; local
    [all...]
wpa_supplicant.c     [all...]
  /dalvik/dx/src/com/android/dx/cf/attrib/
AttCode.java 21 import com.android.dx.cf.iface.AttributeList;
  /dalvik/dx/src/com/android/dx/cf/iface/
StdAttributeList.java 17 package com.android.dx.cf.iface;
StdMember.java 17 package com.android.dx.cf.iface;
  /device/samsung/crespo/alsa-lib/modules/mixer/simple/
sbase.h 48 snd_ctl_elem_iface_t iface; member in struct:helem_selector
  /external/iptables/
ip6tables-save.c 34 print_iface(char letter, const char *iface, const unsigned char *mask,
46 if (iface[i] != '\0')
47 printf("%c", iface[i]);
49 /* we can access iface[i-1] here, because
51 if (iface[i-1] != '\0')
iptables-save.c 40 print_iface(char letter, const char *iface, const unsigned char *mask,
52 if (iface[i] != '\0')
53 printf("%c", iface[i]);
55 /* we can access iface[i-1] here, because
57 if (iface[i-1] != '\0')
  /system/netd/
CommandListener.h 44 static int readInterfaceCounters(const char *iface, unsigned long *rx, unsigned long *tx);
NatController.cpp 86 bool NatController::interfaceExists(const char *iface) {
  /external/bluetooth/glib/gio/
gmemoryinputstream.c 99 static void g_memory_input_stream_seekable_iface_init (GSeekableIface *iface);
171 g_memory_input_stream_seekable_iface_init (GSeekableIface *iface)
173 iface->tell = g_memory_input_stream_tell;
174 iface->can_seek = g_memory_input_stream_can_seek;
175 iface->seek = g_memory_input_stream_seek;
176 iface->can_truncate = g_memory_input_stream_can_truncate;
177 iface->truncate_fn = g_memory_input_stream_truncate;
gmemoryoutputstream.c 90 static void g_memory_output_stream_seekable_iface_init (GSeekableIface *iface);
146 g_memory_output_stream_seekable_iface_init (GSeekableIface *iface)
148 iface->tell = g_memory_output_stream_tell;
149 iface->can_seek = g_memory_output_stream_can_seek;
150 iface->seek = g_memory_output_stream_seek;
151 iface->can_truncate = g_memory_output_stream_can_truncate;
152 iface->truncate_fn = g_memory_output_stream_truncate;
  /external/bluetooth/glib/gobject/
gtypemodule.c 142 g_type_module_iface_init (GTypePluginClass *iface)
144 iface->use_plugin = g_type_module_use_plugin;
145 iface->unuse_plugin = (void (*) (GTypePlugin *))g_type_module_unuse;
146 iface->complete_type_info = g_type_module_complete_type_info;
147 iface->complete_interface_info = g_type_module_complete_interface_info;
  /build/tools/droiddoc/src/
MethodInfo.java 70 for (ClassInfo iface: queue) {
71 for (MethodInfo me: iface.methods()) {
111 for (ClassInfo iface: queue) {
112 for (MethodInfo me: iface.methods()) {
146 for (ClassInfo iface: queue) {
147 for (MethodInfo me: iface.methods()) {
173 for (ClassInfo iface: queue) {
174 for (MethodInfo me: iface.methods()) {
179 return iface;
ClassInfo.java 250 for (ClassInfo iface: cl.mRealInterfaces) {
251 if (iface.checkLevel()) {
252 interfaces.add(iface);
254 gatherHiddenInterfaces(iface, interfaces);
392 for (ClassInfo iface: ifaces) {
393 if (iface != null) {
394 MethodInfo[] inhereted = iface.methods();
491 for (ClassInfo iface: mRealInterfaces) {
492 if (!iface.checkLevel()) {
493 gatherFields(this, iface, fields)
    [all...]
  /frameworks/base/services/java/com/android/server/
ThrottleService.java 150 InterfaceObserver(Handler handler, int msg, String iface) {
154 mIface = iface;
157 public void interfaceLinkStatusChanged(String iface, boolean link) {
159 if (TextUtils.equals(iface, mIface)) {
165 public void interfaceAdded(String iface) {
168 if (TextUtils.equals(iface, mIface)) {
173 public void interfaceRemoved(String iface) {}
222 // TODO - fetch for the iface
225 public synchronized long getResetTime(String iface) {
234 // TODO - fetch for the iface
    [all...]
  /dalvik/dx/src/com/android/dx/command/annotool/
Main.java 22 import com.android.dx.cf.iface.AttributeList;
23 import com.android.dx.cf.iface.Attribute;
  /dalvik/dx/src/com/android/dx/command/dump/
BaseDumper.java 20 import com.android.dx.cf.iface.Member;
21 import com.android.dx.cf.iface.ParseObserver;
DotDumper.java 23 import com.android.dx.cf.iface.Member;
24 import com.android.dx.cf.iface.Method;
25 import com.android.dx.cf.iface.ParseObserver;
  /external/bluetooth/bluez/network/
server.c 76 char *iface; /* DBus interface */ member in struct:network_server
681 g_free(ns->iface);
699 ns->iface, adapter_get_path(na->adapter));
767 ns->iface = g_strdup(NETWORK_SERVER_INTERFACE);
772 if (!g_dbus_register_interface(connection, path, ns->iface,
776 ns->iface);
787 DBG("Registered interface %s on path %s", ns->iface, path);
807 ns->iface);
  /external/dbus/dbus/
dbus-marshal-validate.c 782 const unsigned char *iface; local
799 iface = _dbus_string_get_const_data (str) + start;
800 end = iface + len;
801 s = iface;
960 const unsigned char *iface; local
977 iface = _dbus_string_get_const_data (str) + start;
978 end = iface + len;
979 s = iface;
  /libcore/luni/src/test/java/org/apache/harmony/sql/tests/java/sql/
TestHelper_Connection1.java 188 public boolean isWrapperFor(Class<?> iface) throws SQLException {
192 public <T> T unwrap(Class<T> iface) throws SQLException {

Completed in 482 milliseconds

1 2 3 4 56 7 8 910