Searched refs:propValue (Results 1 - 8 of 8) sorted by relevance

/hardware/qcom/audio/msm8909/policy_hal/
H A DAudioPolicyManager.cpp81 char propValue[PROPERTY_VALUE_MAX]; local
83 if (property_get("voice.conc.fallbackpath", propValue, NULL)) {
84 if (!strncmp(propValue, "deep-buffer", 11)) {
87 else if (!strncmp(propValue, "fast", 4)) {
92 propValue);
439 char propValue[PROPERTY_VALUE_MAX]; local
440 if (property_get("audio.offload.disable", propValue, "0")) {
441 if (atoi(propValue) != 0) {
442 ALOGV("offload disabled by audio.offload.disable=%s", propValue );
481 if (property_get("audio.offload.min.duration.secs", propValue, NUL
646 char propValue[PROPERTY_VALUE_MAX]; local
1382 char propValue[PROPERTY_VALUE_MAX] = {0}; local
1396 char propValue[PROPERTY_VALUE_MAX]; local
1712 char propValue[PROPERTY_VALUE_MAX]; local
1910 char propValue[PROPERTY_VALUE_MAX]; local
[all...]
/hardware/libhardware/modules/input/evdev/
H A DInputDevice.cpp99 const char* propValue = prop.getValue(); local
100 if (propValue == nullptr) return false;
103 int value = std::strtol(propValue, &end, 10);
105 ALOGW("Expected boolean for property %s; value=%s", prop.getKey(), propValue);
/hardware/qcom/audio/msm8909/post_proc/
H A Dbass_boost.c438 char propValue[PROPERTY_VALUE_MAX]; local
444 if (property_get("audio.safx.pbe.enabled", propValue, NULL)) {
445 pbe_enabled_by_prop = atoi(propValue) ||
446 !strncmp("true", propValue, 4);
577 uint32_t propValue = 0; local
598 propValue = atoll(propValueStr);
599 if (propValue != 0) {
600 pbe_app_type = propValue;
/hardware/qcom/audio/msm8909/hal/audio_extn/
H A Daudio_extn.c482 char propValue[PROPERTY_VALUE_MAX] = {0}; local
485 if (property_get("audio.pp.asphere.enabled", propValue, "false")) {
486 if (!strncmp("true", propValue, 4))
/hardware/libhardware_legacy/audio/
H A DAudioPolicyManagerBase.cpp1485 char propValue[PROPERTY_VALUE_MAX]; local
1486 if (property_get("audio.offload.disable", propValue, "0")) {
1487 if (atoi(propValue) != 0) {
1488 ALOGV("offload disabled by audio.offload.disable=%s", propValue );
1508 if (property_get("audio.offload.min.duration.secs", propValue, NULL)) {
1509 if (offloadInfo.duration_us < (atoi(propValue) * 1000000 )) {
1510 ALOGV("Offload denied by duration < audio.offload.min.duration.secs(=%s)", propValue);
/hardware/qcom/audio/msm8909/hal/msm8916/
H A Dplatform.c2673 char propValue[PROPERTY_VALUE_MAX]={0}; local
2707 if (property_get("voice.playback.conc.disabled", propValue, NULL)) {
2708 prop_playback_enabled = atoi(propValue) ||
2709 !strncmp("true", propValue, 4);
/hardware/qcom/audio/msm8909/hal/msm8974/
H A Dplatform.c2545 char propValue[PROPERTY_VALUE_MAX]={0}; local
2583 if (property_get("voice.playback.conc.disabled", propValue, NULL)) {
2584 prop_playback_enabled = atoi(propValue) ||
2585 !strncmp("true", propValue, 4);
/hardware/ril/reference-ril/
H A Dreference-ril.c554 char propValue[PROP_VALUE_MAX]; local
556 if (__system_property_get("ro.kernel.qemu", propValue) != 0) {
577 if (__system_property_get(propName, propValue) == 0) {
583 strlcat(dnslist, propValue, dnslist_sz);

Completed in 234 milliseconds