HomeSort by relevance Sort by last modified time
    Searched defs:interface (Results 76 - 100 of 232) sorted by null

1 2 34 5 6 7 8 910

  /external/chromium_org/tools/grit/grit/tool/
android2grd.py 19 from grit.tool import interface namespace
43 class Android2Grd(interface.Tool):
111 Overridden from grit.interface.Tool
152 Inherited from grit.interface.Tool.
  /external/chromium_org/v8/src/
interface.h 39 // interface ::= UNDETERMINED | VALUE | CONST | MODULE(exports)
40 // exports ::= {name : interface, ...}
57 class Interface : public ZoneObject {
62 static Interface* NewUnknown(Zone* zone) {
63 return new(zone) Interface(NONE);
66 static Interface* NewValue() {
67 static Interface value_interface(VALUE + FROZEN); // Cached.
71 static Interface* NewConst() {
72 static Interface value_interface(VALUE + CONST + FROZEN); // Cached.
76 static Interface* NewModule(Zone* zone)
176 Interface* interface() const { function in class:v8::internal::Interface::Iterator
    [all...]
variables.h 32 #include "interface.h"
83 Interface* interface = Interface::NewValue());
151 Interface* interface() const { return interface_; } function in class:v8::internal::Variable
184 Interface* interface_;
  /external/dnsmasq/src/
helper.c 47 char interface[IF_NAMESIZE]; member in struct:script_data
198 if (strlen(data.interface) != 0)
199 my_setenv("DNSMASQ_INTERFACE", data.interface, &err);
349 buf->interface[0] = 0;
356 strncpy(buf->interface, ifr.ifr_name, IF_NAMESIZE);
360 if_indextoname(lease->last_interface, buf->interface);
network.c 61 We allow these to be treated as aliases of another interface which does have
62 an IP address with --dhcp-bridge=interface,alias,alias */
73 my_syslog(LOG_WARNING, _("unknown interface %s in bridge-interface"), name);
127 /* check whether the interface IP has been added already
391 * for a single given irec (interface name and address) create
394 * to create just a single new listener dynamically when our interface
397 * iface - input of the new interface details to listen on
443 /* An interface may have an IPv6 address which is still undergoing DAD.
482 * Close the sockets listening on the given interface
902 char *interface; local
    [all...]
  /external/libmtp/src/
libusb-glue.h 3 * Low-level USB interface glue towards libusb.
53 uint8_t interface; member in struct:_PTP_USB
  /external/libusb/libusb/
descriptor.c 157 static void clear_interface(struct libusb_interface *interface)
162 if (interface->altsetting) {
163 for (i = 0; i < interface->num_altsetting; i++) {
166 interface->altsetting + i;
176 free((void *) interface->altsetting);
177 interface->altsetting = NULL;
183 struct libusb_interface *interface, unsigned char *buffer, int size,
195 interface->num_altsetting = 0;
199 (struct libusb_interface_descriptor *) interface->altsetting;
202 (interface->num_altsetting + 1))
338 struct libusb_interface *interface; local
    [all...]
  /external/libvpx/libvpx/
vp8_multi_resolution_encoder.c 26 #define interface (vpx_codec_vp8_cx()) macro
232 printf("Using %s\n",vpx_codec_iface_name(interface));
262 res[i] = vpx_codec_enc_config_default(interface, &cfg[i], 0);
342 if(vpx_codec_enc_init_multi(&codec[0], interface, &cfg[0], NUM_ENCODERS,
vp8_scalable_patterns.c 24 #define interface (vpx_codec_vp8_cx()) macro
162 printf("Using %s\n",vpx_codec_iface_name(interface));
165 res = vpx_codec_enc_config_default(interface, &cfg, 0);
625 if (vpx_codec_enc_init (&codec, interface, &cfg, 0))
  /external/skia/src/gpu/gl/
GrGLCreateNullInterface.cpp 14 // Functions not declared in GrGLBogusInterface.h (not common with the Debug GL interface).
264 // interface
267 GrGLInterface* interface = SkNEW(GrGLInterface); local
268 glInterface.reset(interface);
269 interface->fBindingsExported = kDesktop_GrGLBinding;
270 interface->fActiveTexture = nullGLActiveTexture;
271 interface->fAttachShader = nullGLAttachShader;
272 interface->fBeginQuery = nullGLBeginQuery;
273 interface->fBindAttribLocation = nullGLBindAttribLocation;
274 interface->fBindBuffer = nullGLBindBuffer
    [all...]
  /external/skia/src/gpu/gl/debug/
GrGLCreateDebugInterface.cpp 751 void setWrapped(GrGLInterface *interface) {
752 fWrapped.reset(interface);
755 // TODO: there are some issues w/ wrapping another GL interface inside the
756 // debug interface:
760 // "glInterface" pointer - i.e., treating the debug interface as a
768 // interface as a singleton (since there would be one for each
773 // the debug GL interface (assuming that the application will create
779 // and then pass the wrapped interface to the debug GL interface.
791 GrGLInterface* interface = SkNEW(GrDebugGLInterface) local
    [all...]
  /external/v8/src/
variables.h 32 #include "interface.h"
83 Interface* interface = Interface::NewValue());
158 Interface* interface() const { return interface_; } function in class:v8::internal::Variable
191 Interface* interface_;
  /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...]
  /system/core/adb/
usb_libusb.c 50 int interface; member in struct:usb_handle
218 libusb_release_interface(h->devh, h->interface);
242 libusb_release_interface(h->devh, h->interface);
249 check_usb_interface(libusb_interface *interface,
255 if (interface->num_altsetting == 0) {
256 D("check_usb_interface(): No interface settings\n");
260 libusb_interface_descriptor *idesc = &interface->altsetting[0];
263 D("check_usb_interface(): Interface have not 2 endpoints, ignoring\n");
284 D("check_usb_interface(): Forced Android interface protocol v.1\n");
313 if (check_usb_interface(&config->interface[i], desc, uh) != -1)
    [all...]
  /system/core/fastboot/
usb_osx.c 61 IOUSBInterfaceInterface190 **interface; member in struct:usb_handle
73 IOUSBInterfaceInterface190 **interface = NULL; local
99 ERR("Couldn't create a device interface iterator: (%08x)\n", kr);
120 // Now create the interface interface for the interface
124 (LPVOID) &interface);
129 if (result || !interface) {
130 ERR("Couldn't create interface interface: (%08x)\n"
    [all...]
  /art/runtime/mirror/
class.cc 195 os << "----- " << (IsInterface() ? "interface" : "class") << " "
210 Class* interface = kh.GetDirectInterface(i); local
211 const ClassLoader* cl = interface->GetClassLoader();
212 os << StringPrintf(" %2zd: %s (cl=%p)\n", i, PrettyClass(interface).c_str(), cl);
551 Class* interface = kh.GetDirectInterface(i); local
552 f = interface->FindStaticField(name, type);
572 Class* interface = kh.GetDirectInterface(i); local
573 f = interface->FindStaticField(dex_cache, dex_field_idx);
598 Class* interface = kh.GetDirectInterface(i); local
599 f = interface->FindStaticField(name, type)
    [all...]
  /bionic/libc/kernel/common/linux/
usbdevice_fs.h 44 unsigned int interface; member in struct:usbdevfs_setinterface
55 unsigned int interface; member in struct:usbdevfs_getdriver
  /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/chromium_org/chrome/browser/chromeos/policy/
device_status_collector.cc 450 // If the type isn't in |kDeviceTypeMap|, the interface is not relevant for
455 em::NetworkInterface* interface = request->add_network_interface(); local
456 interface->set_type(kDeviceTypeMap[type_idx].type_constant);
458 interface->set_mac_address((*device)->mac_address());
460 interface->set_meid((*device)->meid());
462 interface->set_imei((*device)->imei());
  /external/chromium_org/dbus/
object_proxy.cc 34 // The D-Bus Object interface.
43 // Gets the absolute signal name by concatenating the interface name and
396 "type='signal',interface='org.freedesktop.DBus',"
427 base::StringPrintf("type='signal', interface='%s', path='%s'",
484 const std::string interface = signal->GetInterface(); local
487 statistics::AddReceivedSignal(service_name_, interface, member);
491 interface, member);
  /external/chromium_org/net/tools/flip_server/
spdy_interface.cc 86 VLOG(2) << ACCEPTOR_CLIENT_IDENT << "SpdySM: Creating new HTTP interface";
236 SMInterface* interface = it->second; local
238 interface->ProcessWriteInput(data, len);
318 VLOG(2) << ACCEPTOR_CLIENT_IDENT << "SpdySM: Reset for new interface: "
  /external/chromium_org/ppapi/proxy/
ppapi_proxy_test.cc 58 // given interface name. In practice, there will either be only 1 GetInterface
70 const void* interface = observer->GetInterface(name); local
71 if (interface)
72 return interface;
  /external/clang/test/Analysis/
inline.cpp 93 int interface() const { function in class:PR13569::Parent
117 x.interface();
128 x.interface();
141 int interface() const { function in class:PR13569_virtual::Parent
165 x.interface();
176 x.interface();
  /external/dhcpcd/
dhcpcd.h 109 struct interface { struct
142 struct interface *next;
151 extern struct interface *ifaces;
154 struct interface *find_interface(const char *);
167 void start_reboot(struct interface *);
169 void send_decline(struct interface *);
170 void open_sockets(struct interface *);
171 void close_sockets(struct interface *);
172 void drop_dhcp(struct interface *, const char *);
173 void drop_interface(struct interface *, const char *)
    [all...]
  /external/kernel-headers/original/linux/
usbdevice_fs.h 60 unsigned int interface; member in struct:usbdevfs_setinterface
72 unsigned int interface; member in struct:usbdevfs_getdriver
113 int ifno; /* interface 0..N ; negative numbers reserved */

Completed in 863 milliseconds

1 2 34 5 6 7 8 910