HomeSort by relevance Sort by last modified time
    Searched refs:S_ISCHR (Results 1 - 25 of 36) sorted by null

1 2

  /bionic/libc/kernel/common/linux/
stat.h 32 #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
  /development/ndk/platforms/android-3/include/linux/
stat.h 32 #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
stat.h 32 #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
stat.h 32 #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
stat.h 32 #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
stat.h 32 #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
stat.h 32 #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
stat.h 32 #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
  /bionic/libc/stdio/
makebuf.c 92 *couldbetty = S_ISCHR(st.st_mode);
  /external/kernel-headers/original/linux/
stat.h 27 #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
  /external/openssl/crypto/rand/
randfile.c 188 #if defined(S_ISBLK) && defined(S_ISCHR)
189 if (S_ISBLK(sb.st_mode) || S_ISCHR(sb.st_mode)) {
  /external/qemu/distrib/sdl-1.2.12/src/audio/
SDL_audiodev.c 66 ((stat(_PATH_DEV_DSP24, &sb) == 0) && S_ISCHR(sb.st_mode)) ) {
  /frameworks/base/libs/utils/
misc.cpp 136 else if (S_ISCHR(sb.st_mode))
  /external/e2fsprogs/lib/blkid/
getsize.c 143 * character) devices, so we need to check for S_ISCHR, too.
145 if ((fstat(fd, &st) >= 0) && (S_ISBLK(st.st_mode) || S_ISCHR(st.st_mode)))
  /external/bluetooth/glib/glib/
giounix.c 540 channel->is_seekable = S_ISREG (buffer.st_mode) || S_ISCHR (buffer.st_mode)
591 channel->is_seekable = S_ISREG (buffer.st_mode) || S_ISCHR (buffer.st_mode)
  /external/yaffs2/yaffs2/utils/
mkyaffs2image.c 341 S_ISCHR(stats.st_mode) ||
425 else if(S_ISCHR(stats.st_mode))
mkyaffsimage.c 417 S_ISCHR(stats.st_mode) ||
497 else if(S_ISCHR(stats.st_mode))
  /external/e2fsprogs/misc/
util.c 102 if (!S_ISBLK(s.st_mode) && !S_ISCHR(s.st_mode))
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
system.h 473 #ifndef S_ISCHR
474 #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
system.h 473 #ifndef S_ISCHR
474 #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
  /external/qemu/distrib/sdl-1.2.12/src/cdrom/freebsd/
SDL_syscdrom.c 75 if ( S_ISCHR(stbuf->st_mode) || S_ISBLK(stbuf->st_mode) ) {
  /external/qemu/distrib/sdl-1.2.12/src/cdrom/openbsd/
SDL_syscdrom.c 78 if ( S_ISCHR(stbuf->st_mode) || S_ISBLK(stbuf->st_mode) ) {
  /external/qemu/distrib/sdl-1.2.12/src/cdrom/qnx/
SDL_syscdrom.c 83 if (S_ISCHR(stbuf->st_mode) || S_ISBLK(stbuf->st_mode))
  /system/extras/ext4_utils/
make_ext4fs.c 137 } else if (S_ISCHR(stat.st_mode)) {
  /external/ppp/pppd/
tty.c 315 if (!S_ISCHR(statbuf.st_mode)) {
488 if (fstat(0, &statbuf) >= 0 && S_ISCHR(statbuf.st_mode)
504 && S_ISCHR(statbuf.st_mode) && statbuf.st_rdev == devstat.st_rdev)
    [all...]

Completed in 460 milliseconds

1 2