/external/chromium_org/components/metrics/gpu/ |
D | gpu_metrics_provider.cc | 42 void WriteScreenDPIInformationProto(SystemProfileProto::Hardware* hardware) { in WriteScreenDPIInformationProto() argument 48 hardware->set_max_dpi_x(si.max_dpi_x); in WriteScreenDPIInformationProto() 49 hardware->set_max_dpi_y(si.max_dpi_y); in WriteScreenDPIInformationProto() 67 SystemProfileProto::Hardware* hardware = in ProvideSystemProfileMetrics() local 73 hardware->mutable_gpu(); in ProvideSystemProfileMetrics() 87 hardware->set_primary_screen_width(display_size.width()); in ProvideSystemProfileMetrics() 88 hardware->set_primary_screen_height(display_size.height()); in ProvideSystemProfileMetrics() 89 hardware->set_primary_screen_scale_factor(GetScreenDeviceScaleFactor()); in ProvideSystemProfileMetrics() 90 hardware->set_screen_count(GetScreenCount()); in ProvideSystemProfileMetrics() 93 WriteScreenDPIInformationProto(hardware); in ProvideSystemProfileMetrics()
|
D | gpu_metrics_provider_unittest.cc | 60 const metrics::SystemProfileProto::Hardware& hardware = in TEST_F() local 61 uma_proto.system_profile().hardware(); in TEST_F() 62 EXPECT_EQ(kScreenWidth, hardware.primary_screen_width()); in TEST_F() 63 EXPECT_EQ(kScreenHeight, hardware.primary_screen_height()); in TEST_F() 64 EXPECT_EQ(kScreenScaleFactor, hardware.primary_screen_scale_factor()); in TEST_F() 65 EXPECT_EQ(kScreenCount, hardware.screen_count()); in TEST_F()
|
/external/chromium_org/media/base/android/java/src/org/chromium/media/ |
D | VideoCapture.java | 27 public abstract class VideoCapture implements android.hardware.Camera.PreviewCallback { 60 protected android.hardware.Camera mCamera; 93 mCamera = android.hardware.Camera.open(mId); in allocate() 99 android.hardware.Camera.CameraInfo cameraInfo = getCameraInfo(mId); in allocate() 112 android.hardware.Camera.Parameters parameters = getCameraParameters(mCamera); in allocate() 140 List<android.hardware.Camera.Size> listCameraSize = in allocate() 145 for (android.hardware.Camera.Size size : listCameraSize) { in allocate() 289 android.hardware.Camera.Parameters cameraParameters); in setCaptureParameters() 297 abstract void setPreviewCallback(android.hardware.Camera.PreviewCallback cb); in setPreviewCallback() 358 protected static android.hardware.Camera.Parameters getCameraParameters( in getCameraParameters() [all …]
|
D | VideoCaptureAndroid.java | 83 android.hardware.Camera camera; in getDeviceSupportedFormats() 85 camera = android.hardware.Camera.open(id); in getDeviceSupportedFormats() 90 android.hardware.Camera.Parameters parameters = getCameraParameters(camera); in getDeviceSupportedFormats() 124 List<android.hardware.Camera.Size> supportedSizes = in getDeviceSupportedFormats() 127 supportedSizes = new ArrayList<android.hardware.Camera.Size>(); in getDeviceSupportedFormats() 132 for (android.hardware.Camera.Size size : supportedSizes) { in getDeviceSupportedFormats() 155 android.hardware.Camera.Parameters cameraParameters) { in setCaptureParameters() 174 protected void setPreviewCallback(android.hardware.Camera.PreviewCallback cb) { in setPreviewCallback() 179 public void onPreviewFrame(byte[] data, android.hardware.Camera camera) { in onPreviewFrame() 190 if (mCameraFacing == android.hardware.Camera.CameraInfo.CAMERA_FACING_BACK) { in onPreviewFrame()
|
D | VideoCaptureFactory.java | 47 private final android.hardware.Camera.CameraInfo mCameraInfo; 93 sNumberOfSystemCameras = android.hardware.Camera.getNumberOfCameras(); in getNumberOfCameras() 128 android.hardware.Camera.CameraInfo.CAMERA_FACING_FRONT ? "front" : in getDeviceName() 131 android.hardware.Camera.CameraInfo.CAMERA_FACING_FRONT ? "front" : in getDeviceName() 139 return android.hardware.Camera.CameraInfo.CAMERA_FACING_BACK; in getOrientation() 145 private android.hardware.Camera.CameraInfo getCameraInfo(int id) { in getCameraInfo() 146 android.hardware.Camera.CameraInfo cameraInfo = in getCameraInfo() 147 new android.hardware.Camera.CameraInfo(); in getCameraInfo() 149 android.hardware.Camera.getCameraInfo(id, cameraInfo); in getCameraInfo()
|
D | UsbMidiDeviceAndroid.java | 8 import android.hardware.usb.UsbConstants; 9 import android.hardware.usb.UsbDevice; 10 import android.hardware.usb.UsbDeviceConnection; 11 import android.hardware.usb.UsbEndpoint; 12 import android.hardware.usb.UsbInterface; 13 import android.hardware.usb.UsbManager; 14 import android.hardware.usb.UsbRequest;
|
D | UsbMidiDeviceFactoryAndroid.java | 12 import android.hardware.usb.UsbConstants; 13 import android.hardware.usb.UsbDevice; 14 import android.hardware.usb.UsbInterface; 15 import android.hardware.usb.UsbManager;
|
D | VideoCaptureTango.java | 80 android.hardware.Camera.Parameters cameraParameters) { in setCaptureParameters() 100 protected void setPreviewCallback(android.hardware.Camera.PreviewCallback cb) { in setPreviewCallback() 105 public void onPreviewFrame(byte[] data, android.hardware.Camera camera) { in onPreviewFrame() 115 if (mCameraFacing == android.hardware.Camera.CameraInfo.CAMERA_FACING_BACK) { in onPreviewFrame()
|
/external/chromium_org/chrome/browser/metrics/ |
D | chromeos_metrics_provider_unittest.cc | 172 EXPECT_TRUE(system_profile.hardware().has_bluetooth()); in TEST_F() 174 EXPECT_TRUE(system_profile.hardware().bluetooth().is_present()); in TEST_F() 175 EXPECT_FALSE(system_profile.hardware().bluetooth().is_enabled()); in TEST_F() 189 EXPECT_TRUE(system_profile.hardware().has_bluetooth()); in TEST_F() 191 EXPECT_TRUE(system_profile.hardware().bluetooth().is_present()); in TEST_F() 192 EXPECT_TRUE(system_profile.hardware().bluetooth().is_enabled()); in TEST_F() 219 ASSERT_TRUE(system_profile.hardware().has_bluetooth()); in TEST_F() 222 EXPECT_EQ(2, system_profile.hardware().bluetooth().paired_device_size()); in TEST_F() 229 PairedDevice device1 = system_profile.hardware().bluetooth().paired_device(0); in TEST_F() 242 PairedDevice device2 = system_profile.hardware().bluetooth().paired_device(1); in TEST_F()
|
D | chromeos_metrics_provider.cc | 73 void WriteExternalTouchscreensProto(SystemProfileProto::Hardware* hardware) { in WriteExternalTouchscreensProto() argument 81 hardware->add_external_touchscreen(); in WriteExternalTouchscreensProto() 161 metrics::SystemProfileProto::Hardware* hardware = in ProvideSystemProfileMetrics() local 163 hardware->set_hardware_class(hardware_class_); in ProvideSystemProfileMetrics() 166 hardware->set_internal_display_supports_touch(true); in ProvideSystemProfileMetrics() 168 hardware->set_internal_display_supports_touch(false); in ProvideSystemProfileMetrics() 169 WriteExternalTouchscreensProto(hardware); in ProvideSystemProfileMetrics() 210 metrics::SystemProfileProto::Hardware* hardware = in WriteBluetoothProto() local 220 hardware->mutable_bluetooth(); in WriteBluetoothProto()
|
/external/lldb/source/Breakpoint/ |
D | StoppointLocation.cpp | 23 StoppointLocation::StoppointLocation (break_id_t bid, addr_t addr, bool hardware) : in StoppointLocation() argument 26 m_hw_preferred(hardware), in StoppointLocation() 33 …pointLocation::StoppointLocation (break_id_t bid, addr_t addr, uint32_t byte_size, bool hardware) : in StoppointLocation() argument 36 m_hw_preferred(hardware), in StoppointLocation()
|
/external/chromium_org/third_party/webrtc/tools/e2e_quality/audio/ |
D | audio_e2e_harness.cc | 42 VoEHardware* hardware = VoEHardware::GetInterface(voe); in RunHarness() local 43 ASSERT_TRUE(hardware != NULL); in RunHarness() 71 ASSERT_EQ(0, hardware->GetNumOfPlayoutDevices(num_devices)); in RunHarness() 77 ASSERT_EQ(0, hardware->GetPlayoutDeviceName(device_index, device_name, in RunHarness() 85 ASSERT_EQ(0, hardware->SetPlayoutDevice(device_index)); in RunHarness()
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
D | ShadowSensorManager.java | 3 import android.hardware.Sensor; 4 import android.hardware.SensorEvent; 5 import android.hardware.SensorEventListener; 6 import android.hardware.SensorManager;
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
D | SensorManagerTest.java | 4 import android.hardware.Sensor; 5 import android.hardware.SensorEvent; 6 import android.hardware.SensorEventListener; 7 import android.hardware.SensorManager;
|
/external/chromium_org/third_party/webrtc/voice_engine/test/cmd_test/ |
D | voe_cmd_test.cc | 64 VoEHardware* hardware = NULL; variable 137 hardware = VoEHardware::GetInterface(m_voe); in main() 209 if (hardware) in main() 210 hardware->Release(); in main() 333 res = hardware->GetNumOfRecordingDevices(rd); in RunTest() 335 res = hardware->GetNumOfPlayoutDevices(pd); in RunTest() 342 res = hardware->GetPlayoutDeviceName(j, dn, guid); in RunTest() 349 res = hardware->GetRecordingDeviceName(j, dn, guid); in RunTest() 356 res = hardware->SetPlayoutDevice(pd); in RunTest() 361 res = hardware->SetRecordingDevice(rd); in RunTest() [all …]
|
/external/chromium_org/third_party/webrtc/modules/video_capture/android/java/src/org/webrtc/videoengine/ |
D | VideoCaptureDeviceInfoAndroid.java | 15 import android.hardware.Camera.CameraInfo; 16 import android.hardware.Camera.Parameters; 17 import android.hardware.Camera.Size; 18 import android.hardware.Camera;
|
/external/chromium_org/tools/usb_gadget/ |
D | __main__.py | 43 server.hardware = args.hardware 50 server.chip = linux_gadgetfs.LinuxGadgetfs(server.hardware)
|
/external/mesa3d/src/mesa/drivers/dri/common/xmlpool/ |
D | nl.po | 127 msgid "Use hardware TCL as first TCL pipeline stage" 128 msgstr "Gebruik hardware TCL as eerste TCL pijpleiding trap" 146 msgid "Busy waiting for the graphics hardware" 147 msgstr "Actief wachten voor de grafische hardware" 150 msgid "Sleep for brief intervals while waiting for the graphics hardware" 152 "hardware" 155 msgid "Let the graphics hardware emit a software interrupt and sleep" 156 msgstr "Laat de grafische hardware een software onderbreking uitzenden en in " 221 msgid "Features that are not hardware-accelerated"
|
D | es.po | 127 msgid "Use hardware TCL as first TCL pipeline stage" 128 msgstr "Usar TCL por hardware en la primera fase de la tubería TCL" 143 msgid "Busy waiting for the graphics hardware" 144 msgstr "Esperar activamente al hardware gráfico" 147 msgid "Sleep for brief intervals while waiting for the graphics hardware" 148 msgstr "Dormir en intervalos cortos mientras se espera al hardware gráfico" 151 msgid "Let the graphics hardware emit a software interrupt and sleep" 152 msgstr "Permitir que el hardware gráfico emita una interrupción de software y duerma" 209 msgid "Features that are not hardware-accelerated" 210 msgstr "Características no aceleradas por hardware"
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/common/xmlpool/ |
D | nl.po | 127 msgid "Use hardware TCL as first TCL pipeline stage" 128 msgstr "Gebruik hardware TCL as eerste TCL pijpleiding trap" 146 msgid "Busy waiting for the graphics hardware" 147 msgstr "Actief wachten voor de grafische hardware" 150 msgid "Sleep for brief intervals while waiting for the graphics hardware" 152 "hardware" 155 msgid "Let the graphics hardware emit a software interrupt and sleep" 156 msgstr "Laat de grafische hardware een software onderbreking uitzenden en in " 221 msgid "Features that are not hardware-accelerated"
|
D | es.po | 127 msgid "Use hardware TCL as first TCL pipeline stage" 128 msgstr "Usar TCL por hardware en la primera fase de la tubería TCL" 143 msgid "Busy waiting for the graphics hardware" 144 msgstr "Esperar activamente al hardware gráfico" 147 msgid "Sleep for brief intervals while waiting for the graphics hardware" 148 msgstr "Dormir en intervalos cortos mientras se espera al hardware gráfico" 151 msgid "Let the graphics hardware emit a software interrupt and sleep" 152 msgstr "Permitir que el hardware gráfico emita una interrupción de software y duerma" 209 msgid "Features that are not hardware-accelerated" 210 msgstr "Características no aceleradas por hardware"
|
/external/qemu/docs/ |
D | DISPLAY-STATE.TXT | 28 dpy_resize: the hardware decided to resize the framebuffer. 30 dpy_copy: the hardware performed a rectangular copy operation. 31 dpy_fill: the hardware performed a rectangular fill operation. 32 dpy_setdata: the hardware decided to change the framebuffer address. 33 dpy_text_cursor: the hardware placed the text cursor at a given (x,y). 57 hardware framebuffer emulator (e.g. hw/vga-pic.c) will call the 73 by the hardware framebuffer emulation, and will be called under various 163 First, the hardware machine is initialized. The hardware fraembuffer emulation 166 allocated through malloc(). In other words, the hardware emulation does not 194 to see if there are hardware framebuffer updates. [all …]
|
/external/lldb/tools/debugserver/source/ |
D | DNBBreakpoint.cpp | 23 DNBBreakpoint::DNBBreakpoint(nub_addr_t addr, nub_size_t byte_size, bool hardware) : in DNBBreakpoint() argument 29 m_hw_preferred(hardware), in DNBBreakpoint() 77 DNBBreakpointList::Add(nub_addr_t addr, nub_size_t length, bool hardware) in Add() argument 79 m_breakpoints.insert(std::make_pair(addr, DNBBreakpoint(addr, length, hardware))); in Add()
|
/external/mdnsresponder/mDNSPosix/ |
D | Identify.c | 69 static char hostname[MAX_ESCAPED_DOMAIN_NAME], hardware[256], software[256]; variable 150 strncpy(hardware, (char*)(p+1), p[0]); in InfoCallback() 151 hardware[p[0]] = 0; in InfoCallback() 304 hostname[0] = hardware[0] = software[0] = 0; in main() 350 if (hardware[0] || software[0]) in main() 352 printf("HINFO Hardware: %s\n", hardware); in main()
|
/external/lldb/include/lldb/Breakpoint/ |
D | StoppointLocation.h | 31 bool hardware); 36 bool hardware);
|