Home
last modified time | relevance | path

Searched defs:type (Results 1 – 25 of 83) sorted by relevance

1234

/development/ndk/platforms/android-5/arch-x86/include/asm/xen/
Dhypercall.h22 #define _hypercall0(type, name) ({ long __res; asm volatile ( "call %[call]" : "=a" (__res… argument
24 #define _hypercall1(type, name, a1) ({ long __res, __ign1; asm volatile ( "call %[call]" :… argument
26 #define _hypercall2(type, name, a1, a2) ({ long __res, __ign1, __ign2; asm volatile ( "call … argument
28 #define _hypercall3(type, name, a1, a2, a3) ({ long __res, __ign1, __ign2, __ign3; asm volatil… argument
30 #define _hypercall4(type, name, a1, a2, a3, a4) ({ long __res, __ign1, __ign2, __ign3, __ign4; … argument
32 #define _hypercall5(type, name, a1, a2, a3, a4, a5) ({ long __res, __ign1, __ign2, __ign3, __ign… argument
/development/ndk/platforms/android-3/include/asm-generic/
Dioctl.h34 #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
Dpercpu.h18 #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-3/include/linux/
Dandroid_alarm.h39 #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
Dpercpu.h29 #define alloc_percpu(type) ((type *)(__alloc_percpu(sizeof(type)))) argument
Dmoduleparam.h67 #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-5/arch-x86/include/asm/
Dio_32.h25 #define __BUILDIO(bwl,bw,type) static inline void out##bwl(unsigned type value, int port) { out#… argument
26 #define BUILDIO(bwl,bw,type) static inline void out##bwl##_local(unsigned type value, int port) { … argument
De820.h27 __u32 type; member
Ddesc_defs.h22 unsigned base1 : 8, type : 4, s : 1, dpl : 2, p : 1; member
39 unsigned ist : 3, zero0 : 5, type : 5, dpl : 2, p : 1; member
57 unsigned base1 : 8, type : 5, dpl : 2, p : 1; member
/development/tools/apkcheck/src/com/android/apkcheck/
DFieldInfo.java34 public FieldInfo(String name, String type) { in FieldInfo()
54 String type = TypeUtils.ambiguousToBinaryName(mType, apiList); in normalizeType() local
DMethodInfo.java66 public void addParameter(String type) { in addParameter()
/development/samples/NFCDemo/src/com/example/android/nfc/record/
DSmartPoster.java85 private SmartPoster(UriRecord uri, TextRecord title, RecommendedAction action, String type) { in SmartPoster()
120 String type = parseType(recordsRaw); in parse() local
157 private static <T> T getFirstIfExists(Iterable<?> elements, Class<T> type) { in getFirstIfExists()
190 private static NdefRecord getByType(byte[] type, NdefRecord[] records) { in getByType()
216 NdefRecord type = getByType(TYPE_TYPE, records); in parseType() local
/development/ndk/platforms/android-3/arch-arm/include/asm/
Ddomain.h24 #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/
Dqueue.h84 #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/
Dipt_sctp.h47 #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/
Dxt_sctp.h49 #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/cmds/monkey/src/com/android/commands/monkey/
DMonkeyMotionEvent.java47 public MonkeyMotionEvent(int type, long downAt, int action, in MonkeyMotionEvent()
57 public MonkeyMotionEvent(int type, long downTime, long eventTime, int action, in MonkeyMotionEvent()
148 int type = this.getEventType(); in injectEvent() local
DMonkeyEvent.java43 public MonkeyEvent(int type) { in MonkeyEvent()
/development/apps/Development/src/com/android/development/
DAccountsTester.java178 String type = getSelectedAuthenticator().type; in onClick() local
313 AccountManagerCallback<Bundle> newAccountsCallback(String type, String[] features) { in newAccountsCallback()
321 public GetAccountsCallback(String type, String[] features) { in GetAccountsCallback()
347 …AccountManagerCallback<Bundle> newAuthTokensCallback(String type, String authTokenType, String[] f… in newAuthTokensCallback()
356 public GetAuthTokenCallback(String type, String authTokenType, String[] features) { in GetAuthTokenCallback()
DLogTextBox.java69 public void setText(CharSequence text, BufferType type) { in setText()
/development/samples/ApiDemos/src/com/example/android/apis/text/
DLogTextBox.java61 public void setText(CharSequence text, BufferType type) { in setText()
/development/tools/mkstubs/src/com/android/mkstubs/stubber/
DMethodStubber.java101 public void visitFrame(int type, int local, Object[] local2, int stack, Object[] stack2) { in visitFrame()
172 public void visitTryCatchBlock(Label start, Label end, Label handler, String type) { in visitTryCatchBlock()
177 public void visitTypeInsn(int opcode, String type) { in visitTypeInsn()
/development/tools/yuv420sp2rgb/
Dcmdline.c62 char **type, in get_options()
/development/ndk/platforms/android-3/arch-arm/include/asm/arch/
Dgpio-switch.h27 unsigned type:4; member
/development/tools/mkstubs/src/com/android/mkstubs/sourcer/
DMethodSourcer.java161 public void visitFrame(int type, int local, Object[] local2, int stack, Object[] stack2) { in visitFrame()
223 public void visitTryCatchBlock(Label start, Label end, Label handler, String type) { in visitTryCatchBlock()
227 public void visitTypeInsn(int opcode, String type) { in visitTypeInsn()

1234