Searched refs:device (Results 51 - 75 of 129) sorted by relevance

123456

/frameworks/base/libs/usb/tests/AccessoryChat/accessorychat/
H A DAndroid.mk23 # Build for device
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
H A DAndroid.mk25 # For the device
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
H A DAndroid.mk23 # For the device
/frameworks/compile/mclinker/lib/CodeGen/
H A DAndroid.mk20 # For the device
/frameworks/compile/mclinker/lib/Target/ARM/
H A DAndroid.mk26 # For the device
/frameworks/compile/mclinker/lib/Target/ARM/TargetInfo/
H A DAndroid.mk18 # For the device
/frameworks/compile/mclinker/lib/Target/
H A DAndroid.mk26 # For the device
/frameworks/compile/mclinker/lib/Target/Mips/
H A DAndroid.mk25 # For the device
/frameworks/compile/mclinker/lib/Target/Mips/TargetInfo/
H A DAndroid.mk18 # For the device
/frameworks/compile/mclinker/lib/Target/X86/
H A DAndroid.mk27 # For the device
/frameworks/compile/mclinker/lib/Target/X86/TargetInfo/
H A DAndroid.mk18 # For the device
/frameworks/av/services/camera/libcameraservice/camera2/
H A DStreamingProcessor.cpp113 sp<Camera2Device> device = client->getCameraDevice();
118 res = device->getStreamInfo(mPreviewStreamId,
130 res = device->waitUntilDrained();
136 res = device->deleteStream(mPreviewStreamId);
148 res = device->createStream(mPreviewWindow,
159 res = device->setStreamTransform(mPreviewStreamId,
179 sp<Camera2Device> device = client->getCameraDevice();
184 res = device->waitUntilDrained();
190 res = device->deleteStream(mPreviewStreamId);
275 sp<Camera2Device> device
[all...]
H A DCallbackProcessor.cpp61 sp<Camera2Device> device = client->getCameraDevice();
75 res = device->getStreamInfo(mCallbackStreamId,
91 res = device->deleteStream(mCallbackStreamId);
106 res = device->createStream(mCallbackWindow,
129 sp<Camera2Device> device = client->getCameraDevice();
131 device->deleteStream(mCallbackStreamId);
H A DZslProcessor.cpp116 sp<Camera2Device> device = client->getCameraDevice();
133 res = device->getStreamInfo(mZslStreamId,
143 res = device->deleteReprocessStream(mZslReprocessStreamId);
152 res = device->deleteStream(mZslStreamId);
169 res = device->createStream(mZslWindow,
179 res = device->createReprocessStreamFromStream(mZslStreamId,
204 sp<Camera2Device> device = client->getCameraDevice();
206 res = device->deleteReprocessStream(mZslReprocessStreamId);
215 res = device->deleteStream(mZslStreamId);
/frameworks/base/services/jni/
H A Dcom_android_server_LightsService.cpp54 hw_device_t* device; local
55 err = module->methods->open(module, name, &device);
57 return (light_device_t*)device;
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pWfdInfo.java23 * A class representing Wifi Display information for a device
183 WifiP2pWfdInfo device = new WifiP2pWfdInfo();
184 device.readFromParcel(in);
185 return device;
/frameworks/compile/linkloader/
H A DAndroid.mk52 include $(LLVM_ROOT_PATH)/llvm-device-build.mk
113 include $(LLVM_ROOT_PATH)/llvm-device-build.mk
177 include $(LLVM_ROOT_PATH)/llvm-device-build.mk
210 include $(LLVM_ROOT_PATH)/llvm-device-build.mk
/frameworks/base/services/java/com/android/server/usb/
H A DUsbService.java40 * UsbService manages all USB related state, including both host and device support.
41 * Host related events and calls are delegated to UsbHostManager, and device related
131 /* Opens the specified USB device (host mode) */
141 /* returns the currently attached USB accessory (device mode) */
151 /* opens the currently attached USB accessory (device mode) */
162 public void setDevicePackage(UsbDevice device, String packageName, int userId) { argument
164 getSettingsForUser(userId).setDevicePackage(device, packageName);
174 public boolean hasDevicePermission(UsbDevice device) { argument
176 return getSettingsForUser(userId).hasPermission(device);
186 public void requestDevicePermission(UsbDevice device, Strin argument
199 grantDevicePermission(UsbDevice device, int uid) argument
[all...]
/frameworks/compile/mclinker/lib/MC/
H A DAndroid.mk33 # For the device
/frameworks/compile/mclinker/lib/Support/
H A DAndroid.mk34 # For the device
/frameworks/base/media/java/android/mtp/
H A DMtpDevice.java25 * This class represents an MTP or PTP device connected on the USB host bus. An application can
28 * device and objects stored on it, as well as open the connection and transfer data.
43 * @param device the {@link android.hardware.usb.UsbDevice} for the MTP or PTP device
45 public MtpDevice(UsbDevice device) { argument
46 mDevice = device;
50 * Opens the MTP device. Once the device is open it takes ownership of the
55 * @param connection an open {@link android.hardware.usb.UsbDeviceConnection} for the device
56 * @return true if the device wa
[all...]
/frameworks/av/media/mtp/
H A DMtpDevice.cpp54 struct usb_device *device = usb_device_new(deviceName, fd); local
55 if (!device) {
63 usb_descriptor_iter_init(device, &iter);
73 char* manufacturerName = usb_device_get_manufacturer_name(device);
74 char* productName = usb_device_get_product_name(device);
81 char* interfaceName = usb_device_get_string(device, interface->iInterface);
90 // Looks like an android style MTP device
91 char* manufacturerName = usb_device_get_manufacturer_name(device);
92 char* productName = usb_device_get_product_name(device);
93 ALOGD("Found MTP device
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/media/java/android/media/
H A DAudioSystem.java199 // audio device definitions: must be kept in sync with values in system/core/audio.h
283 // device states, must match AudioSystem::device_connection_state
305 public static String getDeviceName(int device) argument
307 switch(device) {
351 // device categories config for setForceUse, must match AudioSystem::forced_config
379 public static native int setDeviceConnectionState(int device, int state, String device_address); argument
380 public static native int getDeviceConnectionState(int device, String device_address); argument
385 public static native int setStreamVolumeIndex(int stream, int index, int device); argument
386 public static native int getStreamVolumeIndex(int stream, int device); argument
/frameworks/base/services/input/
H A DEventHub.h86 * Input device classes.
89 /* The input device is a keyboard or has buttons. */
92 /* The input device is an alpha-numeric keyboard (not just a dial pad). */
95 /* The input device is a touchscreen or a touchpad (either single-touch or multi-touch). */
98 /* The input device is a cursor device such as a trackball or mouse. */
101 /* The input device is a multi-touch touchscreen. */
104 /* The input device is a directional pad (implies keyboard, has DPAD keys). */
107 /* The input device is a gamepad (implies keyboard, has BUTTON keys). */
110 /* The input device ha
[all...]
/frameworks/av/services/camera/libcameraservice/
H A DCamera2Device.cpp40 ALOGV("%s: Created device for camera %d", __FUNCTION__, id);
53 ALOGV("%s: Initializing device for camera %d", __FUNCTION__, mId);
63 camera2_device_t *device; local
66 reinterpret_cast<hw_device_t**>(&device));
74 if (device->common.version != CAMERA_DEVICE_API_VERSION_2_0) {
76 "Camera device is not version %x, reports %x instead",
78 device->common.version);
79 device->common.close(&device->common);
87 if (info.device_version != device
[all...]

Completed in 259 milliseconds

123456