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

1 2 3

  /hardware/qcom/media/msmcobalt/mm-video-v4l2/vidc/vdec/src/
omx_swvdec_utils.cpp 61 char property_value[PROPERTY_VALUE_MAX] = {0}; local
63 if (property_get("omx_swvdec.log.level", property_value, NULL))
65 omx_swvdec_loglevel = atoi(property_value);
169 char property_value[PROPERTY_VALUE_MAX] = {0}; local
200 if (property_get("omx_swvdec.dump.ip", property_value, NULL))
202 m_dump_ip = atoi(property_value);
207 if (property_get("omx_swvdec.dump.op", property_value, NULL))
209 m_dump_op = atoi(property_value);
215 property_value,
219 (char *) malloc((strlen(property_value) + 1) * sizeof(char))
    [all...]
  /hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/src/
omx_swvdec_utils.cpp 60 char property_value[PROPERTY_VALUE_MAX] = {0}; local
62 if (property_get("omx_swvdec.log.level", property_value, NULL))
64 omx_swvdec_loglevel = atoi(property_value);
294 char property_value[PROPERTY_VALUE_MAX] = {0}; local
296 if (property_get("omx_swvdec.dump.ip", property_value, NULL))
298 m_dump_ip = atoi(property_value);
302 if (property_get("omx_swvdec.dump.op", property_value, NULL))
304 m_dump_op = atoi(property_value);
309 property_value,
315 (char *) malloc((strlen(property_value) + 1) * sizeof(char))
    [all...]
  /system/connectivity/shill/
dhcp_properties.cc 85 string property_value; local
86 if (storage->GetString(id, GetFullPropertyName(name), &property_value)) {
87 properties_.SetString(name, property_value);
96 string property_value; local
100 property_value = properties_.GetString(name);
101 storage->SetString(id, GetFullPropertyName(name), property_value);
  /external/webrtc/talk/media/devices/
linuxdeviceinfo.cc 121 const char* property_value = NULL; local
142 property_value = libudev_context->instance()->
147 if (!property_value) {
150 property->assign(property_value);
  /system/connectivity/shill/test-rpc-proxy/
proxy_dbus_client.cc 32 brillo::Any* property_value) {
33 CHECK(property_value);
40 *property_value = proxy_properties[property_name];
52 brillo::Any property_value; local
54 if ((GetPropertyValueFromProxy<Proxy>(proxy, property_name, &property_value)) &&
56 property_value) != expected_values.end())) {
60 *final_value = property_value;
211 brillo::Any* property_value) {
213 proxy, property_name, property_value);
219 brillo::Any* property_value) {
421 brillo::Any property_value; local
    [all...]
proxy_dbus_client.h 69 brillo::Any* property_value);
72 brillo::Any* property_value);
75 brillo::Any* property_value);
129 brillo::Any* property_value);
proxy_dbus_shill_wifi_client.h 87 brillo::Any* property_value) override;
90 const brillo::Any& property_value) override;
proxy_shill_wifi_client.h 106 brillo::Any* property_value) = 0;
109 const brillo::Any& property_value) = 0;
proxy_dbus_shill_wifi_client.cc 40 brillo::Any property_value; local
42 profile_proxy.get(), shill::kEntriesProperty, &property_value));
43 auto entry_ids = property_value.Get<std::vector<std::string>>();
397 brillo::Any property_value; local
399 profile.get(), shill::kEntriesProperty, &property_value)) {
402 auto entry_ids = property_value.Get<std::vector<std::string>>();
473 brillo::Any* property_value) {
483 device.get(), property_name, property_value);
489 const brillo::Any& property_value) {
499 property_name, property_value, nullptr)
    [all...]
proxy_rpc_server.cc 334 brillo::Any property_value; local
336 interface_name, property_name, &property_value)) {
340 GetXmlRpcValueFromBrilloAnyValue(property_value, &result);
352 brillo::Any property_value; local
353 GetBrilloAnyValueFromXmlRpcValue(&params_in[2], &property_value);
355 interface_name, property_name, property_value);
  /packages/services/Car/vehicle_network_service/
VehiclePropertyAccessControl.cpp 138 int32_t property_value; local
169 property_value = std::stoul(tmp_str, nullptr, 16);
171 property_value = std::stoul(tmp_str, nullptr, 10);
214 if (!updateOrCreate(uid_value, property_value,
218 property_value, uid_value, access_value);
221 property_value, uid_value, access_value);
  /system/weaved/buffet/
shill_client.h 84 const brillo::Any& property_value);
91 const brillo::Any& property_value);
98 const brillo::Any& property_value);
shill_client.cc 265 const Any& property_value) {
276 for (const auto& device_path : property_value.TryGet<vector<ObjectPath>>()) {
339 const Any& property_value) {
350 ObjectPath service_path{property_value.TryGet<ObjectPath>()};
438 const Any& property_value) {
446 const string state{property_value.TryGet<string>()};
456 VLOG(3) << "Signal strength=" << property_value.TryGet<uint8_t>();
458 OnStrengthChangeForConnectingService(property_value.TryGet<uint8_t>());
460 VLOG(3) << "Error=" << property_value.TryGet<std::string>();
462 connecting_service_error_ = property_value.TryGet<std::string>()
    [all...]
  /external/freetype/src/base/
ftinit.c 265 char property_value[MAX_LENGTH + 1]; local
312 property_value[i] = *p++;
314 property_value[i] = '\0';
323 property_value );
  /external/libbrillo/brillo/dbus/
exported_object_manager_unittest.cc 44 std::string property_value; local
46 ASSERT_TRUE(each_property.PopVariantOfString(&property_value));
50 EXPECT_EQ(property_value, kTestPropertyValue);
  /hardware/qcom/media/msm8974/mm-video-v4l2/vidc/venc/src/
omx_video_encoder.cpp 75 char property_value[PROPERTY_VALUE_MAX] = {0}; local
76 property_get("vidc.debug.level", property_value, "1");
77 debug_level = atoi(property_value);
78 property_value[0] = '\0';
79 property_get("vidc.debug.bframes", property_value, "0");
80 bframes = atoi(property_value);
81 property_value[0] = '\0';
82 property_get("vidc.debug.entropy", property_value, "1");
83 entropy = !!atoi(property_value);
84 property_value[0] = '\0'
    [all...]
  /hardware/qcom/media/msmcobalt/mm-video-v4l2/vidc/venc/src/
omx_video_encoder.cpp 141 char property_value[PROPERTY_VALUE_MAX] = {0}; local
142 property_get("vidc.debug.level", property_value, "1");
143 debug_level = atoi(property_value);
144 property_value[0] = '\0';
145 property_get("vidc.debug.bframes", property_value, "0");
146 bframes = atoi(property_value);
147 property_value[0] = '\0';
148 property_get("vidc.debug.entropy", property_value, "1");
149 entropy = !!atoi(property_value);
150 property_value[0] = '\0'
    [all...]
omx_swvenc_mpeg4.cpp 66 char property_value[PROPERTY_VALUE_MAX] = {0}; local
70 property_value[0] = '\0';
71 property_get("vidc.debug.level", property_value, "1");
72 debug_level = atoi(property_value);
74 property_value[0] = '\0';
75 property_get("vidc.enc.log.in", property_value, "0");
76 m_debug.in_buffer_log = atoi(property_value);
78 property_value[0] = '\0';
79 property_get("vidc.enc.log.out", property_value, "0");
80 m_debug.out_buffer_log = atoi(property_value);
    [all...]
  /hardware/qcom/media/msm8996/mm-video-v4l2/vidc/venc/src/
omx_swvenc_mpeg4.cpp 66 char property_value[PROPERTY_VALUE_MAX] = {0}; local
70 property_value[0] = '\0';
71 property_get("vidc.debug.level", property_value, "1");
72 debug_level = atoi(property_value);
74 property_value[0] = '\0';
75 property_get("vidc.enc.log.in", property_value, "0");
76 m_debug.in_buffer_log = atoi(property_value);
78 property_value[0] = '\0';
79 property_get("vidc.enc.log.out", property_value, "0");
80 m_debug.out_buffer_log = atoi(property_value);
    [all...]
omx_video_encoder.cpp 149 char property_value[PROPERTY_VALUE_MAX] = {0}; local
150 property_get("vidc.debug.level", property_value, "1");
151 debug_level = atoi(property_value);
152 property_value[0] = '\0';
153 property_get("vidc.debug.bframes", property_value, "0");
154 bframes = atoi(property_value);
155 property_value[0] = '\0';
156 property_get("vidc.debug.entropy", property_value, "1");
157 entropy = !!atoi(property_value);
158 property_value[0] = '\0'
    [all...]
  /external/v8/src/regexp/
regexp-parser.cc 1066 UProperty property, int32_t property_value) {
1068 u_getPropertyValueName(property, property_value, U_SHORT_PROPERTY_NAME);
1074 property, property_value,
1085 int32_t property_value local
    [all...]
  /hardware/qcom/display/msm8996/sdm/libs/core/fb/
hw_hdmi.cpp 565 char property_value[kMaxStringLength]; local
573 bool prop_read_success = Debug::GetProperty(name, property_value);
579 length = HWDevice::SysFsWrite(sys_fs_path, property_value,
580 static_cast<ssize_t>(strlen(property_value)));
582 DLOGW("Failed to write %s = %s", node, property_value);
  /hardware/qcom/display/msmcobalt/sdm/libs/core/fb/
hw_hdmi.cpp 540 char property_value[kMaxStringLength]; local
548 bool prop_read_success = Debug::GetProperty(name, property_value);
554 length = HWDevice::SysFsWrite(sys_fs_path, property_value,
555 static_cast<ssize_t>(strlen(property_value)));
557 DLOGW("Failed to write %s = %s", node, property_value);
  /hardware/qcom/display/msm8084/libexternal/
external.cpp 438 char property_value[PROPERTY_VALUE_MAX]; local
439 property_get("hw.hdmi.resolution", property_value, "-1");
440 int mode = atoi(property_value);
  /hardware/qcom/display/msm8226/libexternal/
external.cpp 438 char property_value[PROPERTY_VALUE_MAX]; local
439 property_get("hw.hdmi.resolution", property_value, "-1");
440 int mode = atoi(property_value);

Completed in 2683 milliseconds

1 2 3