Searched refs:hardware (Results 1 - 25 of 158) sorted by relevance

1234567

/external/robolectric/src/main/java/android/hardware/
H A DTestSensorManager.java1 package android.hardware;
/external/bluetooth/bluedroid/btif/include/
H A Dbtif_mce.h31 #include <hardware/bt_mce.h>
H A Dbtif_pan.h30 #include <hardware/bt_pan.h>
H A Dbtif_sock.h30 #include <hardware/bt_sock.h>
H A Dbtif_sock_thread.h22 #include <hardware/bt_sock.h>
/external/bluetooth/bluedroid/test/suite/
H A Dbase.h25 #include <hardware/bluetooth.h>
26 #include <hardware/bt_pan.h>
27 #include <hardware/hardware.h>
/external/lldb/source/Breakpoint/
H A DStoppointLocation.cpp23 StoppointLocation::StoppointLocation (break_id_t bid, addr_t addr, bool hardware) : argument
26 m_hw_preferred(hardware),
33 StoppointLocation::StoppointLocation (break_id_t bid, addr_t addr, uint32_t byte_size, bool hardware) : argument
36 m_hw_preferred(hardware),
/external/chromium_org/components/metrics/gpu/
H A Dgpu_metrics_provider_unittest.cc60 const metrics::SystemProfileProto::Hardware& hardware = local
61 uma_proto.system_profile().hardware();
62 EXPECT_EQ(kScreenWidth, hardware.primary_screen_width());
63 EXPECT_EQ(kScreenHeight, hardware.primary_screen_height());
64 EXPECT_EQ(kScreenScaleFactor, hardware.primary_screen_scale_factor());
65 EXPECT_EQ(kScreenCount, hardware.screen_count());
H A Dgpu_metrics_provider.cc42 void WriteScreenDPIInformationProto(SystemProfileProto::Hardware* hardware) { argument
48 hardware->set_max_dpi_x(si.max_dpi_x);
49 hardware->set_max_dpi_y(si.max_dpi_y);
67 SystemProfileProto::Hardware* hardware = local
73 hardware->mutable_gpu();
87 hardware->set_primary_screen_width(display_size.width());
88 hardware->set_primary_screen_height(display_size.height());
89 hardware->set_primary_screen_scale_factor(GetScreenDeviceScaleFactor());
90 hardware->set_screen_count(GetScreenCount());
93 WriteScreenDPIInformationProto(hardware);
[all...]
/external/libnfc-nci/halimpl/bcm2079x/include/
H A DHalAdaptation.h27 #include <hardware/hardware.h>
28 #include <hardware/nfc.h>
/external/chromium_org/third_party/mesa/src/src/gallium/winsys/sw/android/
H A Dandroid_sw_winsys.h33 #include <hardware/gralloc.h>
/external/mesa3d/src/gallium/winsys/sw/android/
H A Dandroid_sw_winsys.h33 #include <hardware/gralloc.h>
/external/chromium_org/third_party/hwcplus/include/hardware/
H A Dhwcomposer_defs.h23 #include <hardware/gralloc.h>
24 #include <hardware/hardware.h>
H A Dgralloc.h23 #include <hardware/hardware.h>
31 #include <hardware/hardware.h>
32 #include <hardware/fb.h>
37 * Module versioning information for the Gralloc hardware module, based on
43 * Initial Gralloc hardware module API.
88 /* buffer will be used by the 2D hardware blitter */
115 /* Must have a hardware-protected path to external display sink for
116 * this buffer. If a hardware
[all...]
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_gatt.c28 #include <hardware/bluetooth.h>
29 #include <hardware/bt_gatt.h>
H A Dbluetooth.c31 #include <hardware/bluetooth.h>
32 #include <hardware/bt_hf.h>
33 #include <hardware/bt_hf_client.h>
34 #include <hardware/bt_av.h>
35 #include <hardware/bt_sock.h>
36 #include <hardware/bt_hh.h>
37 #include <hardware/bt_hl.h>
38 #include <hardware/bt_pan.h>
39 #include <hardware/bt_mce.h>
40 #include <hardware/bt_gat
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowSensorManager.java3 import android.hardware.Sensor;
4 import android.hardware.SensorEvent;
5 import android.hardware.SensorEventListener;
6 import android.hardware.SensorManager;
H A DShadowCameraSize.java3 import android.hardware.Camera;
/external/chromium_org/third_party/webrtc/tools/e2e_quality/audio/
H A Daudio_e2e_harness.cc42 VoEHardware* hardware = VoEHardware::GetInterface(voe); local
43 ASSERT_TRUE(hardware != NULL);
71 ASSERT_EQ(0, hardware->GetNumOfPlayoutDevices(num_devices));
77 ASSERT_EQ(0, hardware->GetPlayoutDeviceName(device_index, device_name,
85 ASSERT_EQ(0, hardware->SetPlayoutDevice(device_index));
/external/chromium_org/media/base/android/java/src/org/chromium/media/
H A DVideoCaptureFactory.java47 private final android.hardware.Camera.CameraInfo mCameraInfo;
93 sNumberOfSystemCameras = android.hardware.Camera.getNumberOfCameras();
128 android.hardware.Camera.CameraInfo.CAMERA_FACING_FRONT ? "front" :
131 android.hardware.Camera.CameraInfo.CAMERA_FACING_FRONT ? "front" :
139 return android.hardware.Camera.CameraInfo.CAMERA_FACING_BACK;
145 private android.hardware.Camera.CameraInfo getCameraInfo(int id) {
146 android.hardware.Camera.CameraInfo cameraInfo =
147 new android.hardware.Camera.CameraInfo();
149 android.hardware.Camera.getCameraInfo(id, cameraInfo);
151 Log.e(TAG, "getCameraInfo: android.hardware
[all...]
H A DVideoCapture.java27 public abstract class VideoCapture implements android.hardware.Camera.PreviewCallback {
60 protected android.hardware.Camera mCamera;
93 mCamera = android.hardware.Camera.open(mId);
99 android.hardware.Camera.CameraInfo cameraInfo = getCameraInfo(mId);
112 android.hardware.Camera.Parameters parameters = getCameraParameters(mCamera);
140 List<android.hardware.Camera.Size> listCameraSize =
145 for (android.hardware.Camera.Size size : listCameraSize) {
289 android.hardware.Camera.Parameters cameraParameters);
297 abstract void setPreviewCallback(android.hardware.Camera.PreviewCallback cb);
358 protected static android.hardware
[all...]
H A DVideoCaptureAndroid.java83 android.hardware.Camera camera;
85 camera = android.hardware.Camera.open(id);
90 android.hardware.Camera.Parameters parameters = getCameraParameters(camera);
124 List<android.hardware.Camera.Size> supportedSizes =
127 supportedSizes = new ArrayList<android.hardware.Camera.Size>();
132 for (android.hardware.Camera.Size size : supportedSizes) {
155 android.hardware.Camera.Parameters cameraParameters) {
174 protected void setPreviewCallback(android.hardware.Camera.PreviewCallback cb) {
179 public void onPreviewFrame(byte[] data, android.hardware.Camera camera) {
190 if (mCameraFacing == android.hardware
[all...]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DSensorManagerTest.java4 import android.hardware.Sensor;
5 import android.hardware.SensorEvent;
6 import android.hardware.SensorEventListener;
7 import android.hardware.SensorManager;
/external/chromium_org/tools/usb_gadget/
H A D__main__.py30 '--hardware', default='beaglebone-black',
43 server.hardware = args.hardware
50 server.chip = linux_gadgetfs.LinuxGadgetfs(server.hardware)
/external/chromium_org/chrome/browser/metrics/
H A Dchromeos_metrics_provider_unittest.cc172 EXPECT_TRUE(system_profile.hardware().has_bluetooth());
174 EXPECT_TRUE(system_profile.hardware().bluetooth().is_present());
175 EXPECT_FALSE(system_profile.hardware().bluetooth().is_enabled());
189 EXPECT_TRUE(system_profile.hardware().has_bluetooth());
191 EXPECT_TRUE(system_profile.hardware().bluetooth().is_present());
192 EXPECT_TRUE(system_profile.hardware().bluetooth().is_enabled());
219 ASSERT_TRUE(system_profile.hardware().has_bluetooth());
222 EXPECT_EQ(2, system_profile.hardware().bluetooth().paired_device_size());
229 PairedDevice device1 = system_profile.hardware().bluetooth().paired_device(0);
242 PairedDevice device2 = system_profile.hardware()
[all...]

Completed in 661 milliseconds

1234567