S_IFMT             50 base/test/test_file_util_posix.cc   *mode = stat_buf.st_mode & ~S_IFMT;  // Filter out file/path kind.
S_IFMT             39 components/nacl/loader/nonsfi/abi_conversion.cc   switch (host_stat.st_mode & S_IFMT) {
S_IFMT             51 components/nacl/loader/nonsfi/abi_conversion.cc                    << (host_stat.st_mode & S_IFMT);
S_IFMT             99 native_client_sdk/src/libraries/nacl_io/fusefs/fuse_fs.cc       if ((statbuf.st_mode & S_IFMT) == S_IFDIR) {
S_IFMT            185 native_client_sdk/src/libraries/nacl_io/fusefs/fuse_fs.cc   if ((statbuf.st_mode & S_IFMT) == S_IFDIR) {
S_IFMT            166 native_client_sdk/src/libraries/nacl_io/node.cc int Node::GetMode() { return stat_.st_mode & ~S_IFMT; }
S_IFMT            173 native_client_sdk/src/libraries/nacl_io/node.cc int Node::GetType() { return stat_.st_mode & S_IFMT; }
S_IFMT            176 native_client_sdk/src/libraries/nacl_io/node.cc   assert((type & ~S_IFMT) == 0);
S_IFMT            177 native_client_sdk/src/libraries/nacl_io/node.cc   stat_.st_mode &= ~S_IFMT;
S_IFMT            255 native_client_sdk/src/tests/nacl_io_test/fuse_fs_test.cc   EXPECT_EQ(S_IFREG, statbuf.st_mode & S_IFMT);
S_IFMT            256 native_client_sdk/src/tests/nacl_io_test/fuse_fs_test.cc   EXPECT_EQ(0666, statbuf.st_mode & ~S_IFMT);
S_IFMT            261 native_client_sdk/src/tests/nacl_io_test/fuse_fs_test.cc   EXPECT_EQ(S_IFDIR, statbuf.st_mode & S_IFMT);
S_IFMT            262 native_client_sdk/src/tests/nacl_io_test/fuse_fs_test.cc   EXPECT_EQ(0755, statbuf.st_mode & ~S_IFMT);
S_IFMT            267 native_client_sdk/src/tests/nacl_io_test/fuse_fs_test.cc   EXPECT_EQ(S_IFREG, statbuf.st_mode & S_IFMT);
S_IFMT            268 native_client_sdk/src/tests/nacl_io_test/fuse_fs_test.cc   EXPECT_EQ(0666, statbuf.st_mode & ~S_IFMT);
S_IFMT            353 native_client_sdk/src/tests/nacl_io_test/html5_fs_test.cc   EXPECT_EQ(S_IFREG, statbuf.st_mode & S_IFMT);
S_IFMT            355 native_client_sdk/src/tests/nacl_io_test/html5_fs_test.cc             S_IWUSR | S_IWGRP | S_IWOTH, statbuf.st_mode & ~S_IFMT);
S_IFMT            372 native_client_sdk/src/tests/nacl_io_test/html5_fs_test.cc   EXPECT_EQ(S_IFDIR, statbuf.st_mode & S_IFMT);
S_IFMT            374 native_client_sdk/src/tests/nacl_io_test/html5_fs_test.cc             S_IWUSR | S_IWGRP | S_IWOTH, statbuf.st_mode & ~S_IFMT);
S_IFMT             93 third_party/libevent/sample/event-test.c 		if ((st.st_mode & S_IFMT) == S_IFREG) {
S_IFMT             70 third_party/libxml/src/xmlIO.c #        ifndef S_IFMT
S_IFMT             75 third_party/libxml/src/xmlIO.c #        ifdef S_IFMT
S_IFMT             76 third_party/libxml/src/xmlIO.c #          define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)