Searched defs:interface (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/include/media/stagefright/
H A DOMXClient.h32 sp<IOMX> interface() { function in class:android::OMXClient
/frameworks/base/cmds/ip-up-vpn/
H A Dip-up-vpn.c49 * are interface, addresses, routes, DNS servers, and search domains. Each
61 * is to have an interface configured with the given address and netmask
83 const char *interface = env("INTERFACE"); local
112 /* Bring up the interface. */
114 strncpy(ifr.ifr_name, interface, IFNAMSIZ);
116 LOGE("Cannot bring up %s: %s", interface, strerror(errno));
137 fprintf(state, "%s\n", interface);
/frameworks/base/services/jni/
H A Dcom_android_server_UsbHostManager.cpp80 struct usb_interface_descriptor *interface = (struct usb_interface_descriptor *)desc; local
83 interfaceValues.add(interface->bInterfaceNumber);
84 interfaceValues.add(interface->bInterfaceClass);
85 interfaceValues.add(interface->bInterfaceSubClass);
86 interfaceValues.add(interface->bInterfaceProtocol);
87 interfaceValues.add(interface->bNumEndpoints);
/frameworks/base/media/mtp/
H A DMtpDevice.cpp67 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
175 MtpDevice(struct usb_device* device, int interface, const struct usb_endpoint_descriptor *ep_in, const struct usb_endpoint_descriptor *ep_out, const struct usb_endpoint_descriptor *ep_intr) argument
[all...]
/frameworks/base/tools/aidl/
H A Dgenerate_java.cpp81 "interface. */";
138 m->comment += " interface,\n";
313 generate_method(const method_type* method, Class* interface, argument
334 // == the declaration in the interface ===================================
352 interface->elements.push_back(decl);
360 // interface token validation is the very first thing we do
491 // the interface identifier token: the DESCRIPTOR constant, marshalled as a string
562 // the interface descriptor transaction handler
586 // the interface class
587 Class* interface local
[all...]
/frameworks/base/libs/binder/
H A DParcel.cpp472 // Write RPC headers. (previously just the interface token)
473 status_t Parcel::writeInterfaceToken(const String16& interface) argument
477 // currently the interface identification token is just its name as a string
478 return writeString16(interface);
486 bool Parcel::enforceInterface(const String16& interface, argument
504 if (str == interface) {
508 String8(interface).string(), String8(str).string());
/frameworks/base/media/libeffects/preprocessing/
H A DPreProcessing.cpp27 #include "modules/interface/module_common_types.h"
28 #include "modules/audio_processing/main/interface/audio_processing.h"
102 uint32_t samplingRate; // sampling rate at effect process interface
683 effect_handle_t *interface)
686 *interface = (effect_handle_t)&effect->itfe;
724 effect_handle_t *interface)
774 status = Effect_Create(&session->effects[procId], session, interface);
1483 // effect_handle_t interface implementation for effect
1562 int PreProcessingLib_Release(effect_handle_t interface) argument
1565 LOGV("EffectRelease start %p", interface);
681 Effect_Create(preproc_effect_t *effect, preproc_session_t *session, effect_handle_t *interface) argument
722 Session_CreateEffect(preproc_session_t *session, int32_t procId, effect_handle_t *interface) argument
[all...]

Completed in 5150 milliseconds