/development/ndk/platforms/android-19/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-21/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/sys/ |
D | wait.h | 41 #define WEXITSTATUS(s) (((s) & 0xff00) >> 8) argument 42 #define WCOREDUMP(s) ((s) & 0x80) argument 43 #define WTERMSIG(s) ((s) & 0x7f) argument 44 #define WSTOPSIG(s) WEXITSTATUS(s) argument 46 #define WIFEXITED(s) (WTERMSIG(s) == 0) argument 47 #define WIFSTOPPED(s) (WTERMSIG(s) == 0x7f) argument 48 #define WIFSIGNALED(s) (WTERMSIG((s)+1) >= 2) argument
|
/development/ndk/platforms/android-9/include/sys/ |
D | wait.h | 42 #define WEXITSTATUS(s) (((s) & 0xff00) >> 8) argument 43 #define WCOREDUMP(s) ((s) & 0x80) argument 44 #define WTERMSIG(s) ((s) & 0x7f) argument 45 #define WSTOPSIG(s) WEXITSTATUS(s) argument 47 #define WIFEXITED(s) (WTERMSIG(s) == 0) argument 48 #define WIFSTOPPED(s) (WTERMSIG(s) == 0x7f) argument 49 #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/samples/browseable/NfcProvisioning/src/com.example.android.nfcprovisioning/ |
D | TextWatcherWrapper.java | 37 public void beforeTextChanged(CharSequence s, int start, int count, int after) { in beforeTextChanged() 42 public void onTextChanged(CharSequence s, int start, int before, int count) { in onTextChanged() 47 public void afterTextChanged(Editable s) { in afterTextChanged() 52 public void onTextChanged(int id, String s); in onTextChanged()
|
/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/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
|
/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/samples/browseable/CardEmulation/src/com.example.android.cardemulation/ |
D | CardEmulationFragment.java | 55 public void beforeTextChanged(CharSequence s, int start, int count, int after) { in beforeTextChanged() 60 public void onTextChanged(CharSequence s, int start, int before, int count) { in onTextChanged() 65 public void afterTextChanged(Editable s) { in afterTextChanged()
|
/development/samples/browseable/AppRestrictionEnforcer/src/com.example.android.apprestrictionenforcer/ |
D | EasyTextWatcher.java | 29 public void beforeTextChanged(CharSequence s, int start, int count, int after) { in beforeTextChanged() 34 public void onTextChanged(CharSequence s, int start, int before, int count) { in onTextChanged()
|
/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
|
/development/samples/ApiDemos/src/com/example/android/apis/content/ |
D | TextUndoActivity.java | 84 public void beforeTextChanged(CharSequence s, int start, int count, int after) { in beforeTextChanged() 88 public void onTextChanged(CharSequence s, int start, int before, int count) { in onTextChanged() 92 public void afterTextChanged(Editable s) { in afterTextChanged()
|
/development/ndk/platforms/android-21/include/ |
D | string.h | 100 const char *s = (const char *) src; in memcpy() local 179 void* memset(void *s, int c, size_t n) { in memset() 233 size_t strlen(const char *s) { in strlen() 252 char* strchr(const char *s, int c) { in strchr() 271 char* strrchr(const char *s, int c) { in strrchr()
|
/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/perftests/panorama/feature_stab/db_vlvm/ |
D | db_utilities_linalg.cpp | 33 double s,temp; in db_CholeskyDecomp6x6() local 83 double s; in db_CholeskyDecompSeparateDiagonal() local 105 double s; in db_CholeskyBacksub() local 125 double s,temp; in db_CholeskyDecomp3x3SeparateDiagonal() local
|
/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/ndk/platforms/android-18/samples/gles3jni/jni/ |
D | RendererES3.cpp | 20 #define STR(s) #s argument 21 #define STRV(s) STR(s) argument
|
/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/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 | 265 Signature s = Signature.getInstance(SecurityConstants.SIGNATURE_SHA256withRSA); in signData() local 335 Signature s = Signature.getInstance(SecurityConstants.SIGNATURE_SHA256withRSA); in verifyData() local
|