/development/ndk/platforms/android-3/include/sys/ |
D | wait.h | 38 #define WEXITSTATUS(s) (((s) & 0xff00) >> 8) argument 39 #define WCOREDUMP(s) ((s) & 0x80) argument 40 #define WTERMSIG(s) ((s) & 0x7f) argument 41 #define WSTOPSIG(s) WEXITSTATUS(s) argument 43 #define WIFEXITED(s) (WTERMSIG(s) == 0) argument 44 #define WIFSTOPPED(s) (WTERMSIG(s) == 0x7f) argument 45 #define WIFSIGNALED(s) (WTERMSIG((s)+1) >= 2) argument
|
/development/ndk/platforms/android-9/include/sys/ |
D | wait.h | 39 #define WEXITSTATUS(s) (((s) & 0xff00) >> 8) argument 40 #define WCOREDUMP(s) ((s) & 0x80) argument 41 #define WTERMSIG(s) ((s) & 0x7f) argument 42 #define WSTOPSIG(s) WEXITSTATUS(s) argument 44 #define WIFEXITED(s) (WTERMSIG(s) == 0) argument 45 #define WIFSTOPPED(s) (WTERMSIG(s) == 0x7f) argument 46 #define WIFSIGNALED(s) (WTERMSIG((s)+1) >= 2) argument
|
/development/ndk/platforms/android-3/include/ |
D | termios.h | 49 static __inline__ int tcgetattr(int fd, struct termios *s) in tcgetattr() 54 static __inline__ int tcsetattr(int fd, int __opt, const struct termios *s) in tcsetattr() 80 static __inline__ speed_t cfgetospeed(const struct termios *s) in cfgetospeed() 85 static __inline__ int cfsetospeed(struct termios *s, speed_t speed) in cfsetospeed() 91 static __inline__ speed_t cfgetispeed(const struct termios *s) in cfgetispeed() 96 static __inline__ int cfsetispeed(struct termios *s, speed_t speed) in cfsetispeed() 102 static __inline__ void cfmakeraw(struct termios *s) in cfmakeraw()
|
/development/ndk/platforms/android-9/arch-mips/include/asm/ |
D | vga.h | 22 #define VGA_MAP_MEM(x, s) (0xb0000000L + (unsigned long)(x)) argument 30 #define scr_memcpyw(d, s, c) memcpy(d, s, c) argument 31 #define scr_memmovew(d, s, c) memmove(d, s, c) argument
|
D | floppy.h | 30 #define CROSS_64KB(a, s) ((unsigned long)(a)/K_64 != ((unsigned long)(a) + (s) - 1) / K_64) argument
|
/development/samples/browseable/BasicSyncAdapter/src/com.example.android.common/accounts/ |
D | GenericAccountService.java | 82 String s) { in editProperties() 88 String s, String s2, String[] strings, Bundle bundle) in addAccount() 102 Account account, String s, Bundle bundle) in getAuthToken() 108 public String getAuthTokenLabel(String s) { in getAuthTokenLabel() 114 Account account, String s, Bundle bundle) in updateCredentials()
|
/development/tools/mkstubs/tests/com/android/mkstubs/sourcer/ |
D | AccessSourcerTest.java | 50 String s = mWriter.toString(); in testAbstractPublic() local 59 String s = mWriter.toString(); in testPrivateFinalStatic() local
|
D | FieldSourcerTest.java | 56 String s = mWriter.toString(); in testStringField() local 71 String s = mWriter.toString(); in testTemplateTypeField() local
|
/development/ndk/platforms/android-3/include/linux/ |
D | lockdep.h | 20 #define lock_acquire(l, s, t, r, c, i) do { } while (0) argument 38 #define spin_acquire(l, s, t, i) do { } while (0) argument 41 #define rwlock_acquire(l, s, t, i) do { } while (0) argument 42 #define rwlock_acquire_read(l, s, t, i) do { } while (0) argument 45 #define mutex_acquire(l, s, t, i) do { } while (0) argument 48 #define rwsem_acquire(l, s, t, i) do { } while (0) argument 49 #define rwsem_acquire_read(l, s, t, i) do { } while (0) argument
|
D | vt_buffer.h | 18 #define scr_memcpyw(d, s, c) memcpy(d, s, c) argument 19 #define scr_memmovew(d, s, c) memmove(d, s, c) argument
|
/development/ndk/platforms/android-9/arch-x86/include/asm/ |
D | dma-mapping_32.h | 27 #define dma_alloc_noncoherent(d, s, h, f) dma_alloc_coherent(d, s, h, f) argument 29 #define dma_free_noncoherent(d, s, v, h) dma_free_coherent(d, s, v, h) argument
|
D | apic_32.h | 34 #define apic_printk(v, s, a...) do { if ((v) <= apic_verbosity) printk(s, ##a); } while (0) argument
|
/development/samples/ApiDemos/src/com/example/android/apis/animation/ |
D | ShapeHolder.java | 85 Shape s = shape.getShape(); in setWidth() local 93 Shape s = shape.getShape(); in setHeight() local 97 public ShapeHolder(ShapeDrawable s) { in ShapeHolder()
|
/development/ndk/platforms/android-14/samples/native-media/src/com/example/nativemedia/ |
D | NativeMedia.java | 367 Surface s = mSurfaceHolder.getSurface(); in useAsSinkForJava() local 373 Surface s = mSurfaceHolder.getSurface(); in useAsSinkForNative() local 393 Surface s = new Surface(st); in useAsSinkForJava() local 400 Surface s = new Surface(st); in useAsSinkForNative() local
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
D | Switches.java | 37 Switch s = (Switch) findViewById(R.id.monitored_switch); in onCreate() local
|
/development/apps/Development/src/com/android/development/ |
D | ConfigurationViewer.java | 39 String s = "Configuration\n" in onCreate() local
|
/development/ndk/platforms/android-18/samples/gles3jni/jni/ |
D | RendererES3.cpp | 20 #define STR(s) #s argument 21 #define STRV(s) STR(s) argument
|
/development/ndk/platforms/android-3/arch-arm/include/asm/ |
D | vga.h | 18 #define VGA_MAP_MEM(x,s) (PCIMEM_BASE + (x)) argument
|
/development/tools/mkstubs/tests/com/android/mkstubs/ |
D | SourceGeneratorTest.java | 54 String s = sw.toString(); in testDumpClass() local
|
/development/samples/devbytes/animation/SlidingFragments/src/com/example/android/slidingfragments/ |
D | SlidingFragments.java | 154 AnimatorSet s = new AnimatorSet(); in slideBack() local 185 AnimatorSet s = new AnimatorSet(); in slideForward() local
|
/development/samples/browseable/BasicAndroidKeyStore/src/com.example.android.basicandroidkeystore/ |
D | BasicAndroidKeyStoreFragment.java | 243 Signature s = Signature.getInstance(SecurityConstants.SIGNATURE_SHA256withRSA); in signData() local 313 Signature s = Signature.getInstance(SecurityConstants.SIGNATURE_SHA256withRSA); in verifyData() local
|
/development/tools/yuv420sp2rgb/ |
D | debug.c | 7 int dump_hex_buffer(FILE *s, void *b, size_t len, size_t elsize) { in dump_hex_buffer()
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
D | ShapeDrawable1.java | 62 public MyShapeDrawable(Shape s) { in MyShapeDrawable() 71 @Override protected void onDraw(Shape s, Canvas c, Paint p) { in onDraw()
|
/development/tools/mkstubs/src/com/android/mkstubs/ |
D | Filter.java | 76 public boolean accept(String s) { in accept()
|
/development/samples/browseable/BasicMediaRouter/src/com.example.android.basicmediarouter/ |
D | SamplePresentation.java | 74 String s = getResources().getString(R.string.display_color, color); in setColor() local
|