/development/ndk/platforms/android-9/arch-x86/include/asm/xen/ |
D | hypercall.h | 27 #define _hypercall0(type, name) ({ long __res; asm volatile ( "call %[call]" : "=a" (__res… argument 29 #define _hypercall1(type, name, a1) ({ long __res, __ign1; asm volatile ( "call %[call]" :… argument 30 #define _hypercall2(type, name, a1, a2) ({ long __res, __ign1, __ign2; asm volatile ( "call … argument 31 #define _hypercall3(type, name, a1, a2, a3) ({ long __res, __ign1, __ign2, __ign3; asm volatil… argument 32 #define _hypercall4(type, name, a1, a2, a3, a4) ({ long __res, __ign1, __ign2, __ign3, __ign4; … argument 34 #define _hypercall5(type, name, a1, a2, a3, a4, a5) ({ long __res, __ign1, __ign2, __ign3, __ign… argument
|
/development/ndk/platforms/android-3/include/asm-generic/ |
D | ioctl.h | 34 #define _IOC(dir,type,nr,size) (((dir) << _IOC_DIRSHIFT) | ((type) << _IOC_TYPESHIFT) | ((nr)… argument 39 #define _IO(type,nr) _IOC(_IOC_NONE,(type),(nr),0) argument 40 #define _IOR(type,nr,size) _IOC(_IOC_READ,(type),(nr),(_IOC_TYPECHECK(size))) argument 41 #define _IOW(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),(_IOC_TYPECHECK(size))) argument 42 #define _IOWR(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),(_IOC_TYPECHECK(size))) argument 43 #define _IOR_BAD(type,nr,size) _IOC(_IOC_READ,(type),(nr),sizeof(size)) argument 44 #define _IOW_BAD(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),sizeof(size)) argument 45 #define _IOWR_BAD(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),sizeof(size)) argument
|
D | percpu.h | 18 #define DEFINE_PER_CPU(type, name) __typeof__(type) per_cpu__##name argument 24 #define DECLARE_PER_CPU(type, name) extern __typeof__(type) per_cpu__##name argument
|
/development/ndk/platforms/android-9/arch-mips/include/asm/ |
D | ioctl.h | 45 #define _IOC(dir, type, nr, size) (((dir) << _IOC_DIRSHIFT) | ((type) << _IOC_TYPESHIFT) | ((… argument 49 #define _IO(type, nr) _IOC(_IOC_NONE, (type), (nr), 0) argument 50 #define _IOR(type, nr, size) _IOC(_IOC_READ, (type), (nr), (_IOC_TYPECHECK(size))) argument 51 #define _IOW(type, nr, size) _IOC(_IOC_WRITE, (type), (nr), (_IOC_TYPECHECK(size))) argument 52 #define _IOWR(type, nr, size) _IOC(_IOC_READ|_IOC_WRITE, (type), (nr), (_IOC_TYPECHECK(size))) argument 54 #define _IOR_BAD(type, nr, size) _IOC(_IOC_READ, (type), (nr), sizeof(size)) argument 55 #define _IOW_BAD(type, nr, size) _IOC(_IOC_WRITE, (type), (nr), sizeof(size)) argument 56 #define _IOWR_BAD(type, nr, size) _IOC(_IOC_READ|_IOC_WRITE, (type), (nr), sizeof(size)) argument
|
D | io.h | 76 #define __BUILD_MEMORY_SINGLE(pfx, bwlq, type, irq) static inline void pfx##write##bwlq(type val… argument 77 #define __BUILD_IOPORT_SINGLE(pfx, bwlq, type, p, slow) static inline void pfx##out##bwlq##p(typ… argument 79 #define __BUILD_MEMORY_PFX(bus, bwlq, type) __BUILD_MEMORY_SINGLE(bus, bwlq, type, 1) argument 80 #define BUILDIO_MEM(bwlq, type) __BUILD_MEMORY_PFX(__raw_, bwlq, type) __BUILD_MEMORY_PFX(, bwl… argument 81 #define __BUILD_IOPORT_PFX(bus, bwlq, type) __BUILD_IOPORT_SINGLE(bus, bwlq, type, ,) __BUILD_I… argument 82 #define BUILDIO_IOPORT(bwlq, type) __BUILD_IOPORT_PFX(, bwlq, type) __BUILD_IOPORT_PFX(__mem_, … argument 84 #define __BUILDIO(bwlq, type) __BUILD_MEMORY_SINGLE(____raw_, bwlq, type, 0) argument 92 #define __BUILD_MEMORY_STRING(bwlq, type) static inline void writes##bwlq(volatile void __iomem … argument 94 #define __BUILD_IOPORT_STRING(bwlq, type) static inline void outs##bwlq(unsigned long port, cons… argument 95 #define BUILDSTRING(bwlq, type) __BUILD_MEMORY_STRING(bwlq, type) __BUILD_IOPORT_STRING(bwlq, t… argument
|
/development/ndk/platforms/android-3/include/linux/ |
D | android_alarm.h | 39 #define ANDROID_ALARM_CLEAR(type) _IO('a', 0 | ((type) << 4)) argument 41 #define ANDROID_ALARM_SET(type) _IOW('a', 2 | ((type) << 4), struct timespec) argument 42 #define ANDROID_ALARM_SET_AND_WAIT(type) _IOW('a', 3 | ((type) << 4), struct timespec) argument 43 #define ANDROID_ALARM_GET_TIME(type) _IOW('a', 4 | ((type) << 4), struct timespec) argument
|
D | percpu.h | 29 #define alloc_percpu(type) ((type *)(__alloc_percpu(sizeof(type)))) argument
|
D | moduleparam.h | 67 #define module_param_named(name, value, type, perm) param_check_##type(name, &(value)); module_… argument 69 #define module_param(name, type, perm) module_param_named(name, name, type, perm) argument 73 #define __param_check(name, p, type) static inline type *__check_##name(void) { return(p); } argument 95 #define module_param_array_named(name, array, type, nump, perm) static struct kparam_array __para… argument 97 #define module_param_array(name, type, nump, perm) module_param_array_named(name, name, type, num… argument
|
/development/ndk/platforms/android-9/arch-x86/include/asm/ |
D | io_32.h | 30 #define __BUILDIO(bwl,bw,type) static inline void out##bwl(unsigned type value, int port) { out#… argument 31 #define BUILDIO(bwl,bw,type) static inline void out##bwl##_local(unsigned type value, int port) { … argument
|
D | e820.h | 35 __u32 type; member
|
D | desc_defs.h | 27 unsigned base1 : 8, type : 4, s : 1, dpl : 2, p : 1; member 45 unsigned ist : 3, zero0 : 5, type : 5, dpl : 2, p : 1; member 64 unsigned base1 : 8, type : 5, dpl : 2, p : 1; member
|
/development/tools/apkcheck/src/com/android/apkcheck/ |
D | FieldInfo.java | 34 public FieldInfo(String name, String type) { in FieldInfo() 54 String type = TypeUtils.ambiguousToBinaryName(mType, apiList); in normalizeType() local
|
D | MethodInfo.java | 66 public void addParameter(String type) { in addParameter()
|
/development/ndk/platforms/android-3/arch-arm/include/asm/ |
D | domain.h | 24 #define domain_val(dom,type) ((type) << (2*(dom))) argument 29 #define modify_domain(dom,type) do { } while (0) argument
|
/development/ndk/platforms/android-3/include/sys/ |
D | queue.h | 84 #define LIST_HEAD(name, type) \ argument 92 #define LIST_ENTRY(type) \ argument 150 #define SLIST_HEAD(name, type) \ argument 158 #define SLIST_ENTRY(type) \ argument 184 #define SLIST_REMOVE(head, elm, type, field) do { \ argument 211 #define STAILQ_HEAD(name, type) \ argument 220 #define STAILQ_ENTRY(type) \ argument 256 #define STAILQ_REMOVE(head, elm, type, field) do { \ argument 285 #define SIMPLEQ_HEAD(name, type) \ argument 294 #define SIMPLEQ_ENTRY(type) \ argument [all …]
|
/development/ndk/platforms/android-3/include/linux/netfilter_ipv4/ |
D | ipt_sctp.h | 47 #define bytes(type) (sizeof(type) * 8) argument 49 #define SCTP_CHUNKMAP_SET(chunkmap, type) do { chunkmap[type / bytes(u_int32_t)] |= 1 << (typ… argument 51 #define SCTP_CHUNKMAP_CLEAR(chunkmap, type) do { chunkmap[type / bytes(u_int32_t)] &= ~(1 << … argument 53 #define SCTP_CHUNKMAP_IS_SET(chunkmap, type) ({ (chunkmap[type / bytes (u_int32_t)] & (1 << (t… argument
|
/development/ndk/platforms/android-3/include/linux/netfilter/ |
D | xt_sctp.h | 49 #define bytes(type) (sizeof(type) * 8) argument 51 #define SCTP_CHUNKMAP_SET(chunkmap, type) do { chunkmap[type / bytes(u_int32_t)] |= 1 << (typ… argument 53 #define SCTP_CHUNKMAP_CLEAR(chunkmap, type) do { chunkmap[type / bytes(u_int32_t)] &= ~(1 << … argument 55 #define SCTP_CHUNKMAP_IS_SET(chunkmap, type) ({ (chunkmap[type / bytes (u_int32_t)] & (1 << (t… argument
|
/development/ndk/platforms/android-3/include/ |
D | link.h | 37 #define ElfW(type) Elf32_##type argument
|
/development/apps/Development/src/com/android/development/ |
D | AccountsTester.java | 210 String type = getSelectedAuthenticator().type; in onClick() local 391 AccountManagerCallback<Bundle> newAccountsCallback(String type, String[] features) { in newAccountsCallback() 399 public GetAccountsCallback(String type, String[] features) { in GetAccountsCallback() 425 AccountManagerCallback<Bundle> newAuthTokensCallback(String type, String authTokenType, in newAuthTokensCallback() 435 public GetAuthTokenCallback(String type, String authTokenType, String[] features) { in GetAuthTokenCallback()
|
D | LogTextBox.java | 69 public void setText(CharSequence text, BufferType type) { in setText()
|
/development/samples/ApiDemos/src/com/example/android/apis/text/ |
D | LogTextBox.java | 61 public void setText(CharSequence text, BufferType type) { in setText()
|
/development/ndk/platforms/common/src/ |
D | crtbrand.c | 61 int32_t type; member
|
/development/ndk/sources/android/libportable/common/include/ |
D | ioctls_portable.h | 42 #define _IOC_PORTABLE(dir, type, nr, size) ( \ argument 57 #define _IO_PORTABLE(type, nr) _IOC_PORTABLE(_IOC_NONE_PORTABLE, (type), (nr), 0) argument 59 #define _IOR_PORTABLE(type, nr, size) \ argument 62 #define _IOW_PORTABLE(type, nr, size) \ argument 65 #define _IOWR_PORTABLE(type, nr, size) \ argument
|
/development/tools/mkstubs/src/com/android/mkstubs/stubber/ |
D | MethodStubber.java | 100 public void visitFrame(int type, int local, Object[] local2, int stack, Object[] stack2) { in visitFrame() 171 public void visitTryCatchBlock(Label start, Label end, Label handler, String type) { in visitTryCatchBlock() 176 public void visitTypeInsn(int opcode, String type) { in visitTypeInsn()
|
/development/tools/yuv420sp2rgb/ |
D | cmdline.c | 62 char **type, in get_options()
|