Searched refs:clone (Results 1 - 13 of 13) sorted by relevance

/system/tpm/attestation/server/
H A Dattestationd-seccomp-amd64.policy77 clone: 1
/system/tpm/tpm_manager/server/
H A Dtpm_manager-seccomp-amd64.policy79 clone: 1
/system/tpm/trunks/
H A Dtrunksd-seccomp-arm.policy64 clone: 1
H A Dtrunksd-seccomp-arm64.policy64 clone: 1
H A Dtrunksd-seccomp-x86.policy70 clone: 1
H A Dtrunksd-seccomp-x86_64.policy69 clone: 1
/system/media/camera/docs/
H A Dmetadata_validate.py50 or a <clone ...> XML node.
64 elif entry.name == 'clone':
191 Validate that all <clone> elements point to an existing <entry> element.
201 for clone in soup.find_all("clone"):
202 clone_entry = clone['entry']
203 clone_kind = clone['kind']
205 parent_kind = find_kind(clone)
213 error_msg = ("Did not find corresponding clone entry '%s' " + \
218 clone_name = fully_qualified_name(clone)
[all...]
H A Dmetadata_template.mako72 <clone entry="${prop.name}" kind="${prop.target_kind}">
86 </clone>
H A Dmetadata_model.py25 Clone: A node corresponding to <clone> elements.
26 MergedEntry: A node corresponding to either <entry> or <clone> elements.
307 def insert_clone(self, clone):
309 Insert a clone into the metadata.
312 clone: A key-value dictionary describing a clone. Refer to
316 Subsequent calls to insert_clone with the same clone+kind name are safe
318 ahead of the clone entry.
320 # figure out corresponding entry later. allow clone insert, entry insert
322 c = Clone(entry, **clone)
[all...]
/system/bt/btcore/src/
H A Dproperty.c31 bt_property_t *clone = osi_calloc(sizeof(bt_property_t) * count); local
33 memcpy(&clone[0], &properties[0], sizeof(bt_property_t) * count);
35 clone[i].val = osi_calloc(clone[i].len);
36 memcpy(clone[i].val, properties[i].val, clone[i].len);
39 return clone;
/system/bt/osi/test/
H A Dconfig_test.cpp85 config_t *clone = config_new_clone(config); local
87 config_set_string(clone, CONFIG_DEFAULT_SECTION, "first_key", "not_value");
90 config_get_string(clone, CONFIG_DEFAULT_SECTION, "first_key", "one"));
93 config_free(clone);
/system/core/libmemunreachable/
H A DPtracerThread.cpp101 child_pid_ = clone(proxy, stack_->top(),
105 ALOGE("failed to clone child: %s", strerror(errno));
/system/media/camera/src/
H A Dcamera_metadata.c546 camera_metadata_t *clone = allocate_camera_metadata(
549 if (clone != NULL) {
550 res = append_camera_metadata(clone, src);
552 free_camera_metadata(clone);
553 clone = NULL;
556 assert(validate_camera_metadata_structure(clone, NULL) == OK);
557 return clone;

Completed in 237 milliseconds