/device/generic/goldfish-opengl/system/codecs/omx/plugin/ |
D | GoldfishOMXPlugin.cpp | 49 char propValue[PROP_VALUE_MAX]; in useOmxCodecs() local 51 bool myret = property_get(prop.c_str(), propValue, "") > 0 && in useOmxCodecs() 52 strcmp("0", propValue) == 0; in useOmxCodecs() 54 ALOGD("%s %d found prop %s val %s", __func__, __LINE__, prop.c_str(), propValue); in useOmxCodecs() 68 char propValue[PROP_VALUE_MAX]; in useGoogleGoldfishComponentInstance() local 70 bool myret = property_get(propName.c_str(), propValue, "") > 0 && in useGoogleGoldfishComponentInstance() 71 strcmp("1", propValue) == 0; in useGoogleGoldfishComponentInstance() 73 ALOGD("%s %d found prop %s val %s", __func__, __LINE__, propName.c_str(), propValue); in useGoogleGoldfishComponentInstance() 80 char propValue[PROP_VALUE_MAX]; in useAndroidGoldfishComponentInstance() local 82 bool myret = property_get(propName.c_str(), propValue, "") > 0 && in useAndroidGoldfishComponentInstance() [all …]
|
/device/google/cuttlefish/guest/hals/ril/reference-ril/ |
D | misc.c | 37 char propValue[PROP_VALUE_MAX]; in isInEmulator() local 38 inQemu = (__system_property_get("ro.boot.qemu", propValue) != 0); in isInEmulator() 44 char propValue[PROP_VALUE_MAX]; in qemu_open_modem_port() local 45 if (__system_property_get("vendor.qemu.vport.modem", propValue) <= 0) { in qemu_open_modem_port() 48 int fd = open(propValue, O_RDWR); in qemu_open_modem_port()
|
D | reference-ril.c | 837 char propValue[PROP_VALUE_MAX] = {0}; in requestOrSendDataCallList() local 975 char propValue[PROP_VALUE_MAX]; in requestOrSendDataCallList() local 980 if (property_get(propName, propValue, "") <= 0) { in requestOrSendDataCallList() 986 strlcat(dnslist, propValue, dnslist_sz); in requestOrSendDataCallList() 991 if (property_get("vendor.net.eth0.gw", propValue, "") > 0) { in requestOrSendDataCallList() 992 responses[i].gateways = propValue; in requestOrSendDataCallList()
|
/device/generic/car/emulator/vhal_aidl/VehicleEmulator/test/ |
D | VehicleEmulatorTest.cpp | 301 VehiclePropValue* propValue = rxMsg.add_value(); in TEST_F() local 303 propValue->set_prop(propId); in TEST_F() 304 propValue->set_area_id(HVAC_ALL); in TEST_F() 305 propValue->set_status(VehiclePropStatus::AVAILABLE); in TEST_F() 306 propValue->add_int32_values(testValue); in TEST_F() 349 VehiclePropValue* propValue = rxMsg.add_value(); in TEST_F() local 350 propValue->set_prop(INVALID_PROP_ID); in TEST_F()
|
/device/generic/goldfish-opengl/system/codecs/c2/store/ |
D | GoldfishComponentStore.cpp | 249 char propValue[PROP_VALUE_MAX]; in useAndroidGoldfishComponentInstance() local 250 bool myret = property_get(propName.c_str(), propValue, "") > 0 && in useAndroidGoldfishComponentInstance() 251 strcmp("2", propValue) == 0; in useAndroidGoldfishComponentInstance() 254 propValue); in useAndroidGoldfishComponentInstance()
|
/device/generic/goldfish/audio/ |
D | talsa.cpp | 102 char propValue[PROPERTY_VALUE_MAX]; in readUnsignedProperty() local 104 if (property_get(propName, propValue, nullptr) < 0) { in readUnsignedProperty() 109 return (sscanf(propValue, "%u", &value) == 1) ? value : defaultValue; in readUnsignedProperty()
|
/device/generic/car/emulator/vhal_v2_0/ |
D | VehicleEmulator.h | 48 virtual bool setPropertyFromVehicle(const VehiclePropValue& propValue) = 0; 81 void doSetValueFromClient(const VehiclePropValue& propValue);
|
D | EmulatedVehicleHalServer.cpp | 58 bool EmulatedVehicleHalServer::setPropertyFromVehicle(const VehiclePropValue& propValue) { in setPropertyFromVehicle() argument 59 auto updatedPropValue = getValuePool()->obtain(propValue); in setPropertyFromVehicle()
|
D | VehicleEmulator.cpp | 66 void VehicleEmulator::doSetValueFromClient(const VehiclePropValue& propValue) { in doSetValueFromClient() argument 69 populateProtoVehiclePropValue(val, &propValue); in doSetValueFromClient()
|
D | EmulatedVehicleHalServer.h | 47 bool setPropertyFromVehicle(const VehiclePropValue& propValue);
|
/device/generic/car/emulator/vhal_aidl/VehicleEmulator/ |
D | VehicleEmulator.cpp | 74 void VehicleEmulator::doSetValueFromClient(const VehiclePropValue& propValue) { in doSetValueFromClient() argument 77 populateProtoVehiclePropValue(propValue, val); in doSetValueFromClient()
|
/device/generic/car/emulator/vhal_aidl/VehicleEmulator/include/ |
D | VehicleEmulator.h | 48 …etValueFromClient(const aidl::android::hardware::automotive::vehicle::VehiclePropValue& propValue);
|