HomeSort by relevance Sort by last modified time
    Searched refs:DeviceInfo (Results 1 - 25 of 191) sorted by null

1 2 3 4 5 6 7 8

  /frameworks/base/libs/hwui/
DeviceInfo.cpp 16 #include <DeviceInfo.h>
29 static DeviceInfo* sDeviceInfo = nullptr;
32 const DeviceInfo* DeviceInfo::get() {
33 LOG_ALWAYS_FATAL_IF(!sDeviceInfo, "DeviceInfo not yet initialized.");
37 void DeviceInfo::initialize() {
39 sDeviceInfo = new DeviceInfo();
44 void DeviceInfo::load() {
DeviceInfo.h 25 class DeviceInfo {
26 PREVENT_COPY_AND_ASSIGN(DeviceInfo);
28 // returns nullptr if DeviceInfo is not initialized yet
31 static const DeviceInfo* get();
42 DeviceInfo() {}
43 ~DeviceInfo() {}
  /frameworks/base/libs/hwui/tests/unit/
DeviceInfoTests.cpp 17 #include <DeviceInfo.h>
24 TEST(DeviceInfo, basic) {
26 DeviceInfo::initialize();
27 const DeviceInfo* di = DeviceInfo::get();
28 ASSERT_NE(nullptr, di) << "DeviceInfo initialization failed";
RenderPropertiesTests.cpp 25 DeviceInfo::initialize();
27 const int maxTextureSize = DeviceInfo::get()->maxTextureSize();
  /system/connectivity/dhcp_client/
device_info.h 32 class DeviceInfo {
34 virtual ~DeviceInfo();
35 static DeviceInfo* GetInstance();
40 DeviceInfo();
47 friend struct base::DefaultLazyInstanceTraits<DeviceInfo>;
49 DISALLOW_COPY_AND_ASSIGN(DeviceInfo);
device_info.cc 35 base::LazyInstance<dhcp_client::DeviceInfo> g_dhcp_device_info
42 DeviceInfo::DeviceInfo()
47 DeviceInfo::~DeviceInfo() {}
49 DeviceInfo* DeviceInfo::GetInstance() {
53 bool DeviceInfo::GetDeviceInfo(const std::string& interface_name,
  /system/connectivity/shill/
mock_connection.cc 23 MockConnection::MockConnection(const DeviceInfo* device_info)
mock_device_info.cc 25 : DeviceInfo(control_interface, dispatcher, metrics, manager) {}
device_claimer.h 31 class DeviceInfo;
38 DeviceInfo* device_info,
71 DeviceInfo* device_info_;
device_info.cc 82 static string ObjectID(const DeviceInfo* d) { return "(device_info)"; }
86 const char DeviceInfo::kModemPseudoDeviceNamePrefix[] = "pseudomodem";
87 const char DeviceInfo::kEthernetPseudoDeviceNamePrefix[] = "pseudoethernet";
88 const char DeviceInfo::kIgnoredDeviceNamePrefix[] = "veth";
89 const char DeviceInfo::kDeviceInfoRoot[] = "/sys/class/net";
90 const char DeviceInfo::kDriverCdcEther[] = "cdc_ether";
91 const char DeviceInfo::kDriverCdcNcm[] = "cdc_ncm";
92 const char DeviceInfo::kDriverGdmWiMax[] = "gdm_wimax";
93 const char DeviceInfo::kDriverVirtioNet[] = "virtio_net";
94 const char DeviceInfo::kInterfaceUevent[] = "uevent"
    [all...]
  /device/asus/fugu/libaudio/
AudioHotplugThread.h 27 struct DeviceInfo {
40 virtual void onDeviceFound(const DeviceInfo& devInfo) = 0;
57 DeviceInfo* info);
AudioHardwareInput.h 52 virtual void onDeviceFound(const AudioHotplugThread::DeviceInfo& devInfo);
64 const AudioHotplugThread::DeviceInfo* getBestDevice(int inputSource);
69 // Place all input streams using the specified device into standby. If deviceInfo is NULL,
71 void standbyAllInputStreams(const AudioHotplugThread::DeviceInfo* deviceInfo);
78 AudioHotplugThread::DeviceInfo mDeviceInfos[kMaxDevices];
  /system/connectivity/apmanager/
device_info.cc 50 const char DeviceInfo::kDeviceInfoRoot[] = "/sys/class/net";
51 const char DeviceInfo::kInterfaceUevent[] = "uevent";
52 const char DeviceInfo::kInterfaceUeventWifiSignature[] = "DEVTYPE=wlan\n";
54 DeviceInfo::DeviceInfo(Manager* manager)
55 : link_callback_(Bind(&DeviceInfo::LinkMsgHandler, Unretained(this))),
63 DeviceInfo::~DeviceInfo() {}
65 void DeviceInfo::Start() {
90 void DeviceInfo::Stop()
    [all...]
device_info.h 46 // DeviceInfo will enumerate WiFi devices (PHYs) during startup and on-demand
49 class DeviceInfo : public base::SupportsWeakPtr<DeviceInfo> {
51 explicit DeviceInfo(Manager* manager);
52 virtual ~DeviceInfo();
116 DISALLOW_COPY_AND_ASSIGN(DeviceInfo);
  /external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
BluetoothDeviceList.java 38 private static class DeviceInfo {
42 public DeviceInfo(String name, String address) {
74 DeviceInfo device = (DeviceInfo) mAdapter.getItem(position);
82 List<DeviceInfo> mmDeviceList;
85 mmDeviceList = new ArrayList<DeviceInfo>();
90 mmDeviceList.add(new DeviceInfo(name, address));
111 final DeviceInfo device = mmDeviceList.get(position);
  /external/webrtc/talk/media/webrtc/
fakewebrtcvcmfactory.h 48 virtual webrtc::VideoCaptureModule::DeviceInfo* CreateDeviceInfo(int id) {
51 virtual void DestroyDeviceInfo(webrtc::VideoCaptureModule::DeviceInfo* info) {
  /cts/common/device-side/device-info/src/com/android/compatibility/common/deviceinfo/
CpuDeviceInfo.java 16 package com.android.compatibility.common.deviceinfo;
23 public final class CpuDeviceInfo extends DeviceInfo {
MemoryDeviceInfo.java 16 package com.android.compatibility.common.deviceinfo;
23 import com.android.compatibility.common.deviceinfo.DeviceInfo;
29 public final class MemoryDeviceInfo extends DeviceInfo {
ConfigurationDeviceInfo.java 16 package com.android.compatibility.common.deviceinfo;
25 public final class ConfigurationDeviceInfo extends DeviceInfo {
LocaleDeviceInfo.java 16 package com.android.compatibility.common.deviceinfo;
26 public final class LocaleDeviceInfo extends DeviceInfo {
  /external/webrtc/webrtc/modules/video_capture/
video_capture_factory.h 12 // and DeviceInfo.
36 static VideoCaptureModule::DeviceInfo* CreateDeviceInfo(
video_capture_factory.cc 32 VideoCaptureModule::DeviceInfo* VideoCaptureFactory::CreateDeviceInfo(
  /external/opencv3/modules/core/src/
cuda_info.cpp 121 DeviceInfo dev(devId);
300 // DeviceInfo
348 const char* cv::cuda::DeviceInfo::name() const
358 size_t cv::cuda::DeviceInfo::totalGlobalMem() const
368 size_t cv::cuda::DeviceInfo::sharedMemPerBlock() const
378 int cv::cuda::DeviceInfo::regsPerBlock() const
388 int cv::cuda::DeviceInfo::warpSize() const
398 size_t cv::cuda::DeviceInfo::memPitch() const
408 int cv::cuda::DeviceInfo::maxThreadsPerBlock() const
418 Vec3i cv::cuda::DeviceInfo::maxThreadsDim() cons
    [all...]
  /external/opencv3/modules/cudaimgproc/test/
test_histogram.cpp 52 PARAM_TEST_CASE(HistEven, cv::cuda::DeviceInfo, cv::Size)
54 cv::cuda::DeviceInfo devInfo;
96 PARAM_TEST_CASE(CalcHist, cv::cuda::DeviceInfo, cv::Size)
98 cv::cuda::DeviceInfo devInfo;
140 PARAM_TEST_CASE(EqualizeHist, cv::cuda::DeviceInfo, cv::Size)
142 cv::cuda::DeviceInfo devInfo;
179 PARAM_TEST_CASE(CLAHE, cv::cuda::DeviceInfo, cv::Size, ClipLimit)
181 cv::cuda::DeviceInfo devInfo;
  /external/webrtc/webrtc/modules/video_capture/windows/
video_capture_factory_windows.cc 19 VideoCaptureModule::DeviceInfo* VideoCaptureImpl::CreateDeviceInfo(

Completed in 949 milliseconds

1 2 3 4 5 6 7 8