/external/autotest/server/cros/bluetooth/ |
D | bluetooth_gatt_client_utils.py | 160 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/ |
D | json_util.cc | 32 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()
|
D | json_util.h | 37 const char* prop_name, 43 const char* prop_name, char** copied_value);
|
/external/grpc-grpc/src/core/lib/security/util/ |
D | json_util.cc | 29 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()
|
D | json_util.h | 35 const char* prop_name); 40 const char* prop_name, char** copied_value);
|
/external/python/oauth2client/oauth2client/ |
D | clientsecrets.py | 98 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/ |
D | stm32mp_clkfunc.c | 72 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/ |
D | stm32mp_clkfunc.h | 17 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/ |
D | fake_security_connector.cc | 216 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/ |
D | jse_define.h | 27 #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/ |
D | fdt_wrappers.h | 17 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/ |
D | fdt_wrappers.c | 22 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/ |
D | cldr-svnprops-check.py | 125 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/ |
D | libfdt.i | 400 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/ |
D | DrmDevice.h | 67 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,
|
D | DrmDevice.cpp | 529 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/ |
D | schema-generator.h | 65 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/ |
D | js_define.h | 139 #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/ |
D | system_app_test.py | 53 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/ |
D | ftbdf.c | 63 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/ |
D | builtin_producer.cc | 145 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/ |
D | shill_xmlrpc_server.py | 428 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/ |
D | params_setup.c | 51 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/ |
D | svbdf.h | 38 const char* prop_name,
|
/external/freetype/include/freetype/ |
D | ftbdf.h | 202 const char* prop_name,
|