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

/system/core/libcutils/
H A Dnative_handle.c63 native_handle_t* clone = native_handle_create(handle->numFds, handle->numInts); local
67 clone->data[i] = dup(handle->data[i]);
68 if (clone->data[i] < 0) {
69 clone->numFds = i;
70 native_handle_close(clone);
71 native_handle_delete(clone);
76 memcpy(&clone->data[handle->numFds], &handle->data[handle->numFds],
79 return clone;
/system/tpm/attestation/server/
H A Dattestationd-seccomp-amd64.policy77 clone: 1
/system/tpm/tpm_manager/server/
H A Dtpm_managerd-seccomp-amd64.policy79 clone: 1
/system/tpm/trunks/
H A Dtrunksd-seccomp-amd64.policy69 clone: 1
H A Dtrunksd-seccomp-arm.policy64 clone: 1
H A Dtrunksd-seccomp-arm64.policy64 clone: 1
H A Dtrunksd-seccomp-mips.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.cc33 bt_property_t* clone = local
36 memcpy(&clone[0], &properties[0], sizeof(bt_property_t) * count);
38 clone[i].val = osi_calloc(clone[i].len);
39 memcpy(clone[i].val, properties[i].val, clone[i].len);
42 return clone;
/system/bt/osi/test/
H A Dconfig_test.cc81 config_t* clone = config_new_clone(config); local
83 config_set_string(clone, CONFIG_DEFAULT_SECTION, "first_key", "not_value");
87 config_get_string(clone, CONFIG_DEFAULT_SECTION, "first_key", "one"));
90 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.c624 camera_metadata_t *clone = allocate_camera_metadata(
627 if (clone != NULL) {
628 res = append_camera_metadata(clone, src);
630 free_camera_metadata(clone);
631 clone = NULL;
634 assert(validate_camera_metadata_structure(clone, NULL) == OK);
635 return clone;
/system/core/debuggerd/handler/
H A Ddebuggerd_handler.cpp271 int forkpid = clone(nullptr, nullptr, 0, nullptr);
424 clone(debuggerd_dispatch_pseudothread, pseudothread_stack,
/system/core/init/
H A Dservice.cpp651 pid = clone(nullptr, nullptr, namespace_flags_ | SIGCHLD, nullptr);

Completed in 378 milliseconds