Home
last modified time | relevance | path

Searched refs:name (Results 1 – 25 of 2209) sorted by relevance

12345678910>>...89

/hardware/qcom/sm7250/display/sde-drm/
Ddrm_property.cpp36 DRMProperty DRMPropertyManager::GetPropertyEnum(const std::string &name) const { in GetPropertyEnum()
37 if (name == "type") { return DRMProperty::TYPE; } in GetPropertyEnum()
38 if (name == "FB_ID") { return DRMProperty::FB_ID; } in GetPropertyEnum()
39 if (name == "rot_fb_id") { return DRMProperty::ROT_FB_ID; } in GetPropertyEnum()
40 if (name == "CRTC_ID") { return DRMProperty::CRTC_ID; } in GetPropertyEnum()
41 if (name == "CRTC_X") { return DRMProperty::CRTC_X; } in GetPropertyEnum()
42 if (name == "CRTC_Y") { return DRMProperty::CRTC_Y; } in GetPropertyEnum()
43 if (name == "CRTC_W") { return DRMProperty::CRTC_W; } in GetPropertyEnum()
44 if (name == "CRTC_H") { return DRMProperty::CRTC_H; } in GetPropertyEnum()
45 if (name == "SRC_X") { return DRMProperty::SRC_X; } in GetPropertyEnum()
[all …]
/hardware/google/pixel/thermal/
Dpixel-thermal-logd.rc34 write /dev/thermal/tz-by-name/quiet-therm-adc/mode disabled
35 write /dev/thermal/tz-by-name/quiet-therm-monitor/mode disabled
36 write /dev/thermal/tz-by-name/fps-therm-adc/mode disabled
37 write /dev/thermal/tz-by-name/fps-therm-monitor/mode disabled
39 write /dev/thermal/tz-by-name/mb-therm-adc/mode disabled
40 write /dev/thermal/tz-by-name/mb-therm-monitor/mode disabled
42 write /dev/thermal/tz-by-name/sdm-therm/mode disabled
43 write /dev/thermal/tz-by-name/sdm-therm-monitor/mode disabled
45 write /dev/thermal/tz-by-name/skin-therm-adc/mode disabled
46 write /dev/thermal/tz-by-name/skin-therm-monitor/mode disabled
[all …]
/hardware/interfaces/automotive/can/1.0/vts/functional/
DVtsHalCanControllerV1_0TargetTest.cpp91 config.name = srvname; in up()
136 const std::string name = mBusNames[0]; in TEST_P() local
138 assertRegistered(name, false); in TEST_P()
139 if (!up(InterfaceType::VIRTUAL, name, "vcan57", ICanController::Result::OK)) GTEST_SKIP(); in TEST_P()
140 assertRegistered(name, true); in TEST_P()
142 const auto dnresult = mCanController->downInterface(name); in TEST_P()
145 assertRegistered(name, false); in TEST_P()
154 const std::string name = mBusNames[0]; in TEST_P() local
156 assertRegistered(name, false); in TEST_P()
157 if (!up(InterfaceType::VIRTUAL, name, "vcan72", ICanController::Result::OK)) GTEST_SKIP(); in TEST_P()
[all …]
/hardware/libhardware/modules/sensors/dynamic_sensor/HidUtils/test/
DHidParserExample.cpp31 const char *name = p->name != nullptr ? p->name : "unnamed"; in doParse() local
35 LOG_V << name << " filtered tree: " << LOG_ENDL; in doParse()
39 LOG_E << name << " parsing error!" << LOG_ENDL; in doParse()
53 const char *name = p->name != nullptr ? p->name : "unnamed"; in doParseAndFilter() local
58 LOG_V << name << " filtered tree: " << LOG_ENDL; in doParseAndFilter()
62 LOG_E << name << " parsing error!" << LOG_ENDL; in doParseAndFilter()
84 const char *name = p->name != nullptr ? p->name : "unnamed"; in doDigest() local
88 LOG_E << name << " parsing error!" << LOG_ENDL; in doDigest()
94 LOG_V << name << " digest: " << LOG_ENDL; in doDigest()
/hardware/invensense/6515/libsensors_iio/software/core/mllite/linux/
Dml_sysfs_helper.h22 int find_type_by_name(const char *name, const char *type);
24 inv_error_t inv_get_sysfs_path(char *name);
25 inv_error_t inv_get_sysfs_abs_path(char *name);
26 inv_error_t inv_get_dmpfile(char *name);
27 inv_error_t inv_get_chip_name(char *name);
29 inv_error_t inv_get_handler_number(const char *name, int *num);
30 inv_error_t inv_get_input_number(const char *name, int *num);
31 inv_error_t inv_get_iio_trigger_path(const char *name);
32 inv_error_t inv_get_iio_device_node(const char *name);
/hardware/invensense/65xx/libsensors_iio/software/core/mllite/linux/
Dml_sysfs_helper.h22 int find_type_by_name(const char *name, const char *type);
24 inv_error_t inv_get_sysfs_path(char *name);
25 inv_error_t inv_get_sysfs_abs_path(char *name);
26 inv_error_t inv_get_dmpfile(char *name);
27 inv_error_t inv_get_chip_name(char *name);
29 inv_error_t inv_get_handler_number(const char *name, int *num);
30 inv_error_t inv_get_input_number(const char *name, int *num);
31 inv_error_t inv_get_iio_trigger_path(const char *name);
32 inv_error_t inv_get_iio_device_node(const char *name);
/hardware/google/pixel/vibrator/drv2624/tests/
Dtest-hwapi.cpp65 auto name = std::filesystem::path(n); in SetUp() local
66 auto path = std::filesystem::path(mFilesDir.path) / name; in SetUp()
69 mFileMap[name] = path; in SetUp()
76 auto name = std::filesystem::path(n); in SetUp() local
77 auto path = std::filesystem::path(mEmptyDir.path) / name; in SetUp()
91 void expectContent(const std::string &name, const T &value) { in expectContent() argument
92 mExpectedContent[name] << value << std::endl; in expectContent()
97 void updateContent(const std::string &name, const T &value) { in updateContent() argument
98 std::ofstream(mFileMap[name]) << value << std::endl; in updateContent()
102 void expectAndUpdateContent(const std::string &name, const T &value) { in expectAndUpdateContent() argument
[all …]
/hardware/interfaces/audio/core/all-versions/vts/functional/
DDeviceManager.h44 sp<Interface> getExisting(const Key& name) { in getExisting() argument
45 auto existing = instances.find(name); in getExisting()
49 sp<Interface> get(const Key& name) { in get() argument
50 auto existing = instances.find(name); in get()
52 auto [inserted, _] = instances.emplace(name, Derived::createInterfaceInstance(name)); in get()
58 bool reset(const Key& name, bool waitForDestruction) __attribute__((warn_unused_result)) { in reset() argument
59 auto iter = instances.find(name); in reset()
92 static sp<IDevicesFactory> createInterfaceInstance(const std::string& name) { in createInterfaceInstance() argument
93 return IDevicesFactory::getService(name); in createInterfaceInstance()
105 auto [factoryName, name] = factoryAndDevice; in createInterfaceInstance()
[all …]
/hardware/qcom/gps/msm8960/core/
DLocDualContext.cpp63 const char* name) in getMsgTask() argument
66 mMsgTask = new MsgTask(tCreator, name); in getMsgTask()
72 const char* name) in getMsgTask() argument
75 mMsgTask = new MsgTask(tAssociate, name); in getMsgTask()
81 const char* name) in getLocFgContext() argument
84 const MsgTask* msgTask = getMsgTask(tCreator, name); in getLocFgContext()
92 const char* name) in getLocFgContext() argument
95 const MsgTask* msgTask = getMsgTask(tAssociate, name); in getLocFgContext()
104 const char* name) in getLocBgContext() argument
107 const MsgTask* msgTask = getMsgTask(tCreator, name); in getLocBgContext()
[all …]
/hardware/qcom/sdm845/gps/msm8960/core/
DLocDualContext.cpp63 const char* name) in getMsgTask() argument
66 mMsgTask = new MsgTask(tCreator, name); in getMsgTask()
72 const char* name) in getMsgTask() argument
75 mMsgTask = new MsgTask(tAssociate, name); in getMsgTask()
81 const char* name) in getLocFgContext() argument
84 const MsgTask* msgTask = getMsgTask(tCreator, name); in getLocFgContext()
92 const char* name) in getLocFgContext() argument
95 const MsgTask* msgTask = getMsgTask(tAssociate, name); in getLocFgContext()
104 const char* name) in getLocBgContext() argument
107 const MsgTask* msgTask = getMsgTask(tCreator, name); in getLocBgContext()
[all …]
/hardware/qcom/audio/hal/msm8916/
Dhw_info.c31 char name[HW_INFO_ARRAY_MAX_SIZE]; member
46 strlcpy(hw_info->name, "msm8x16", sizeof(hw_info->name)); in update_hardware_info_8x16()
49 strlcpy(hw_info->name, "msm8909", sizeof(hw_info->name)); in update_hardware_info_8x16()
51 strlcpy(hw_info->name, "msm8909", sizeof(hw_info->name)); in update_hardware_info_8x16()
54 strlcpy(hw_info->name, "msm8952", sizeof(hw_info->name)); in update_hardware_info_8x16()
56 strlcpy(hw_info->name, "msm8952", sizeof(hw_info->name)); in update_hardware_info_8x16()
78 strlcpy(hw_info->name, "", sizeof(hw_info->name)); in hw_info_init()
/hardware/qcom/audio/legacy/alsa_sound/
DALSAControl.cpp54 status_t ALSAControl::get(const char *name, unsigned int &value, int index) in get() argument
63 ctl = mixer_get_control(mHandle, name, index); in get()
71 status_t ALSAControl::set(const char *name, unsigned int value, int index) in set() argument
75 ALOGD("set:: name %s value %d index %d", name, value, index); in set()
82 ctl = mixer_get_control(mHandle, name, 0); in set()
91 status_t ALSAControl::set(const char *name, const char *value) in set() argument
95 ALOGD("set:: name %s value %s", name, value); in set()
102 ctl = mixer_get_control(mHandle, name, 0); in set()
111 status_t ALSAControl::setext(const char *name, int count, char **setValues) in setext() argument
115 ALOGD("setext:: name %s count %d", name, count); in setext()
[all …]
/hardware/qcom/gps/msm8996/core/
DLocDualContext.h45 const char* name, bool joinable = true);
46 static const MsgTask* getMsgTask(const char* name, bool joinable = true);
61 const char* name, bool joinable = true);
62 inline static ContextBase* getLocFgContext(const char* name, bool joinable = true) {
63 return getLocFgContext(NULL, NULL, name, joinable);
66 const char* name, bool joinable = true);
67 inline static ContextBase* getLocBgContext(const char* name, bool joinable = true) {
68 return getLocBgContext(NULL, NULL, name, joinable);
/hardware/qcom/gps/msm8909w_3100/core/
DLocDualContext.h45 const char* name, bool joinable = true);
46 static const MsgTask* getMsgTask(const char* name, bool joinable = true);
61 const char* name, bool joinable = true);
62 inline static ContextBase* getLocFgContext(const char* name, bool joinable = true) {
63 return getLocFgContext(NULL, NULL, name, joinable);
66 const char* name, bool joinable = true);
67 inline static ContextBase* getLocBgContext(const char* name, bool joinable = true) {
68 return getLocBgContext(NULL, NULL, name, joinable);
/hardware/qcom/sdm845/gps/msm8909/core/
DLocDualContext.h45 const char* name, bool joinable = true);
46 static const MsgTask* getMsgTask(const char* name, bool joinable = true);
61 const char* name, bool joinable = true);
62 inline static ContextBase* getLocFgContext(const char* name, bool joinable = true) {
63 return getLocFgContext(NULL, NULL, name, joinable);
66 const char* name, bool joinable = true);
67 inline static ContextBase* getLocBgContext(const char* name, bool joinable = true) {
68 return getLocBgContext(NULL, NULL, name, joinable);
/hardware/qcom/gps/msm8909/core/
DLocDualContext.h45 const char* name, bool joinable = true);
46 static const MsgTask* getMsgTask(const char* name, bool joinable = true);
61 const char* name, bool joinable = true);
62 inline static ContextBase* getLocFgContext(const char* name, bool joinable = true) {
63 return getLocFgContext(NULL, NULL, name, joinable);
66 const char* name, bool joinable = true);
67 inline static ContextBase* getLocBgContext(const char* name, bool joinable = true) {
68 return getLocBgContext(NULL, NULL, name, joinable);
/hardware/qcom/sdm845/gps/msm8996/core/
DLocDualContext.h45 const char* name, bool joinable = true);
46 static const MsgTask* getMsgTask(const char* name, bool joinable = true);
61 const char* name, bool joinable = true);
62 inline static ContextBase* getLocFgContext(const char* name, bool joinable = true) {
63 return getLocFgContext(NULL, NULL, name, joinable);
66 const char* name, bool joinable = true);
67 inline static ContextBase* getLocBgContext(const char* name, bool joinable = true) {
68 return getLocBgContext(NULL, NULL, name, joinable);
/hardware/qcom/sdm845/gps/sdm845/core/
DLocDualContext.h44 const char* name, bool joinable = true);
45 static const MsgTask* getMsgTask(const char* name, bool joinable = true);
60 const char* name, bool joinable = true);
61 inline static ContextBase* getLocFgContext(const char* name, bool joinable = true) {
62 return getLocFgContext(NULL, NULL, name, joinable);
65 const char* name, bool joinable = true);
66 inline static ContextBase* getLocBgContext(const char* name, bool joinable = true) {
67 return getLocBgContext(NULL, NULL, name, joinable);
/hardware/google/pixel/thermal/utils/
Dconfig_parser.cpp162 const std::string &name = sensors[i]["Name"].asString(); in ParseSensorInfo() local
163 LOG(INFO) << "Sensor[" << i << "]'s Name: " << name; in ParseSensorInfo()
164 if (name.empty()) { in ParseSensorInfo()
171 auto result = sensors_name_parsed.insert(name); in ParseSensorInfo()
179 LOG(INFO) << "Sensor[" << name << "]'s Type: " << sensor_type_str; in ParseSensorInfo()
184 << "Sensor[" << name << "]'s Type: " << sensor_type_str; in ParseSensorInfo()
191 LOG(INFO) << "Failed to read Sensor[" << name << "]'s Monitor, set to 'false'"; in ParseSensorInfo()
195 LOG(INFO) << "Sensor[" << name << "]'s SendCallback: " << std::boolalpha << send_cb in ParseSensorInfo()
200 LOG(INFO) << "Failed to read Sensor[" << name << "]'s SendPowerHint, set to 'false'"; in ParseSensorInfo()
204 LOG(INFO) << "Sensor[" << name << "]'s SendPowerHint: " << std::boolalpha << send_powerhint in ParseSensorInfo()
[all …]
/hardware/google/gchips/gralloc4/src/capabilities/
DAndroid.bp23 name: "arm_gralloc_capabilities_cc_defaults",
42 name: "mali_gpu_support_afbc_basic",
45 name: "mali_gpu_support_afbc_splitblk",
48 name: "mali_gpu_support_afbc_wideblk",
51 name: "mali_gpu_support_afbc_tiled_headers",
54 name: "mali_gpu_support_afbc_yuv_write",
57 name: "gralloc_arm_no_external_afbc",
60 name: "dpu_support_1010102_afbc",
63 name: "mali_gralloc_api_tests",
67 name: "arm_gralloc_capabilities_defaults",
[all …]
/hardware/qcom/sdm845/gps/msm8998/core/
DLocDualContext.h47 const char* name, bool joinable = true);
48 static const MsgTask* getMsgTask(const char* name, bool joinable = true);
64 const char* name, bool joinable = true);
65 inline static ContextBase* getLocFgContext(const char* name, bool joinable = true) {
66 return getLocFgContext(NULL, NULL, name, joinable);
69 const char* name, bool joinable = true);
70 inline static ContextBase* getLocBgContext(const char* name, bool joinable = true) {
71 return getLocBgContext(NULL, NULL, name, joinable);
/hardware/qcom/gps/msm8998/core/
DLocDualContext.h47 const char* name, bool joinable = true);
48 static const MsgTask* getMsgTask(const char* name, bool joinable = true);
64 const char* name, bool joinable = true);
65 inline static ContextBase* getLocFgContext(const char* name, bool joinable = true) {
66 return getLocFgContext(NULL, NULL, name, joinable);
69 const char* name, bool joinable = true);
70 inline static ContextBase* getLocBgContext(const char* name, bool joinable = true) {
71 return getLocBgContext(NULL, NULL, name, joinable);
/hardware/interfaces/automotive/evs/1.1/default/
DConfigManagerUtil.cpp83 bool ConfigManagerUtil::convertToMetadataTag(const char *name, in convertToMetadataTag() argument
85 if (!strcmp(name, "LENS_DISTORTION")) { in convertToMetadataTag()
87 } else if (!strcmp(name, "LENS_INTRINSIC_CALIBRATION")) { in convertToMetadataTag()
89 } else if (!strcmp(name, "LENS_POSE_ROTATION")) { in convertToMetadataTag()
91 } else if (!strcmp(name, "LENS_POSE_TRANSLATION")) { in convertToMetadataTag()
93 } else if (!strcmp(name, "REQUEST_AVAILABLE_CAPABILITIES")) { in convertToMetadataTag()
95 } else if (!strcmp(name, "LOGICAL_MULTI_CAMERA_PHYSICAL_IDS")) { in convertToMetadataTag()
106 const char *name, in convertToCameraCapability() argument
109 if (!strcmp(name, "DEPTH_OUTPUT")) { in convertToCameraCapability()
111 } else if (!strcmp(name, "LOGICAL_MULTI_CAMERA")) { in convertToCameraCapability()
[all …]
/hardware/qcom/gps/msm8084/core/
DLocDualContext.cpp65 const char* name) in getMsgTask() argument
68 mMsgTask = new MsgTask(tCreator, name); in getMsgTask()
74 const char* name) in getMsgTask() argument
77 mMsgTask = new MsgTask(tAssociate, name); in getMsgTask()
85 const char* name) in getLocFgContext() argument
88 const MsgTask* msgTask = getMsgTask(tCreator, name); in getLocFgContext()
100 const char* name) in getLocFgContext() argument
103 const MsgTask* msgTask = getMsgTask(tAssociate, name); in getLocFgContext()
117 const char* name) in getLocBgContext() argument
120 const MsgTask* msgTask = getMsgTask(tCreator, name); in getLocBgContext()
[all …]
/hardware/qcom/sdm845/gps/msm8084/core/
DLocDualContext.cpp65 const char* name) in getMsgTask() argument
68 mMsgTask = new MsgTask(tCreator, name); in getMsgTask()
74 const char* name) in getMsgTask() argument
77 mMsgTask = new MsgTask(tAssociate, name); in getMsgTask()
85 const char* name) in getLocFgContext() argument
88 const MsgTask* msgTask = getMsgTask(tCreator, name); in getLocFgContext()
100 const char* name) in getLocFgContext() argument
103 const MsgTask* msgTask = getMsgTask(tAssociate, name); in getLocFgContext()
117 const char* name) in getLocBgContext() argument
120 const MsgTask* msgTask = getMsgTask(tCreator, name); in getLocBgContext()
[all …]

12345678910>>...89