HomeSort by relevance Sort by last modified time
    Searched defs:interface (Results 101 - 125 of 262) sorted by null

1 2 3 45 6 7 8 91011

  /frameworks/wilhelm/src/itf/
IObject.c 332 void *interface = NULL; local
349 // Can't get interface on an unrealized object unless pre-realize is ok
353 // Can't get the MuteSolo interface of an audio player if the channel count is
354 // mono, but _can_ get the MuteSolo interface if the channel count is unknown
360 interface = (char *) thiz + clazz->mInterfaces[index].mOffset;
361 // Note that interface has been gotten,
366 ((size_t *) interface)[0] ^= ~0;
370 // Can't get interface if uninitialized, initialized, suspended,
380 *(void **)pInterface = interface;
578 // Call the deinitializer for each currently initialized interface,
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/
decode_with_partial_drops.c 71 #define interface (vpx_codec_vp8_dx()) macro
242 printf("Using %s\n",vpx_codec_iface_name(interface));
245 res = vpx_codec_dec_init(&codec, interface, &dec_cfg, flags);
vp8_multi_resolution_encoder.c 27 #define interface (vpx_codec_vp8_cx()) macro
218 printf("Using %s\n",vpx_codec_iface_name(interface));
248 res[i] = vpx_codec_enc_config_default(interface, &cfg[i], 0);
328 if(vpx_codec_enc_init_multi(&codec[0], interface, &cfg[0], NUM_ENCODERS,
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
tools_common.h 128 vpx_codec_iface_t *(*const interface)(); member in struct:VpxInterface
  /system/bt/hci/src/
low_power_manager.c 46 // Our interface and modules we import
47 static const low_power_manager_t interface; variable
77 // Interface functions
233 static const low_power_manager_t interface = { variable
243 return &interface;
248 return &interface;
  /system/connectivity/shill/cellular/
cellular_capability_universal_cdma.cc 465 const string& interface,
468 SLOG(this, 2) << __func__ << "(" << interface << ")"; local
469 if (interface == MM_DBUS_INTERFACE_MODEM_MODEMCDMA) {
473 interface, changed_properties, invalidated_properties);
  /system/core/fastboot/
usb_osx.cpp 64 IOUSBInterfaceInterface190 **interface; member in struct:usb_handle
91 IOUSBInterfaceInterface190 **interface = NULL; local
116 ERR("Couldn't create a device interface iterator: (%08x)\n", kr);
137 // Now create the interface interface for the interface
141 (LPVOID*) &interface);
146 if (result || !interface) {
147 ERR("Couldn't create interface interface: (%08x)\n"
    [all...]
  /system/firewalld/
iptables.cc 53 // Interface names must be shorter than 'IFNAMSIZ' chars.
129 const std::string& interface) {
130 return ApplyVpnSetup(usernames, interface, true /* add */);
134 const std::string& interface) {
135 return ApplyVpnSetup(usernames, interface, false /* delete */);
139 const std::string& interface,
147 if (!IsValidInterfaceName(interface)) {
148 LOG(ERROR) << "Invalid interface name '" << interface << "'";
152 Hole hole = std::make_pair(port, interface);
161 << " on interface '" << interface << "'"; local
194 << " on interface '" << interface << "'"; local
    [all...]
  /system/tools/aidl/
aidl.cpp 128 fprintf(stderr, "%s:%d interface %s should be declared in a file"
140 const AidlInterface* interface = doc->GetInterface(); local
142 if (interface) {
143 return check_filename(filename, interface->GetPackage(),
144 interface->GetName(), interface->GetLine());
162 const AidlInterface* interface = doc->GetInterface(); local
164 if (interface)
165 return types->AddBinderType(*interface, filename);
284 const AidlInterface& interface,
634 unique_ptr<AidlInterface> interface; local
659 unique_ptr<AidlInterface> interface; local
714 const AidlInterface* interface = doc->GetInterface(); local
    [all...]
  /art/runtime/
art_method.cc 146 mirror::Class* interface = iftable->GetInterface(i); local
147 for (ArtMethod& interface_method : interface->GetVirtualMethods(pointer_size)) {
  /bionic/libc/kernel/uapi/linux/usb/
functionfs.h 66 __u8 interface; member in struct:usb_os_desc_header
  /development/ndk/platforms/android-3/include/linux/
usbdevice_fs.h 37 unsigned int interface; member in struct:usbdevfs_setinterface
49 unsigned int interface; member in struct:usbdevfs_getdriver
  /external/avahi/avahi-core/
internal.h 59 int interface; member in struct:AvahiLegacyUnicastReflectSlot
72 AvahiIfIndex interface; member in struct:AvahiEntry
185 int avahi_server_is_service_local(AvahiServer *s, AvahiIfIndex interface, AvahiProtocol protocol, const char *name);
186 int avahi_server_is_record_local(AvahiServer *s, AvahiIfIndex interface, AvahiProtocol protocol, AvahiRecord *record);
191 AvahiIfIndex interface,
  /external/avahi/avahi-dnsconfd/
main.c 82 AvahiIfIndex interface; member in struct:DNSServerInfo
99 static DNSServerInfo* get_server_info(AvahiIfIndex interface, AvahiProtocol protocol, const char *address) {
104 if (i->interface == interface &&
112 static DNSServerInfo* new_server_info(AvahiIfIndex interface, AvahiProtocol protocol, const char *address) {
118 i->interface = interface;
198 static char *concat_dns_servers(AvahiIfIndex interface) {
203 if (i->interface == interface || interface <= 0)
296 AvahiIfIndex interface; local
363 AvahiIfIndex interface = servers->interface; local
    [all...]
  /external/avahi/avahi-utils/
avahi-browse.c 80 AvahiIfIndex interface; member in struct:ServiceInfo
127 static ServiceInfo *find_service(AvahiIfIndex interface, AvahiProtocol protocol, const char *name, const char *type, const char *domain) {
131 if (i->interface == interface &&
154 static void print_service_line(Config *config, char c, AvahiIfIndex interface, AvahiProtocol protocol, const char *name, const char *type, const char *domain, int nl) {
168 interface != AVAHI_IF_UNSPEC ? if_indextoname(interface, ifname) : _("n/a"),
178 interface != AVAHI_IF_UNSPEC ? if_indextoname(interface, ifname) : _("n/a"),
188 AvahiIfIndex interface,
    [all...]
  /external/clang/test/Analysis/
inline.cpp 94 int interface() const { function in class:PR13569::Parent
118 x.interface();
129 x.interface();
142 int interface() const { function in class:PR13569_virtual::Parent
166 x.interface();
177 x.interface();
  /external/dbus/dbus/
dbus-marshal-validate.h 192 DECLARE_DBUS_NAME_CHECK(interface); variable
dbus-spawn-win.c 50 #undef interface macro
  /external/deqp/scripts/khr_util/
registry.py 82 class Interface(Object): pass
219 class Interface(Object):
365 # midpoints might not be included in the interface even though
379 return Interface(
412 def interface(registry, api, **kwargs): function
  /external/dhcpcd-6.8.2/
dhcpcd.h 56 /* If the interface does not support carrier status (ie PPP),
60 struct interface { struct
62 TAILQ_ENTRY(interface) next;
83 TAILQ_HEAD(if_head, interface);
174 void dhcpcd_dropinterface(struct interface *, const char *);
175 int dhcpcd_selectprofile(struct interface *, const char *);
178 void dhcpcd_initstate(struct interface *, unsigned long long);
  /external/kernel-headers/original/uapi/linux/usb/
functionfs.h 57 __u8 interface; member in struct:usb_os_desc_header
134 * | 0 | inteface | U8 | related interface number |
144 * | 0 | inteface | U8 | related interface number |
156 * | 0 | bFirstInterfaceNumber | U8 | index of the interface or of the 1st|
157 * | | | | interface in an IAD group |
268 * Returns reverse mapping of an interface. Called on EP0. If there
269 * is no such interface returns -EDOM. If function is not active
  /external/libchrome/dbus/
object_proxy.cc 39 // The D-Bus Object interface.
397 "type='signal',interface='org.freedesktop.DBus',"
428 base::StringPrintf("type='signal', interface='%s', path='%s'",
485 const std::string interface = signal->GetInterface(); local
488 statistics::AddReceivedSignal(service_name_, interface, member);
492 interface, member);
  /external/libusb/libusb/os/
linux_usbfs.h 52 unsigned int interface; member in struct:usbfs_setinterface
59 unsigned int interface; member in struct:usbfs_getdriver
107 int ifno; /* interface 0..N ; negative numbers reserved */
  /external/selinux/policycoreutils/gui/
polgengui.py 37 import sepolicy.interface namespace
332 for u in sepolicy.interface.get_user():
336 for a in sepolicy.interface.get_admin():
    [all...]
  /external/skia/src/gpu/gl/
GrGLCreateNullInterface.cpp 118 * The global-to-thread state object for the null interface. All null interfaces on the
148 // Functions not declared in GrGLBogusInterface.h (not common with the Debug GL interface).
346 GrGLInterface* interface = new GrGLInterface; local
348 interface->fStandard = kGL_GrGLStandard;
350 GrGLInterface::Functions* functions = &interface->fFunctions;
491 interface->fExtensions.init(kGL_GrGLStandard, functions->fGetString, functions->fGetStringi,
493 return interface;

Completed in 2337 milliseconds

1 2 3 45 6 7 8 91011