/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-5/arch-x86/include/asm/ |
D | io_32.h | 25 …IO(bwl,bw,type) static inline void out##bwl(unsigned type value, int port) { out##bwl##_local(v… argument 26 …type) static inline void out##bwl##_local(unsigned type value, int port) { __asm__ __volatile__… argument
|
D | desc_defs.h | 22 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/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 | moduleparam.h | 32 #define __MODULE_PARM_TYPE(name, _type) __MODULE_INFO(parmtype, name##type, #name ":" _type) 67 …type, perm) param_check_##type(name, &(value)); module_param_call(name, param_set_##type, para… 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 …type, nump, perm) static struct kparam_array __param_arr_##name = { ARRAY_SIZE(array), nump, p… argument 97 #define module_param_array(name, type, nump, perm) module_param_array_named(name, name, type, num… argument
|
D | percpu.h | 29 #define alloc_percpu(type) ((type *)(__alloc_percpu(sizeof(type)))) argument
|
D | cdrom.h | 374 __u8 type; member 380 __u8 type; member 388 __u8 type; member 395 __u8 type; member 402 __u8 type; member 410 __u8 type; member 438 __u8 type; member 443 __u8 type; member 450 __u8 type; member 457 __u8 type; member [all …]
|
/development/ndk/platforms/android-5/arch-x86/include/asm/xen/ |
D | hypercall.h | 22 …type, name) ({ long __res; asm volatile ( "call %[call]" : "=a" (__res) : [call] "m" (h… argument 24 …type, name, a1) ({ long __res, __ign1; asm volatile ( "call %[call]" : "=a" (__res), "=b"… argument 26 …type, name, a1, a2) ({ long __res, __ign1, __ign2; asm volatile ( "call %[call]" : "=a" (… argument 28 …type, name, a1, a2, a3) ({ long __res, __ign1, __ign2, __ign3; asm volatile ( "call %[call]… argument 30 …type, name, a1, a2, a3, a4) ({ long __res, __ign1, __ign2, __ign3, __ign4; asm volatile ( "… argument 32 …type, name, a1, a2, a3, a4, a5) ({ long __res, __ign1, __ign2, __ign3, __ign4, __ign5; asm vo… argument
|
/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/netinet/ |
D | ip_icmp.h | 205 #define ICMP_INFOTYPE(type) \ argument 206 ((type) == ICMP_ECHOREPLY || (type) == ICMP_ECHO || \ 207 (type) == ICMP_ROUTERADVERT || (type) == ICMP_ROUTERSOLICIT || \ 208 (type) == ICMP_TSTAMP || (type) == ICMP_TSTAMPREPLY || \ 209 (type) == ICMP_IREQ || (type) == ICMP_IREQREPLY || \ 210 (type) == ICMP_MASKREQ || (type) == ICMP_MASKREPLY)
|
/development/tools/apkcheck/src/com/android/apkcheck/ |
D | FieldInfo.java | 34 public FieldInfo(String name, String type) { in FieldInfo() argument 36 mType = type; in FieldInfo() 54 String type = TypeUtils.ambiguousToBinaryName(mType, apiList); in normalizeType() local 55 if (!type.equals(mType)) { in normalizeType() 57 mType = type; in normalizeType()
|
D | TypeUtils.java | 55 public static String typeToDescriptor(String type) { in typeToDescriptor() argument 56 String quick = sQuickConvert.get(type); in typeToDescriptor() 63 while ((posn = type.indexOf('[', posn+1)) != -1) { in typeToDescriptor() 71 type = type.substring(0, firstPosn); in typeToDescriptor() 78 quick = sQuickConvert.get(type); in typeToDescriptor() 83 builder.append(type.replace('.', '/')); in typeToDescriptor()
|
/development/ndk/platforms/android-3/include/sys/ |
D | queue.h | 84 #define LIST_HEAD(name, type) \ argument 86 struct type *lh_first; /* first element */ \ 92 #define LIST_ENTRY(type) \ argument 94 struct type *le_next; /* next element */ \ 95 struct type **le_prev; /* address of previous next element */ \ 150 #define SLIST_HEAD(name, type) \ argument 152 struct type *slh_first; /* first element */ \ 158 #define SLIST_ENTRY(type) \ argument 160 struct type *sle_next; /* next element */ \ 184 #define SLIST_REMOVE(head, elm, type, field) do { \ argument [all …]
|
/development/ndk/platforms/android-3/arch-arm/include/asm/arch/ |
D | board.h | 117 int type:4; member 160 #define omap_get_config(tag, type) ((const type *) __omap_get_config((tag), sizeof(type), 0)) argument 161 #define omap_get_nr_config(tag, type, nr) ((const type *) __omap_get_config((tag), sizeof(type), … argument
|
/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/samples/NFCDemo/src/com/example/android/nfc/record/ |
D | SmartPoster.java | 85 private SmartPoster(UriRecord uri, TextRecord title, RecommendedAction action, String type) { in SmartPoster() argument 89 mType = type; in SmartPoster() 120 String type = parseType(recordsRaw); in parse() local 121 return new SmartPoster(uri, title, action, type); in parse() 157 private static <T> T getFirstIfExists(Iterable<?> elements, Class<T> type) { in getFirstIfExists() argument 158 Iterable<T> filtered = Iterables.filter(elements, type); in getFirstIfExists() 190 private static NdefRecord getByType(byte[] type, NdefRecord[] records) { in getByType() argument 192 if (Arrays.equals(type, record.getType())) { in getByType() 216 NdefRecord type = getByType(TYPE_TYPE, records); in parseType() local 217 if (type == null) { in parseType() [all …]
|
/development/cmds/monkey/src/com/android/commands/monkey/ |
D | MonkeyMotionEvent.java | 47 public MonkeyMotionEvent(int type, long downAt, int action, in MonkeyMotionEvent() argument 49 super(type); in MonkeyMotionEvent() 57 public MonkeyMotionEvent(int type, long downTime, long eventTime, int action, in MonkeyMotionEvent() argument 60 super(type); in MonkeyMotionEvent() 148 int type = this.getEventType(); in injectEvent() local 151 if ((type == MonkeyEvent.EVENT_TYPE_POINTER && in injectEvent() 153 || (type == MonkeyEvent.EVENT_TYPE_TRACKBALL && in injectEvent()
|
D | MonkeyEvent.java | 43 public MonkeyEvent(int type) { in MonkeyEvent() argument 44 eventType = type; in MonkeyEvent()
|
/development/tools/yuv420sp2rgb/ |
D | yuv420sp2rgb.c | 196 int type, in convert() argument 207 switch (type) { in convert() 264 type == CONVERT_TYPE_ARGB ? argb_cb : rgb24_cb); in convert() 272 char *infile, *outfile, *type; in main() local 283 &type, in main() 318 INFO("encode as: %s\n", type); in main() 324 if (!type || !strcmp(type, "ppm")) in main() 326 else if (!strcmp(type, "rgb")) in main() 328 else if (!strcmp(type, "argb")) in main() 330 else FAILIF(1, "Unknown encoding type %s.\n", type); in main()
|
D | cmdline.c | 62 char **type, in get_options() argument 73 ASSERT(type); *type = NULL; in get_options() 121 SET_STRING_OPTION(type); in get_options()
|
/development/pdk/docs/downloads/ |
D | downloads_toc.cs | 1 <script type="text/javascript" language="JavaScript"> 17 <script type="text/javascript">
|
/development/pdk/docs/about/ |
D | about_toc.cs | 1 <script type="text/javascript" language="JavaScript"> 14 <script type="text/javascript">
|
/development/apps/Development/src/com/android/development/ |
D | AccountsTester.java | 119 if (desc.type.equals(account.type)) { in getView() 178 String type = getSelectedAuthenticator().type; in onClick() local 179 onAccountsUpdated(mAccountManager.getAccountsByType(type)); in onClick() 190 mAccountManager.addAccount(getSelectedAuthenticator().type, in onClick() 196 mAccountManager.editProperties(getSelectedAuthenticator().type, in onClick() 313 AccountManagerCallback<Bundle> newAccountsCallback(String type, String[] features) { in newAccountsCallback() argument 314 return new GetAccountsCallback(type, features); in newAccountsCallback() 321 public GetAccountsCallback(String type, String[] features) { in GetAccountsCallback() argument 323 mAccountType = type; in GetAccountsCallback() 347 …AccountManagerCallback<Bundle> newAuthTokensCallback(String type, String authTokenType, String[] f… in newAuthTokensCallback() argument [all …]
|