/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/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/upstream-freebsd/lib/libc/string/ |
D | wcsdup.c | 38 wchar_t *copy; in wcsdup() local 42 if ((copy = malloc(len * sizeof(wchar_t))) == NULL) in wcsdup() 44 return (wmemcpy(copy, s, len)); in wcsdup()
|
/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 | 108 macros = kernel_known_macros.copy()
|
/bionic/libc/upstream-freebsd/lib/libc/gen/ |
D | glob.c | 855 char *copy; in globextend() local 879 copy = strdup(origpat); in globextend() 884 if ((copy = malloc(len)) != NULL) { in globextend() 885 if (g_Ctoc(path, copy, len)) { in globextend() 886 free(copy); in globextend() 892 if (copy != NULL) { in globextend() 893 limit->l_string_cnt += strlen(copy) + 1; in globextend() 896 free(copy); in globextend() 900 pathv[pglob->gl_offs + pglob->gl_pathc++] = copy; in globextend() 903 return (copy == NULL ? GLOB_NOSPACE : 0); in globextend()
|
/bionic/tests/ |
D | dlfcn_symlink_support.cpp | 66 std::copy(source_file_path.begin(), source_file_path.end(), std::back_inserter(buf)); in create_dlfcn_test_symlink()
|
D | ifaddrs_test.cpp | 117 if_name.copy(ifr.ifr_name, IFNAMSIZ - 1); in CheckAddressIsInSet()
|
/bionic/libdl/ |
D | libdl_android.map.txt | 6 # 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 | 49 // we use this property to make sure libc.so has its own copy of the code from 141 // we use this property to make sure libc.so has its own copy of the code from
|
D | NOTICE | 96 Derivative Works a copy of this License; and 109 include a readable copy of the attribution notices contained 194 You may obtain a copy of the License at
|
/bionic/tests/headers/posix/ |
D | Android.bp | 6 // You may obtain a copy of the License at
|
/bionic/libc/kernel/android/ |
D | README.md | 11 maintainers manually copy-and-pasted these definitions into their own
|
/bionic/libc/upstream-netbsd/lib/libc/regex/ |
D | regcomp.c | 1147 sopno copy; in repeat() local 1187 copy = dupl(p, start+1, finish+1); in repeat() 1188 assert(copy == finish+4); in repeat() 1189 repeat(p, copy, 1, to-1, reclimit); in repeat() 1196 copy = dupl(p, start, finish); in repeat() 1197 repeat(p, copy, from-1, to-1, reclimit); in repeat() 1200 copy = dupl(p, start, finish); in repeat() 1201 repeat(p, copy, from-1, to, reclimit); in repeat()
|
/bionic/libc/kernel/uapi/linux/ |
D | userfaultfd.h | 113 __s64 copy; member
|
D | cdrom.h | 576 __u8 copy : 1; member 588 __u8 copy : 1; member
|
/bionic/benchmarks/ |
D | Android.bp | 6 // You may obtain a copy of the License at
|
/bionic/benchmarks/linker_relocation/ |
D | Android.bp | 33 // TODO: This benchmark doesn't work with TradeFed/atest because it doesn't copy its test libraries
|
/bionic/libc/ |
D | NOTICE | 60 Permission to use, copy, modify, and distribute this 70 Permission to use, copy, modify, and distribute this 83 Permission to use, copy, modify, and distribute this 96 Permission to use, copy, modify, and distribute this 110 Permission to use, copy, modify, and distribute this 120 Permission to use, copy, modify, and distribute this 133 Permission to use, copy, modify, and distribute this 147 Permission to use, copy, modify, and distribute this 158 Permission to use, copy, modify, and distribute this 172 Permission to use, copy, modify, and distribute this [all …]
|
/bionic/libc/kernel/ |
D | README.md | 87 Next, run this command to copy the parsed files to bionic/libc/kernel/uapi:
|
/bionic/docs/ |
D | fdsan.md | 276 unique_fd(const unique_fd& copy) = delete; 285 unique_fd& operator=(const unique_fd& copy) = delete;
|
/bionic/linker/ |
D | Android.bp | 372 // we use this property to make sure libc.so has its own copy of the code from
|
D | linker.cpp | 2434 std::copy(parent_namespace->get_ld_library_paths().begin(), in create_namespace() 2438 std::copy(parent_namespace->get_default_library_paths().begin(), in create_namespace() 2442 std::copy(parent_namespace->get_permitted_paths().begin(), in create_namespace()
|