Searched refs:copy (Results 1 - 16 of 16) sorted by path

/bionic/libc/arch-mips64/bionic/
H A D__bionic_clone.S58 PTR_L t0,FRAME_GP(sp) # copy gp to child stack
/bionic/libc/bionic/
H A Dscandir.cpp6 * You may obtain a copy of the License at
64 dirent* copy = CopyDirent(entry); local
65 if (copy == nullptr) {
68 names_[size_++] = copy;
88 dirent* copy = reinterpret_cast<dirent*>(malloc(size)); local
89 memcpy(copy, original, original->d_reclen);
90 return copy;
/bionic/libc/kernel/tools/
H A Dclean_header.py110 macros = kernel_known_macros.copy()
H A Dkernel.py135 macros = kernel_known_macros.copy()
156 return self.headers.copy()
160 return self.files.copy()
262 # now copy the arch-specific headers into the global list
334 return self.items.copy()
/bionic/libc/kernel/uapi/linux/
H A Dcdrom.h715 __u8 copy : 1; member in struct:__anon300
730 __u8 copy : 1; member in struct:__anon300
H A Duserfaultfd.h96 __s64 copy; member in struct:uffdio_copy
/bionic/libc/upstream-freebsd/lib/libc/string/
H A Dwcsdup.c36 wchar_t *copy; local
40 if ((copy = malloc(len * sizeof(wchar_t))) == NULL)
42 return (wmemcpy(copy, s, len));
/bionic/libc/upstream-netbsd/lib/libc/regex/
H A Dregcomp.c1143 sopno copy; local
1183 copy = dupl(p, start+1, finish+1);
1184 assert(copy == finish+4);
1185 repeat(p, copy, 1, to-1, reclimit);
1192 copy = dupl(p, start, finish);
1193 repeat(p, copy, from-1, to-1, reclimit);
1196 copy = dupl(p, start, finish);
1197 repeat(p, copy, from-1, to, reclimit);
/bionic/libc/upstream-openbsd/lib/libc/string/
H A Dstrdup.c42 char *copy; local
45 if ((copy = malloc(siz)) == NULL)
47 (void)memcpy(copy, str, siz);
48 return(copy);
H A Dstrndup.c6 * Permission to use, copy, modify, and distribute this software for any
28 char *copy; local
32 copy = malloc(len + 1);
33 if (copy != NULL) {
34 (void)memcpy(copy, str, len);
35 copy[len] = '\0';
38 return copy;
/bionic/libc/versioner-dependencies/common/kernel_uapi/linux/
H A Dcdrom.h715 __u8 copy : 1; member in struct:__anon1373
730 __u8 copy : 1; member in struct:__anon1373
H A Duserfaultfd.h96 __s64 copy; member in struct:uffdio_copy
/bionic/linker/
H A Dlinker.cpp2192 std::copy(parent_namespace->get_ld_library_paths().begin(),
2196 std::copy(parent_namespace->get_default_library_paths().begin(),
2200 std::copy(parent_namespace->get_permitted_paths().begin(),
2206 // and copy parent namespace links
2211 // If not shared - copy only the shared group
/bionic/tests/
H A Ddlfcn_symlink_support.cpp6 * You may obtain a copy of the License at
66 std::copy(source_file_path.begin(), source_file_path.end(), std::back_inserter(buf));
H A Difaddrs_test.cpp6 * You may obtain a copy of the License at
117 if_name.copy(ifr.ifr_name, IFNAMSIZ - 1);
/bionic/tools/relocation_packer/
H A DAndroid.mk6 # You may obtain a copy of the License at
22 define copy-test-library
33 $(eval $(call copy-test-library,elf_file_unittest_relocs_arm32.so))
34 $(eval $(call copy-test-library,elf_file_unittest_relocs_arm32_packed.so))
35 $(eval $(call copy-test-library,elf_file_unittest_relocs_arm64.so))
36 $(eval $(call copy-test-library,elf_file_unittest_relocs_arm64_packed.so))
37 $(eval $(call copy-test-library,elf_file_unittest_relocs_ia32.so))
38 $(eval $(call copy-test-library,elf_file_unittest_relocs_ia32_packed.so))
39 $(eval $(call copy-test-library,elf_file_unittest_relocs_x64.so))
40 $(eval $(call copy
[all...]

Completed in 270 milliseconds