/bionic/libc/upstream-openbsd/lib/libc/string/ |
D | strndup.c | 28 char *copy; in strndup() local 32 copy = malloc(len + 1); in strndup() 33 if (copy != NULL) { in strndup() 34 (void)memcpy(copy, str, len); in strndup() 35 copy[len] = '\0'; in strndup() 38 return copy; in strndup()
|
D | strdup.c | 42 char *copy; in strdup() local 45 if ((copy = malloc(siz)) == NULL) in strdup() 47 (void)memcpy(copy, str, siz); in strdup() 48 return(copy); in strdup()
|
/bionic/tools/relocation_packer/ |
D | Android.mk | 84 define copy-test-library 95 $(eval $(call copy-test-library,elf_file_unittest_relocs_arm32.so)) 96 $(eval $(call copy-test-library,elf_file_unittest_relocs_arm32_packed.so)) 97 $(eval $(call copy-test-library,elf_file_unittest_relocs_arm64.so)) 98 $(eval $(call copy-test-library,elf_file_unittest_relocs_arm64_packed.so)) 99 $(eval $(call copy-test-library,elf_file_unittest_relocs_ia32.so)) 100 $(eval $(call copy-test-library,elf_file_unittest_relocs_ia32_packed.so)) 101 $(eval $(call copy-test-library,elf_file_unittest_relocs_x64.so)) 102 $(eval $(call copy-test-library,elf_file_unittest_relocs_x64_packed.so)) 103 $(eval $(call copy-test-library,elf_file_unittest_relocs_mips32.so)) [all …]
|
/bionic/libc/upstream-freebsd/lib/libc/string/ |
D | wcsdup.c | 36 wchar_t *copy; in wcsdup() local 40 if ((copy = malloc(len * sizeof(wchar_t))) == NULL) in wcsdup() 42 return (wmemcpy(copy, s, len)); in wcsdup()
|
/bionic/libc/bionic/ |
D | scandir.cpp | 64 dirent* copy = CopyDirent(entry); in Add() local 65 if (copy == nullptr) { in Add() 68 names_[size_++] = copy; in Add() 88 dirent* copy = reinterpret_cast<dirent*>(malloc(size)); in CopyDirent() local 89 memcpy(copy, original, original->d_reclen); in CopyDirent() 90 return copy; in CopyDirent()
|
/bionic/libc/kernel/tools/ |
D | kernel.py | 135 macros = kernel_known_macros.copy() 156 return self.headers.copy() 160 return self.files.copy() 334 return self.items.copy()
|
D | clean_header.py | 132 macros = kernel_known_macros.copy()
|
/bionic/libdl/ |
D | NOTICE | 5 You may obtain a copy of the License at
|
D | libdl.map.txt | 6 # You may obtain a copy of the License at
|
D | Android.bp | 10 // we use this property to make sure libc.so has its own copy of the code from
|
/bionic/libc/kernel/uapi/linux/ |
D | som.h | 85 unsigned int copy : 1; member
|
D | userfaultfd.h | 96 __s64 copy; member
|
D | cdrom.h | 715 __u8 copy : 1; member 730 __u8 copy : 1; member
|
/bionic/libc/arch-mips64/bionic/ |
D | __bionic_clone.S | 58 PTR_L t0,FRAME_GP(sp) # copy gp to child stack
|
/bionic/linker/ |
D | NOTICE | 5 You may obtain a copy of the License at 77 You may obtain a copy of the License at 121 You may obtain a copy of the License at 137 You may obtain a copy of the License at
|
/bionic/libstdc++/ |
D | NOTICE | 60 Permission to use, copy, modify, distribute and sell this software 72 Permission to use, copy, modify, distribute and sell this software
|
/bionic/libc/upstream-netbsd/lib/libc/regex/ |
D | regcomp.c | 1143 sopno copy; in repeat() local 1183 copy = dupl(p, start+1, finish+1); in repeat() 1184 assert(copy == finish+4); in repeat() 1185 repeat(p, copy, 1, to-1, reclimit); in repeat() 1192 copy = dupl(p, start, finish); in repeat() 1193 repeat(p, copy, from-1, to-1, reclimit); in repeat() 1196 copy = dupl(p, start, finish); in repeat() 1197 repeat(p, copy, from-1, to, reclimit); in repeat()
|
/bionic/libc/kernel/ |
D | README.TXT | 60 Next, run this command to copy the parsed files to bionic/libc/kernel/uapi:
|
/bionic/libm/ |
D | NOTICE | 5 Permission to use, copy, modify, and distribute this 15 Permission to use, copy, modify, and distribute this 28 Permission to use, copy, modify, and distribute this 38 Permission to use, copy, modify, and distribute this 52 Permission to use, copy, modify, and distribute this 63 Permission to use, copy, modify, and distribute this 77 Permission to use, copy, modify, and distribute this 91 Permission to use, copy, modify, and distribute this 100 Permission to use, copy, modify, and distribute this 110 Permission to use, copy, modify, and distribute this [all …]
|
/bionic/tests/ |
D | ifaddrs_test.cpp | 115 if_name.copy(ifr.ifr_name, IFNAMSIZ - 1); in CheckAddressIsInSet()
|
/bionic/libc/ |
D | NOTICE | 119 Permission to use, copy, modify, and distribute this 189 Permission to use, copy, modify, and/or distribute this software for any 206 Permission to use, copy, modify, and/or distribute this software for any 224 You may obtain a copy of the License at 268 You may obtain a copy of the License at 369 You may obtain a copy of the License at 472 You may obtain a copy of the License at 516 You may obtain a copy of the License at 618 You may obtain a copy of the License at 662 You may obtain a copy of the License at [all …]
|