Home
last modified time | relevance | path

Searched refs:prop_name (Results 1 – 25 of 42) sorted by relevance

12

/external/autotest/server/cros/bluetooth/
Dbluetooth_gatt_client_utils.py160 for prop_name in self.PROPERTIES:
161 self.properties[prop_name] = self.read_property(prop_name)
208 for prop_name in GATT_Service.PROPERTIES:
209 if serv_a.properties[prop_name] != serv_b.properties[prop_name]:
211 (serv_a.uuid, prop_name,
212 serv_a.properties[prop_name],
213 serv_b.properties[prop_name]))
266 for prop_name in self.PROPERTIES:
267 self.properties[prop_name] = self.read_property(prop_name)
326 for prop_name in GATT_Characteristic.PROPERTIES:
[all …]
/external/rust/crates/grpcio-sys/grpc/src/core/lib/security/util/
Djson_util.cc32 const char* prop_name, in grpc_json_get_string_property() argument
41 auto it = json.object_value().find(prop_name); in grpc_json_get_string_property()
45 absl::StrCat("Property ", prop_name, " not found in JSON object.") in grpc_json_get_string_property()
53 absl::StrCat("Property ", prop_name, in grpc_json_get_string_property()
63 const char* prop_name, in grpc_copy_json_string_property() argument
67 grpc_json_get_string_property(json, prop_name, &error); in grpc_copy_json_string_property()
Djson_util.h37 const char* prop_name,
43 const char* prop_name, char** copied_value);
/external/grpc-grpc/src/core/lib/security/util/
Djson_util.cc29 const char* prop_name) { in grpc_json_get_string_property() argument
36 if (strcmp(child->key, prop_name) == 0) break; in grpc_json_get_string_property()
39 gpr_log(GPR_ERROR, "Invalid or missing %s property.", prop_name); in grpc_json_get_string_property()
46 const char* prop_name, in grpc_copy_json_string_property() argument
48 const char* prop_value = grpc_json_get_string_property(json, prop_name); in grpc_copy_json_string_property()
Djson_util.h35 const char* prop_name);
40 const char* prop_name, char** copied_value);
/external/python/oauth2client/oauth2client/
Dclientsecrets.py98 for prop_name in VALID_CLIENT[client_type]['required']:
99 if prop_name not in client_info:
102 prop_name, client_type))
103 for prop_name in VALID_CLIENT[client_type]['string']:
104 if client_info[prop_name].startswith('[['):
106 'Property "{0}" is not configured.'.format(prop_name))
/external/arm-trusted-firmware/drivers/st/clk/
Dstm32mp_clkfunc.c72 bool fdt_osc_read_bool(enum stm32mp_osc_id osc_id, const char *prop_name) in fdt_osc_read_bool() argument
104 if (fdt_getprop(fdt, subnode, prop_name, NULL) != NULL) { in fdt_osc_read_bool()
120 const char *prop_name, uint32_t dflt_value) in fdt_osc_read_uint32_default() argument
152 return fdt_read_uint32_default(fdt, subnode, prop_name, in fdt_osc_read_uint32_default()
176 int fdt_rcc_read_uint32_array(const char *prop_name, uint32_t count, in fdt_rcc_read_uint32_array() argument
191 return fdt_read_uint32_array(fdt, node, prop_name, count, array); in fdt_rcc_read_uint32_array()
227 const fdt32_t *fdt_rcc_read_prop(const char *prop_name, int *lenp) in fdt_rcc_read_prop() argument
242 cuint = fdt_getprop(fdt, node, prop_name, &len); in fdt_rcc_read_prop()
/external/arm-trusted-firmware/include/drivers/st/
Dstm32mp_clkfunc.h17 bool fdt_osc_read_bool(enum stm32mp_osc_id osc_id, const char *prop_name);
19 const char *prop_name,
23 int fdt_rcc_read_uint32_array(const char *prop_name, uint32_t count,
26 const fdt32_t *fdt_rcc_read_prop(const char *prop_name, int *lenp);
/external/rust/crates/grpcio-sys/grpc/src/core/lib/security/security_connector/fake/
Dfake_security_connector.cc216 const char* prop_name; in fake_check_peer() local
224 prop_name = peer.properties[0].name; in fake_check_peer()
225 if (prop_name == nullptr || in fake_check_peer()
226 strcmp(prop_name, TSI_CERTIFICATE_TYPE_PEER_PROPERTY) != 0) { in fake_check_peer()
229 prop_name == nullptr ? "<EMPTY>" : prop_name) in fake_check_peer()
239 prop_name = peer.properties[1].name; in fake_check_peer()
240 if (prop_name == nullptr || in fake_check_peer()
241 strcmp(prop_name, TSI_SECURITY_LEVEL_PEER_PROPERTY) != 0) { in fake_check_peer()
244 prop_name == nullptr ? "<EMPTY>" : prop_name) in fake_check_peer()
/external/pdfium/fxjs/xfa/
Djse_define.h27 #define JSE_PROP(prop_name) \ argument
28 static void prop_name##_static(CJX_Object* node, CFXJSE_Value* value, \
31 static_cast<Type__*>(node)->prop_name(value, setting, attribute); \
33 void prop_name(CFXJSE_Value* pValue, bool bSetting, XFA_Attribute eAttribute)
/external/arm-trusted-firmware/include/common/
Dfdt_wrappers.h17 int fdt_read_uint32(const void *dtb, int node, const char *prop_name,
20 const char *prop_name, uint32_t dflt_value);
21 int fdt_read_uint64(const void *dtb, int node, const char *prop_name,
23 int fdt_read_uint32_array(const void *dtb, int node, const char *prop_name,
/external/arm-trusted-firmware/common/
Dfdt_wrappers.c22 int fdt_read_uint32_array(const void *dtb, int node, const char *prop_name, in fdt_read_uint32_array() argument
29 assert(prop_name != NULL); in fdt_read_uint32_array()
34 prop = fdt_getprop(dtb, node, prop_name, &value_len); in fdt_read_uint32_array()
36 WARN("Couldn't find property %s in dtb\n", prop_name); in fdt_read_uint32_array()
53 int fdt_read_uint32(const void *dtb, int node, const char *prop_name, in fdt_read_uint32() argument
56 return fdt_read_uint32_array(dtb, node, prop_name, 1, value); in fdt_read_uint32()
60 const char *prop_name, uint32_t dflt_value) in fdt_read_uint32_default() argument
63 int err = fdt_read_uint32(dtb, node, prop_name, &ret); in fdt_read_uint32_default()
72 int fdt_read_uint64(const void *dtb, int node, const char *prop_name, in fdt_read_uint64() argument
78 ret = fdt_read_uint32_array(dtb, node, prop_name, 2, array); in fdt_read_uint64()
/external/cldr/tools/scripts/
Dcldr-svnprops-check.py125 prop_name, prop_val = prop.split("=", 1)
128 prop_name, prop_val = prop, ""
129 prop_name = prop_name.strip()
134 proplist.append((prop_name, prop_val))
/external/dtc/pylibfdt/
Dlibfdt.i400 def getprop(self, nodeoffset, prop_name, quiet=()):
416 pdata = check_err_null(fdt_getprop(self._fdt, nodeoffset, prop_name),
420 return Property(prop_name, bytearray(pdata[0]))
567 def setprop(self, nodeoffset, prop_name, val, quiet=()):
582 return check_err(fdt_setprop(self._fdt, nodeoffset, prop_name, val,
585 def setprop_u32(self, nodeoffset, prop_name, val, quiet=()):
600 return check_err(fdt_setprop_u32(self._fdt, nodeoffset, prop_name, val),
603 def setprop_u64(self, nodeoffset, prop_name, val, quiet=()):
618 return check_err(fdt_setprop_u64(self._fdt, nodeoffset, prop_name, val),
621 def setprop_str(self, nodeoffset, prop_name, val, quiet=()):
[all …]
/external/drm_hwcomposer/drm/
DDrmDevice.h67 int GetPlaneProperty(const DrmPlane &plane, const char *prop_name,
69 int GetCrtcProperty(const DrmCrtc &crtc, const char *prop_name,
71 int GetConnectorProperty(const DrmConnector &connector, const char *prop_name,
88 int GetProperty(uint32_t obj_id, uint32_t obj_type, const char *prop_name,
DDrmDevice.cpp529 const char *prop_name, DrmProperty *property) { in GetProperty() argument
541 if (!strcmp(p->name, prop_name)) { in GetProperty()
552 int DrmDevice::GetPlaneProperty(const DrmPlane &plane, const char *prop_name, in GetPlaneProperty() argument
554 return GetProperty(plane.id(), DRM_MODE_OBJECT_PLANE, prop_name, property); in GetPlaneProperty()
557 int DrmDevice::GetCrtcProperty(const DrmCrtc &crtc, const char *prop_name, in GetCrtcProperty() argument
559 return GetProperty(crtc.id(), DRM_MODE_OBJECT_CRTC, prop_name, property); in GetCrtcProperty()
563 const char *prop_name, in GetConnectorProperty() argument
565 return GetProperty(connector.id(), DRM_MODE_OBJECT_CONNECTOR, prop_name, in GetConnectorProperty()
/external/icing/icing/testing/
Dschema-generator.h65 std::string prop_name = "Prop" + std::to_string(num_properties); in SetType() local
66 (*type_config->add_properties()) = (*prop_generator_)(prop_name); in SetType()
96 std::string prop_name = "Prop" + std::to_string(num_properties); in SetType() local
97 (*type_config->add_properties()) = (*prop_generator_)(prop_name); in SetType()
/external/pdfium/fxjs/
Djs_define.h139 #define JS_STATIC_PROP(err_name, prop_name, class_name) \ argument
140 static void get_##prop_name##_static( \
143 JSPropGetter<class_name, &class_name::get_##prop_name>( \
146 static void set_##prop_name##_static( \
149 JSPropSetter<class_name, &class_name::set_##prop_name>( \
/external/chromium-trace/catapult/devil/devil/android/tools/
Dsystem_app_test.py53 def dict_setprop(prop_name, value): argument
54 system_props[prop_name] = value
56 def dict_getprop(prop_name): argument
57 return system_props.get(prop_name, '')
/external/freetype/src/base/
Dftbdf.c63 const char* prop_name, in FT_Get_BDF_Property() argument
82 error = service->get_property( face, prop_name, aproperty ); in FT_Get_BDF_Property()
/external/perfetto/src/traced/service/
Dbuiltin_producer.cc145 const char* prop_name) { in MaybeInitiateLazyStop() argument
155 [weak_this, cur_generation, lazy_state, prop_name] { in MaybeInitiateLazyStop()
160 weak_this->SetAndroidProperty(prop_name, ""); in MaybeInitiateLazyStop()
/external/autotest/client/cros/networking/
Dshill_xmlrpc_server.py428 def get_dbus_property_on_device(self, wifi_interface, prop_name): argument
442 if prop_name not in object_properties:
446 object_properties[prop_name])
450 def set_dbus_property_on_device(self, wifi_interface, prop_name, value): argument
465 prop_name,
/external/arm-trusted-firmware/plat/rockchip/common/
Dparams_setup.c51 const char *prop_name = "stdout-path"; in plat_rockchip_dt_process_fdt_uart() local
66 stdout_path = fdt_getprop(fdt, node_offset, prop_name, in plat_rockchip_dt_process_fdt_uart()
/external/freetype/include/freetype/internal/services/
Dsvbdf.h38 const char* prop_name,
/external/freetype/include/freetype/
Dftbdf.h202 const char* prop_name,

12