Home
last modified time | relevance | path

Searched defs:s (Results 1 – 25 of 165) sorted by relevance

1234567

/development/ndk/platforms/android-19/include/sys/
Dwait.h39 #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/
Dwait.h39 #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/
Dwait.h41 #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/
Dwait.h42 #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/
Dtermios.h49 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/
DTextWatcherWrapper.java37 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/
DGenericAccountService.java82 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/
Dvga.h22 #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/
DAccessSourcerTest.java50 String s = mWriter.toString(); in testAbstractPublic() local
59 String s = mWriter.toString(); in testPrivateFinalStatic() local
DFieldSourcerTest.java56 String s = mWriter.toString(); in testStringField() local
71 String s = mWriter.toString(); in testTemplateTypeField() local
/development/ndk/platforms/android-3/include/linux/
Dlockdep.h20 #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
Dvt_buffer.h18 #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/
DCardEmulationFragment.java55 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/
DEasyTextWatcher.java29 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/
Ddma-mapping_32.h27 #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/
DTextUndoActivity.java84 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/
Dstring.h100 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/
DShapeHolder.java85 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/
Ddb_utilities_linalg.cpp33 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/
DNativeMedia.java367 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/
DRendererES3.cpp20 #define STR(s) #s argument
21 #define STRV(s) STR(s) argument
/development/samples/ApiDemos/src/com/example/android/apis/view/
DSwitches.java37 Switch s = (Switch) findViewById(R.id.monitored_switch); in onCreate() local
/development/apps/Development/src/com/android/development/
DConfigurationViewer.java39 String s = "Configuration\n" in onCreate() local
/development/samples/devbytes/animation/SlidingFragments/src/com/example/android/slidingfragments/
DSlidingFragments.java154 AnimatorSet s = new AnimatorSet(); in slideBack() local
185 AnimatorSet s = new AnimatorSet(); in slideForward() local
/development/samples/browseable/BasicAndroidKeyStore/src/com.example.android.basicandroidkeystore/
DBasicAndroidKeyStoreFragment.java265 Signature s = Signature.getInstance(SecurityConstants.SIGNATURE_SHA256withRSA); in signData() local
335 Signature s = Signature.getInstance(SecurityConstants.SIGNATURE_SHA256withRSA); in verifyData() local

1234567