/bionic/libc/ |
D | SYSCALLS.TXT | 8 # arch_list ::= "all" | arches 29 int execve(const char*, char* const*, char* const*) all 43 ssize_t readahead(int, off64_t, size_t) all 46 pid_t getpgid(pid_t) all 47 pid_t getppid() all 48 pid_t getsid(pid_t) all 49 pid_t setsid() all 60 void* __brk:brk(void*) all 61 int kill(pid_t, int) all 62 int tgkill(pid_t tgid, pid_t tid, int sig) all [all …]
|
D | SECCOMP_BLOCKLIST_APP.TXT | 25 int setfsgid(gid_t) all 26 int setfsuid(uid_t) all 31 int adjtimex(struct timex*) all 32 int clock_adjtime(clockid_t, struct timex*) all 33 int clock_settime(clockid_t, const struct timespec*) all 34 int settimeofday(const struct timeval*, const struct timezone*) all 36 int acct(const char* filepath) all 37 int klogctl:syslog(int, char*, int) all 38 int chroot(const char*) all 41 int init_module(void*, unsigned long, const char*) all [all …]
|
D | SECCOMP_ALLOWLIST_COMMON.TXT | 10 pid_t gettid:gettid() all 11 …futex(int *uaddr, int futex_op, int val, const struct timespec *timeout, int *uaddr2, int val3) all 12 int clone:clone(int (*fn)(void *), void *child_stack, int flags, void *arg, ..) all 14 int rt_sigreturn:rt_sigreturn(unsigned long __unused) all 15 int rt_tgsigqueueinfo:int rt_tgsigqueueinfo(pid_t tgid, pid_t tid, int sig, siginfo_t *uinfo) all 16 int restart_syscall:int restart_syscall() all 22 …event_open(struct perf_event_attr *attr, pid_t pid, int cpu, int group_fd, unsigned long flags) all 25 int tkill:tkill(int tid, int sig) all 28 int seccomp:seccomp(unsigned int operation, unsigned int flags, void *args) all 40 int io_setup(unsigned nr, aio_context_t *ctxp) all [all …]
|
D | SECCOMP_BLOCKLIST_COMMON.TXT | 9 int swapon(const char*, int) all 10 int swapoff(const char*) all
|
D | SECCOMP_ALLOWLIST_SYSTEM.TXT | 6 int bpf(int cmd, union bpf_attr *attr, unsigned int size) all
|
/bionic/tests/ |
D | fenv_test.cpp | 146 fexcept_t all; // FE_DIVBYZERO | FE_OVERFLOW | FE_UNDERFLOW in TEST() local 148 ASSERT_EQ(0, fegetexceptflag(&all, FE_ALL_EXCEPT)); in TEST() 153 ASSERT_EQ(0, fesetexceptflag(&all, FE_ALL_EXCEPT)); in TEST() 163 ASSERT_EQ(0, fesetexceptflag(&all, FE_DIVBYZERO)); in TEST() 168 ASSERT_EQ(0, fesetexceptflag(&all, FE_OVERFLOW | FE_UNDERFLOW)); in TEST()
|
/bionic/ |
D | Android.mk | 3 include $(call all-makefiles-under,$(LOCAL_PATH))
|
D | android-changes-for-ndk-developers.md | 46 had to call `dlopen` or `System.loadLibrary` on all transitive 58 simply link all of your code into one big library and sidestep the details of 59 library and symbol lookup changes on all past (and future) Android versions. 72 group. The global group is shared by all libraries and contains the main 163 will all work exactly the same. 169 Compatibility Test Suite (CTS) that all Android devices must pass. They 322 *Resolution*: make sure all required libraries are referenced by SONAME 423 whole system by using the `debug.ld.all` system property instead of 424 app-specific one. For example, to enable logging of all dlopen(3) 425 (and thus dclose(3)) calls, and all failures, but not dlsym(3) calls: [all …]
|
/bionic/libc/arch-x86/bionic/ |
D | syscall.S | 36 # Load all the arguments from the calling frame. 37 # (Not all will be valid, depending on the syscall.)
|
/bionic/libc/malloc_debug/ |
D | README_api.md | 3 Malloc debug can be used to get information on all of the live allocations 12 *info* is set to a buffer allocated by the call that contains all of 17 *total\_memory* is set to the sum of all allocation sizes that are live at 40 for all the returned data. The value
|
D | README_marshmallow_and_earlier.md | 10 is not guaranteed to work at all. 45 When enabled, this value creates a special header to all allocations 72 When enabled, this value creates a special header to all allocations 99 When the program completes, all of the allocations that are still live 118 Enable malloc debug for all allocations for all processes:
|
D | README.md | 64 This option adds a special header to all allocations that contains the guard 84 This option adds a special header to all allocations that contains 94 Enables both a front guard and a rear guard on all allocations. 112 Before P, this option adds a special header to all allocations that contains 139 Before P, this option adds a special header to all allocations that contains 207 being placed on the list. When the program terminates, all of the allocations 214 Before P, this option adds a special header to all allocations that contains 246 Track all live allocations. When the program terminates, all of the live 252 Before P, this option adds a special header to all allocations that contains 283 file, all current records are deleted. Any allocations/frees occuring while [all …]
|
/bionic/docs/ |
D | status.md | 81 (strftime already supported them all.) 117 * all 6 <grp.h>/<pwd.h> (get|set|end)(gr|pw)ent functions 141 …* all remaining `_FILE_OFFSET_BITS=64` functions, completing `_FILE_OFFSET_BITS=64` support in bio… 142 * all 7 `pthread_barrier*` functions 143 * all 5 `pthread_spin*` functions 169 * all of <error.h>. 196 * all of <fts.h>. 197 * all of <locale.h>. 198 * all of <sys/epoll.h>. 199 * all of <sys/fsuid.h>. [all …]
|
D | native_allocator.md | 4 A small minor upgrade might not need to run all of the benchmarks, however, 33 This function, when called, should pause all threads that are making a 44 This function enumerates all of the allocations currently live in the 72 For all applications on Android, the call `mallopt(M_DECAY_TIME, 1)` is 95 To run all of the compliance tests: 107 To run all of the tests: 147 For all of these benchmark runs, it can be useful to add these two options: 200 in one loop, and then frees all of the allocations at the end of the loop. 294 These benchmarks measure all three axes of a native allocator, RSS, virtual 321 in all threads since it collapses all of the allocation operations to occur [all …]
|
D | fdtrack.md | 27 backtraces, `dlopen("libfdtrack.so", RTLD_GLOBAL)` is all that's needed. To dump 62 * Requires -fno-omit-frame-pointer to be used on all code being unwound 65 [all disagree](https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92172)
|
D | 32-bit-abi.md | 20 all you need are functions like `read` that don't take/return `off_t`, large 27 r15. Before NDK r15, `_FILE_OFFSET_BITS=64` silently did nothing: all code 30 all functions that take an `off_t` become unavailable. You've asked for their 92 but the kernel interfaces exposed on 32-bit Android all use the 32-bit
|
/bionic/libc/kernel/uapi/linux/netfilter/ |
D | nf_conntrack_tuple_common.h | 30 __be16 all; member
|
/bionic/libc/arch-x86_64/bionic/ |
D | syscall.S | 45 # (Not all will be valid, depending on the syscall.)
|
/bionic/libc/kernel/uapi/linux/ |
D | netfilter.h | 64 __u32 all[4]; member
|
/bionic/libc/tools/ |
D | Android.bp | 4 // all of the 'license_kinds' from "bionic_libc_license"
|
/bionic/libc/system_properties/ |
D | Android.bp | 4 // all of the 'license_kinds' from "bionic_libc_license"
|
/bionic/libc/kernel/ |
D | README.md | 3 Bionic comes with a processed set of all of the uapi Linux kernel headers that 48 Checks out the Android kernel and generates all uapi header files. 49 copies all the changed files into external/kernel-headers. 57 Automatically update all clean headers from the content of
|
/bionic/libc/async_safe/ |
D | Android.bp | 7 // all of the 'license_kinds' from "bionic_libc_license"
|
/bionic/libc/malloc_hooks/ |
D | Android.bp | 7 // all of the 'license_kinds' from "bionic_libc_license"
|
D | README.md | 4 Malloc hooks allows a program to intercept all allocation/free calls that 89 Enable the hooks for all processes: 118 at all.
|