/external/android-clat/ |
config.c | 184 * generates the local ipv6 subnet when given the interface ip 186 * interface_ip - in: interface ip, out: local ipv6 host address 197 * finds the ipv6 subnet configured on the specified interface 199 * interface - network interface name 201 int subnet_from_interface(cnode *root, const char *interface) { 207 interface_ip = getinterface_ip(interface, AF_INET6); 209 logmsg(ANDROID_LOG_FATAL,"unable to find an ipv6 ip on interface %s",interface); 224 * uplink_interface - interface to use to reach the internet and supplier of address spac [all...] |
/external/chromium/chrome/browser/ui/cocoa/bookmarks/ |
bookmark_bar_controller.h | 125 // The interface for the bookmark bar controller's delegate. Currently, the 147 @interface BookmarkBarController : 357 @interface BookmarkBarController(BridgeRedirect) 376 @interface BookmarkBarController(InternalOrTestingAPI)
|
/external/dhcpcd/ |
bpf.c | 52 open_socket(struct interface *iface, int protocol) 138 send_raw_packet(const struct interface *iface, int protocol, 162 get_raw_packet(struct interface *iface, int protocol,
|
lpf.c | 68 open_socket(struct interface *iface, int protocol) 132 send_raw_packet(const struct interface *iface, int protocol, 165 get_raw_packet(struct interface *iface, int protocol,
|
/external/kernel-headers/original/linux/ |
wanrouter.h | 62 ROUTER_IFNEW, /* add interface */ 63 ROUTER_IFDEL, /* delete interface */ 64 ROUTER_IFSTAT, /* get interface status */ 82 #define WAN_IFNAME_SZ 15 /* max length of the interface name */ 217 char interface; /* RS-232/V.35, etc. */ member in struct:wandev_conf 337 /* link/interface configuration */ 389 * WAN interface (logical channel) configuration (for ROUTER_IFNEW IOCTL). 395 char name[WAN_IFNAME_SZ+1]; /* interface name, ASCIIZ */ 425 char interface; /* RS-232/V.35, etc. */ member in struct:wanif_conf 429 unsigned char if_down; /* brind down interface when disconnected * 481 char interface; \/* RS-232\/V.35, etc. *\/ member in struct:wan_device [all...] |
/frameworks/av/media/mtp/ |
MtpDevice.cpp | 67 struct usb_interface_descriptor *interface = (struct usb_interface_descriptor *)desc; local 69 if (interface->bInterfaceClass == USB_CLASS_STILL_IMAGE && 70 interface->bInterfaceSubClass == 1 && // Still Image Capture 71 interface->bInterfaceProtocol == 1) // Picture Transfer Protocol (PIMA 15470) 78 } else if (interface->bInterfaceClass == 0xFF && 79 interface->bInterfaceSubClass == 0xFF && 80 interface->bInterfaceProtocol == 0) { 81 char* interfaceName = usb_device_get_string(device, interface->iInterface); 129 // interface should be followed by three endpoints 157 if (usb_device_claim_interface(device, interface->bInterfaceNumber)) [all...] |
/hardware/qcom/audio/voice_processing/ |
voice_processing.c | 251 effect_handle_t *interface) 254 *interface = (effect_handle_t)&effect->itfe; 286 effect_handle_t *interface) 303 status = effect_create(&session->effects[id], session, interface); 474 // Effect Control Interface Implementation 651 // effect_handle_t interface implementation for effect 660 // Effect Library Interface Implementation 702 static int lib_release(effect_handle_t interface) 707 ALOGV("lib_release %p", interface); 711 struct effect_s *fx = (struct effect_s *)interface; [all...] |
/packages/experimental/procstatlog/ |
procstatreport.py | 125 <span style="font-size: 150%%">net: %(interface)s</span><br> 383 # Output network interface statistics 405 net, interface = key.split(":", 1) 406 interface_rx.setdefault(interface, {})[when] = rx 407 interface_tx.setdefault(interface, {})[when] = tx 411 for num, interface in enumerate(sorted(interface_rx.keys())): 412 rx, tx = interface_rx[interface], interface_tx[interface] 424 "interface": cgi.escape(interface), [all...] |
/external/qemu/ |
usb-linux.c | 310 int interface, nb_interfaces, nb_configurations; local 355 for (interface = 0; interface < nb_interfaces; interface++) { 357 ctrl.ifno = interface; 368 for (interface = 0; interface < nb_interfaces; interface++) { 369 ret = ioctl(dev->fd, USBDEVFS_CLAIMINTERFACE, &interface); 374 perror("husb: failed to claim interface"); 783 int interface, ret, length, i; local [all...] |
/external/libmtp/src/ |
libusb-glue.c | 3 * Low-level USB interface glue towards libusb. 104 uint8_t *interface, 214 * This checks if a device has an interface with MTP description. 230 * contain any MTP interface, update this the day 265 for (k = 0; k < dev->config[i].interface[j].num_altsetting; k++) { 266 /* Current interface descriptor */ 268 &dev->config[i].interface[j].altsetting[k]; 272 dev->config[i].interface[j].altsetting[k].iInterface, 280 fprintf(dumpfile, "Configuration %d, interface %d, altsetting %d:\n", i, j, k); 281 fprintf(dumpfile, " Interface description contains the string \"MTP\"\n") [all...] |
/system/core/libusbhost/ |
usbhost.c | 525 int usb_device_claim_interface(struct usb_device *device, unsigned int interface) 527 return ioctl(device->fd, USBDEVFS_CLAIMINTERFACE, &interface); 530 int usb_device_release_interface(struct usb_device *device, unsigned int interface) 532 return ioctl(device->fd, USBDEVFS_RELEASEINTERFACE, &interface); 536 unsigned int interface, int connect) 540 ctl.ifno = interface;
|
/external/kernel-headers/original/asm-x86/xen/ |
hypercall.h | 39 #include <xen/interface/xen.h> 40 #include <xen/interface/sched.h> 41 #include <xen/interface/physdev.h>
|
/external/libusb/libusb/ |
libusbi.h | 342 /* This is the interface that OS backends need to implement. 460 * to retrieve it from a kernel interface (some Linux setups can do this) 563 /* Claim an interface. When claimed, the application can then perform 564 * I/O to an interface's endpoints. 567 * Interface claiming is a logical operation that simply ensures that 568 * no other drivers/applications are using the interface, and after 569 * claiming, no other drivers/applicatiosn can use the interface because 574 * - LIBUSB_ERROR_NOT_FOUND if the interface does not exist 575 * - LIBUSB_ERROR_BUSY if the interface is in use by another driver/app 582 /* Release a previously claimed interface [all...] |
/frameworks/av/cmds/stagefright/ |
record.cpp | 201 client.interface(), meta, false /* createEncoder */, source); 228 client.interface(), enc_meta, true /* createEncoder */, decoder); 329 OMXCodec::Create(client.interface(), encMeta, true, audioSource);
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/aput_object/d/ |
T_aput_object_3.d | 16 .interface abstract dot.junit.opcodes.aput_object.d.SuperInterface 19 .interface public dot.junit.opcodes.aput_object.d.SuperInterface2
|
/device/lge/mako/camera/ |
Android.mk | 93 LOCAL_C_INCLUDES+= $(LOCAL_PATH)/mm-camera-interface 125 include $(LOCAL_PATH)/mm-camera-interface/Android.mk
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
ANTLRBufferedTokenStream.h | 32 @interface ANTLRBufferedTokenStream : NSObject <ANTLRTokenStream>
|
ANTLRCommonToken.h | 32 @interface ANTLRCommonToken : NSObject < ANTLRToken > {
|
ANTLRCommonTree.h | 31 @interface ANTLRCommonTree : ANTLRBaseTree <ANTLRTree> {
|
ANTLRDebugEventProxy.h | 38 @interface ANTLRDebugEventProxy : NSObject <ANTLRDebugEventListener> {
|
ANTLRRewriteRuleElementStream.h | 36 @interface ANTLRRewriteRuleElementStream : NSObject {
|
ANTLRStringStream.h | 33 @interface ANTLRStringStream : NSObject < ANTLRCharStream > {
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
ANTLRBufferedTokenStream.h | 32 @interface ANTLRBufferedTokenStream : NSObject <ANTLRTokenStream>
|
ANTLRCommonToken.h | 32 @interface ANTLRCommonToken : NSObject < ANTLRToken > {
|
ANTLRCommonTree.h | 31 @interface ANTLRCommonTree : ANTLRBaseTree <ANTLRTree> {
|