Home
last modified time | relevance | path

Searched refs:code (Results 1 – 25 of 51) sorted by relevance

123

/bionic/libc/kernel/uapi/linux/
Dbpf_common.h21 #define BPF_CLASS(code) ((code) & 0x07) argument
30 #define BPF_SIZE(code) ((code) & 0x18) argument
34 #define BPF_MODE(code) ((code) & 0xe0) argument
41 #define BPF_OP(code) ((code) & 0xf0) argument
58 #define BPF_SRC(code) ((code) & 0x08) argument
Dfilter.h27 __u16 code; member
36 #define BPF_RVAL(code) ((code) & 0x18) argument
38 #define BPF_MISCOP(code) ((code) & 0xf8) argument
42 #define BPF_STMT(code,k) { (unsigned short) (code), 0, 0, k } argument
45 #define BPF_JUMP(code,k,jt,jf) { (unsigned short) (code), jt, jf, k } argument
Dv4l2-subdev.h44 __u32 code; member
51 __u32 code; member
67 __u32 code; member
Dfsmap.h48 #define FMR_OWNER(type,code) (((__u64) type << 32) | ((__u64) code & 0xFFFFFFFFULL)) argument
Digmp.h25 __u8 code; member
52 __u8 code; member
Dvirtio_input.h58 __le16 code; member
Dicmp.h61 __u8 code; member
Dif_pppox.h107 __u8 code; member
Duinput.h46 __u16 code; member
Diommu.h84 __u32 code; member
Dv4l2-mediabus.h27 __u32 code; member
/bionic/libc/upstream-netbsd/lib/libc/regex/
Dregerror.c133 int code; member
180 for (r = rerrs; r->code != 0; r++) in regerror()
181 if (r->code == target) in regerror()
185 if (r->code != 0) { in regerror()
215 for (r = rerrs; r->code != 0; r++) in regatoi()
218 if (r->code == 0) in regatoi()
221 (void)snprintf(localbuf, buflen, "%d", r->code); in regatoi()
Dcname.h77 char code; member
/bionic/docs/
Ddefines.md3 Using `#ifdef` or equivalents is common when writing portable code. Which to use
9 If your code is specific to Android's C library, bionic, use `__BIONIC__`. This
17 If your code is specific to Android devices, use `__ANDROID__`. This isn't
19 more appropriate. This is typically a good choice if you have code that's part
26 If your code can be built targeting a variety of different OS versions, use
31 One thing to note (if your code may also be built as part of the OS itself) is
38 If your code requires a Linux kernel, use `__linux__`. This is typically a good
46 If your code can be built either as part of an app _or_ as part of the OS
48 This is typically a good choice when your code uses non-NDK API if it's built as
53 If your code can be built with a variety of different NDK versions, and needs to
[all …]
D32-bit-abi.md27 r15. Before NDK r15, `_FILE_OFFSET_BITS=64` silently did nothing: all code
38 that's often needed. This means that code using `_FILE_OFFSET_BITS=64`
42 If your code stops compiling when you move to NDK r15 or later, removing every
48 flag that should never be set by user code but sometimes is (by zlib,
49 for example). If you think you have removed these but your code still
69 there is no support for real-time signals in 32-bit code. Android P (API
110 a hang in `pthread_mutex_lock` if the libc startup code doesn't detect
Dfdsan.md10 For example, given two threads running the following code:
45 …all file descriptors in the module can be useful, since it'll catch other code that closes your fi…
162 signal 35 (<debuggerd signal>), code -1 (SI_QUEUE), fault addr --------
203 signal 35 (<debuggerd signal>), code -1 (SI_QUEUE), fault addr --------
227 …_fd` and `ParcelFileDescriptor`, to improve the odds that double closes in other code get detected.
241 * * Redistributions of source code must retain the above copyright
364 …* Receiving a `ParcelFileDescriptor` via Intent, and then passing it into JNI code that ends up ca…
371 …le descriptor double close leading to SQLite database corruption](https://code.fb.com/ios/debuggin…
Dstatus.md7 for changes related to native code loading in various Android releases.
74 * Bug fixes to handling of UTF-8 U+fffe/U+ffff and code points above U+10ffff.
277 and in an attempt to flush out racy code, we changed how an invalid
295 To fix your code, taking the affected functions one by one:
316 the tid may have been reused, but your code is inherently unsafe without
323 bug we found that existing code relied on the old behavior. To preserve
342 all result in FORTIFY failures even for code not built with FORTIFY.
/bionic/
Dandroid-changes-for-ndk-developers.md3 This document details important changes related to native code
44 dynamic linker's caching code cached failures too, so it was necessary
53 simply link all of your code into one big library and sidestep the details of
98 above. (Use --hash-style=both if you want to build code that uses this
106 https://code.google.com/p/android/issues/detail?id=6670). API level 23
127 library so that old code gets the old version and new code gets the new
156 are not accessible regardless of the way code tries to load them:
176 your code will not work in a future release -- please fix it now!
201 *Resolution*: rewrite your native code to rely only on public API. As a
204 the relevant code must be copied to the project tree. SSL/Media/JNI
[all …]
/bionic/libc/
DNOTICE7 1. Redistributions of source code must retain the above copyright
33 * Redistributions of source code must retain the above copyright
234 1. Redistributions of source code must retain the above copyright
263 1. Redistributions of source code must retain the above copyright
342 * Redistributions of source code must retain the above copyright
386 * Redistributions of source code must retain the above copyright
415 * Redistributions of source code must retain the above copyright
443 * Redistributions of source code must retain the above copyright
487 * Redistributions of source code must retain the above copyright
516 1. Redistributions of source code must retain the above copyright
[all …]
/bionic/tools/
Dupdate_notice.sh6 git diff --exit-code HEAD libc/NOTICE
/bionic/libc/kernel/
DREADME.md15 They can be included from C++, or when compiling code in strict ANSI mode.
56 Download the Android mainline kernel source code:
64 version of the linux stable kernel headers the mainline source code is
/bionic/tests/
Dnetinet_ip_icmp_test.cpp24 ASSERT_EQ(0, hdr.code); in TEST()
/bionic/benchmarks/linker_relocation/
DREADME.md20 dump, then `regen/gen_bench.py` processes the JSON file into benchmark code.
/bionic/libc/kernel/uapi/misc/
Dxilinx_sdfec.h96 __u32 code; member
/bionic/libc/kernel/uapi/linux/netfilter_ipv4/
Dip_tables.h95 __u8 code[2]; member

123