Searched defs:hardware (Results 1 - 19 of 19) sorted by relevance

/external/robolectric/src/main/java/android/hardware/
H A DTestSensorManager.java1 package android.hardware;
/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),
H A DWatchpoint.cpp30 Watchpoint::Watchpoint (Target& target, lldb::addr_t addr, uint32_t size, const ClangASTType *type, bool hardware) : argument
31 StoppointLocation (0, addr, size, hardware),
34 m_is_hardware(hardware),
/external/chromium_org/chrome/browser/metrics/
H A Dgpu_metrics_provider_unittest.cc58 const metrics::SystemProfileProto::Hardware& hardware = local
59 uma_proto.system_profile().hardware();
60 EXPECT_EQ(kScreenWidth, hardware.primary_screen_width());
61 EXPECT_EQ(kScreenHeight, hardware.primary_screen_height());
62 EXPECT_EQ(kScreenScaleFactor, hardware.primary_screen_scale_factor());
63 EXPECT_EQ(kScreenCount, hardware.screen_count());
H A Dgpu_metrics_provider.cc41 metrics::SystemProfileProto::Hardware* hardware) {
47 hardware->set_max_dpi_x(si.max_dpi_x);
48 hardware->set_max_dpi_y(si.max_dpi_y);
66 metrics::SystemProfileProto::Hardware* hardware = local
72 hardware->mutable_gpu();
86 hardware->set_primary_screen_width(display_size.width());
87 hardware->set_primary_screen_height(display_size.height());
88 hardware->set_primary_screen_scale_factor(GetScreenDeviceScaleFactor());
89 hardware->set_screen_count(GetScreenCount());
92 WriteScreenDPIInformationProto(hardware);
40 WriteScreenDPIInformationProto( metrics::SystemProfileProto::Hardware* hardware) argument
[all...]
H A Dchromeos_metrics_provider.cc73 void WriteExternalTouchscreensProto(SystemProfileProto::Hardware* hardware) { argument
81 hardware->add_external_touchscreen();
161 metrics::SystemProfileProto::Hardware* hardware = local
163 hardware->set_hardware_class(hardware_class_);
166 hardware->set_internal_display_supports_touch(true);
168 hardware->set_internal_display_supports_touch(false);
169 WriteExternalTouchscreensProto(hardware);
210 metrics::SystemProfileProto::Hardware* hardware = local
220 hardware->mutable_bluetooth();
/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/lldb/tools/debugserver/source/
H A DDNBBreakpoint.cpp23 DNBBreakpoint::DNBBreakpoint(nub_addr_t addr, nub_size_t byte_size, bool hardware) : argument
29 m_hw_preferred(hardware),
49 IsHardware() ? "hardware" : "software",
58 IsHardware() ? "hardware" : "software",
77 DNBBreakpointList::Add(nub_addr_t addr, nub_size_t length, bool hardware) argument
79 m_breakpoints.insert(std::make_pair(addr, DNBBreakpoint(addr, length, hardware)));
H A DDNB.cpp905 DNBBreakpointSet (nub_process_t pid, nub_addr_t addr, nub_size_t size, nub_bool_t hardware) argument
909 return procSP->CreateBreakpoint(addr, size, hardware) != NULL;
927 DNBWatchpointSet (nub_process_t pid, nub_addr_t addr, nub_size_t size, uint32_t watch_flags, nub_bool_t hardware) argument
931 return procSP->CreateWatchpoint(addr, size, watch_flags, hardware) != NULL;
945 // Return the number of supported hardware watchpoints.
H A DRNBRemote.cpp148 // t.push_back (Packet (insert_hardware_bp, &RNBRemote::HandlePacket_UNIMPLEMENTED, NULL, "Z1", "Insert hardware breakpoint"));
149 // t.push_back (Packet (remove_hardware_bp, &RNBRemote::HandlePacket_UNIMPLEMENTED, NULL, "z1", "Remove hardware breakpoint"));
197 t.push_back (Packet (watchpoint_support_info, &RNBRemote::HandlePacket_WatchpointSupportInfo, NULL, "qWatchpointSupportInfo", "Return the number of supported hardware watchpoints"));
3281 case '1': // set hardware breakpoint
3285 bool hardware = (break_type == '1'); local
3287 if (DNBBreakpointSet (pid, addr, byte_size, hardware))
3306 bool hardware = true; local
3315 if (DNBWatchpointSet (pid, addr, byte_size, watch_flags, hardware))
3337 case '1': // remove hardware breakpoint
3703 /* This packet simply returns the number of supported hardware watchpoint
[all...]
/external/chromium_org/components/metrics/
H A Dmetrics_log_unittest.cc126 const metrics::SystemProfileProto::Hardware& hardware = local
127 system_profile.hardware();
129 EXPECT_TRUE(hardware.has_cpu());
130 EXPECT_TRUE(hardware.cpu().has_vendor_name());
131 EXPECT_TRUE(hardware.cpu().has_signature());
H A Dmetrics_log.cc357 SystemProfileProto::Hardware* hardware = system_profile->mutable_hardware(); local
359 // By default, the hardware class is empty (i.e., unknown).
360 hardware->set_hardware_class(std::string());
362 hardware->set_cpu_architecture(base::SysInfo::OperatingSystemArchitecture());
363 hardware->set_system_ram_mb(base::SysInfo::AmountOfPhysicalMemoryMB());
365 hardware->set_dll_base(reinterpret_cast<uint64>(&__ImageBase));
387 SystemProfileProto::Hardware::CPU* cpu = hardware->mutable_cpu();
/external/chromium_org/third_party/webrtc/examples/android/media_demo/jni/
H A Dvoice_engine_jni.cc63 hardware(webrtc::VoEHardware::GetInterface(ve)),
72 CHECK(hardware != NULL, "Failed to acquire hardware interface");
86 ReleaseSubApi(hardware);
124 webrtc::VoEHardware* const hardware; member in class:__anon15039::VoiceEngineData::webrtc
278 return voe_data->hardware->SetLoudspeakerStatus(enable);
/external/chromium_org/third_party/webrtc/voice_engine/test/cmd_test/
H A Dvoe_cmd_test.cc64 VoEHardware* hardware = NULL; variable
137 hardware = VoEHardware::GetInterface(m_voe);
209 if (hardware)
210 hardware->Release();
333 res = hardware->GetNumOfRecordingDevices(rd);
335 res = hardware->GetNumOfPlayoutDevices(pd);
342 res = hardware->GetPlayoutDeviceName(j, dn, guid);
349 res = hardware->GetRecordingDeviceName(j, dn, guid);
356 res = hardware->SetPlayoutDevice(pd);
361 res = hardware
[all...]
/external/mdnsresponder/mDNSPosix/
H A DIdentify.c69 static char hostname[MAX_ESCAPED_DOMAIN_NAME], hardware[256], software[256]; variable
150 strncpy(hardware, (char*)(p+1), p[0]);
151 hardware[p[0]] = 0;
304 hostname[0] = hardware[0] = software[0] = 0;
350 if (hardware[0] || software[0])
352 printf("HINFO Hardware: %s\n", hardware);
/external/chromium_org/third_party/webrtc/voice_engine/test/android/android_test/jni/
H A Dandroid_test.cc78 if (!veData1.hardware) \
127 VoEHardware* hardware; member in struct:__anon15538
232 veData2.hardware->SetLoudspeakerStatus(false);
1138 if (veData1.hardware->SetLoudspeakerStatus(enable) != 0)
1231 veData.hardware = VoEHardware::GetInterface(veData.ve);
1232 if (!veData.hardware)
1235 "Get hardware sub-API failed");
1349 if (veData.hardware)
1351 if (0 != veData.hardware->Release())
1354 "Release hardware su
[all...]
/external/lldb/tools/debugserver/source/MacOSX/
H A DMachProcess.cpp718 MachProcess::CreateBreakpoint(nub_addr_t addr, nub_size_t length, bool hardware) argument
720 DNBLogThreadedIf(LOG_BREAKPOINTS, "MachProcess::CreateBreakpoint ( addr = 0x%8.8llx, length = %llu, hardware = %i)", (uint64_t)addr, (uint64_t)length, hardware);
726 bp = m_breakpoints.Add(addr, length, hardware);
742 MachProcess::CreateWatchpoint(nub_addr_t addr, nub_size_t length, uint32_t watch_flags, bool hardware) argument
744 DNBLogThreadedIf(LOG_WATCHPOINTS, "MachProcess::CreateWatchpoint ( addr = 0x%8.8llx, length = %llu, flags = 0x%8.8x, hardware = %i)", (uint64_t)addr, (uint64_t)length, watch_flags, hardware);
752 wp = m_watchpoints.Add(addr, length, hardware);
830 DNBLogThreadedIf(LOG_BREAKPOINTS, "MachProcess::DisableBreakpoint ( addr = 0x%8.8llx, remove = %d ) (hardware) => success", (uint64_t)addr, remove);
951 DNBLogThreadedIf(LOG_WATCHPOINTS, "MachProcess::Disablewatchpoint ( addr = 0x%8.8llx, remove = %d ) (hardware)
[all...]
/external/robolectric/lib/main/
H A Dandroid.jar ... 5.0.0_r2/s?defs= " (android.hardware.usb.UsbDevice) android.hardware.usb. ...
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...

Completed in 975 milliseconds