HomeSort by relevance Sort by last modified time
    Searched refs:iface (Results 151 - 175 of 323) sorted by null

1 2 3 4 5 67 8 91011>>

  /dalvik/dx/src/com/android/dx/cf/iface/
StdMember.java 17 package com.android.dx.cf.iface;
  /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')
  /external/opencore/nodes/common/include/
pvmf_meta_data_extension.h 152 virtual bool queryInterface(const PVUuid& uuid, PVInterface*& iface) = 0;
pvmf_track_level_info_extension.h 52 virtual bool queryInterface(const PVUuid& uuid, PVInterface*& iface) = 0;
pvmp4h263encextension.h 78 * @param iface Output parameter where a pointer to an instance of the requested
82 virtual bool queryInterface(const PVUuid& uuid, PVInterface*& iface) = 0;
  /external/opencore/nodes/streaming/streamingmanager/src/
pvmf_streaming_manager_ext_interface.h 94 OSCL_IMPORT_REF virtual bool queryInterface(const PVUuid& uuid, PVInterface*& iface) = 0;
  /external/opencore/pvmi/pvmf/include/
pvmf_media_cmd.h 49 OSCL_IMPORT_REF virtual bool queryInterface(const PVUuid& uuid, PVInterface*& iface);
pvmf_media_data.h 85 OSCL_IMPORT_REF virtual bool queryInterface(const PVUuid& uuid, PVInterface*& iface);
  /system/netd/
CommandListener.h 44 static int readInterfaceCounters(const char *iface, unsigned long *rx, unsigned long *tx);
  /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/opencore/nodes/streaming/medialayernode/include/
pvmf_medialayer_node.h 177 OSCL_IMPORT_REF virtual bool queryInterface(const PVUuid& uuid, PVInterface*& iface) = 0;
214 bool queryInterface(const PVUuid& uuid, PVInterface*& iface)
219 iface = this;
224 iface = NULL;
351 virtual bool queryInterface(const PVUuid& uuid, PVInterface*& iface)
353 iface = NULL;
372 return (iExtensionInterface->queryInterface(uuid, iface));
  /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...]
  /external/wpa_supplicant/
wpa_supplicant.c     [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...]
  /frameworks/base/tools/aidl/
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...]
  /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;
  /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;
  /external/opencore/engines/2way/test/src/
video_only_test.cpp 243 PVMp4H263EncExtensionInterface *iface = (PVMp4H263EncExtensionInterface *)iVidEncIFace; local
244 iface->RequestIFrame();
  /external/opencore/nodes/pvmp4ffcomposernode/include/
pvmp4ffcn_clipconfig.h 123 * @param iface Output parameter where pointer to an instance of the
127 virtual bool queryInterface(const PVUuid& uuid, PVInterface*& iface) = 0;
  /external/opencore/protocols/rtsp_client_engine/src/
pvrtspenginenodeextensioninterface_impl.h 43 OSCL_IMPORT_REF virtual bool queryInterface(const PVUuid& uuid, PVInterface*& iface);

Completed in 833 milliseconds

1 2 3 4 5 67 8 91011>>