Searched refs:clone (Results 1 - 13 of 13) sorted by relevance
/system/tpm/attestation/server/ |
H A D | attestationd-seccomp-amd64.policy | 77 clone: 1
|
/system/tpm/tpm_manager/server/ |
H A D | tpm_manager-seccomp-amd64.policy | 79 clone: 1
|
/system/tpm/trunks/ |
H A D | trunksd-seccomp-arm.policy | 64 clone: 1
|
H A D | trunksd-seccomp-arm64.policy | 64 clone: 1
|
H A D | trunksd-seccomp-x86.policy | 70 clone: 1
|
H A D | trunksd-seccomp-x86_64.policy | 69 clone: 1
|
/system/media/camera/docs/ |
H A D | metadata_validate.py | 50 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 D | metadata_template.mako | 72 <clone entry="${prop.name}" kind="${prop.target_kind}"> 86 </clone>
|
H A D | metadata_model.py | 25 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 D | property.c | 31 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 D | config_test.cpp | 85 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 D | PtracerThread.cpp | 101 child_pid_ = clone(proxy, stack_->top(), 105 ALOGE("failed to clone child: %s", strerror(errno));
|
/system/media/camera/src/ |
H A D | camera_metadata.c | 546 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