HomeSort by relevance Sort by last modified time
    Searched defs:filetype (Results 1 - 25 of 43) sorted by null

1 2

  /external/antlr/antlr-3.4/runtime/Perl5/tools/
port.pl 29 sub filetype { subroutine
44 if (filetype($filename) =~ /^text\//xms) {
  /external/e2fsprogs/lib/ext2fs/
newdir.c 36 int filetype = 0; local
59 filetype = EXT2_FT_DIR;
65 ext2fs_dirent_set_file_type(dir, filetype);
81 ext2fs_dirent_set_file_type(dir, filetype);
inline_data.c 292 int filetype = 0; local
299 filetype = EXT2_FT_DIR;
307 ext2fs_dirent_set_file_type(dir, filetype);
319 ext2fs_dirent_set_file_type(dir, filetype);
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/
genfsconquery.py 63 filetype = None variable in class:GenfsconQuery
78 self.log.debug("Filetype: {0.filetype!r}".format(self))
94 if self.filetype and not self.filetype == genfs.filetype:
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
importdl.h 10 enum filetype { enum
26 enum filetype type;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
importdl.h 10 enum filetype { enum
26 enum filetype type;
  /external/e2fsprogs/debugfs/
ncheck.c 48 int filetype = ext2fs_dirent_file_type(dirent); local
76 if (iw->check_dirent && filetype) {
79 filetype != ext2_file_type(inode.i_mode)) {
80 printf(" <--- BAD FILETYPE");
create_inode.c 234 int filetype; local
239 filetype = EXT2_FT_CHRDEV;
243 filetype = EXT2_FT_BLKDEV;
247 filetype = EXT2_FT_FIFO;
251 filetype = EXT2_FT_SOCK;
267 retval = ext2fs_link(fs, cwd, name, ino, filetype);
275 retval = ext2fs_link(fs, cwd, name, ino, filetype);
289 if (filetype != S_IFIFO) {
  /external/libmtp/examples/
pathutils.c 133 LIBMTP_filetype_t filetype; local
149 filetype = LIBMTP_FILETYPE_WAV;
151 filetype = LIBMTP_FILETYPE_MP3;
153 filetype = LIBMTP_FILETYPE_WMA;
155 filetype = LIBMTP_FILETYPE_OGG;
157 filetype = LIBMTP_FILETYPE_MP4;
159 filetype = LIBMTP_FILETYPE_WMV;
161 filetype = LIBMTP_FILETYPE_AVI;
163 filetype = LIBMTP_FILETYPE_MPEG;
165 filetype = LIBMTP_FILETYPE_ASF
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/
fscontext.py 106 return "genfscon {0.fs} {0.path} {0.filetype} {0.context}".format(self)
109 return hash("genfscon|{0.fs}|{0.path}|{0.filetype}".format(self))
118 self.filetype == other.filetype and
124 def filetype(self): member in class:Genfscon
  /external/toybox/toys/other/
stat.c 95 int i, filetype = stat->st_mode & S_IFMT; local
97 for (i = 1; filetype != (i*8192) && i < 7; i++) t += strlen(t)+1;
98 if (!stat->st_size && filetype == S_IFREG) t = "regular empty file";
  /external/e2fsprogs/misc/
create_inode.c 234 int filetype; local
239 filetype = EXT2_FT_CHRDEV;
243 filetype = EXT2_FT_BLKDEV;
247 filetype = EXT2_FT_FIFO;
251 filetype = EXT2_FT_SOCK;
267 retval = ext2fs_link(fs, cwd, name, ino, filetype);
275 retval = ext2fs_link(fs, cwd, name, ino, filetype);
289 if (filetype != S_IFIFO) {
fuse2fs.c 916 int filetype; local
957 filetype = EXT2_FT_CHRDEV;
959 filetype = EXT2_FT_BLKDEV;
961 filetype = EXT2_FT_FIFO;
963 filetype = EXT2_FT_SOCK;
977 err = ext2fs_link(fs, parent, node_name, child, filetype);
986 filetype);
2841 int filetype; local
    [all...]
  /external/fio/
file.h 66 enum fio_filetype filetype; member in struct:fio_file
  /external/llvm/include/llvm/ObjectYAML/
MachOYAML.h 44 llvm::yaml::Hex32 filetype; member in struct:llvm::MachOYAML::FileHeader
  /external/e2fsprogs/e2fsck/
rehash.c 544 int filetype = 0; local
548 filetype = EXT2_FT_DIR;
555 ext2fs_dirent_set_file_type(dir, filetype);
562 ext2fs_dirent_set_file_type(dir, filetype);
pass2.c 499 * Check the directory filetype (if present)
506 int filetype = ext2fs_dirent_file_type(dirent); local
511 if (filetype == 0 ||
532 if (filetype == should_be)
536 if (fix_problem(ctx, filetype ? PR_2_BAD_FILETYPE : PR_2_SET_FILETYPE,
906 int filetype = 0; local
926 filetype = EXT2_FT_DIR << 8;
    [all...]
  /toolchain/binutils/binutils-2.25/include/mach-o/
external.h 29 unsigned char filetype[4]; /* Type of file. */ member in struct:mach_o_header_external
  /toolchain/binutils/binutils-2.25/libiberty/
simple-object-mach-o.c 53 unsigned char filetype[4]; /* Type of file. */ member in struct:mach_o_header_32
66 unsigned char filetype[4]; /* Type of file. */ member in struct:mach_o_header_64
78 /* For filetype field in header. */
251 unsigned int filetype; local
314 filetype = (*fetch_32) (b + offsetof (struct mach_o_header_32, filetype));
315 if (filetype != MACH_O_MH_OBJECT)
913 set_32 (hdr + offsetof (struct mach_o_header_32, filetype), MACH_O_MH_OBJECT);
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
mach-o.h 32 unsigned long filetype; member in struct:bfd_mach_o_header
  /external/libmtp/src/
libmtp.h 117 * Audio filetype test.
136 * Video filetype test.
149 * Audio and&slash;or video filetype test.
158 * Test if filetype is a track.
169 * Image filetype test
185 * Addressbook and Business card filetype test
193 * Calendar and Appointment filetype test
618 LIBMTP_filetype_t filetype; /**< Filetype used for the current file */ member in struct:LIBMTP_file_struct
647 LIBMTP_filetype_t filetype; /**< Filetype used for the current track * member in struct:LIBMTP_track_struct
699 LIBMTP_filetype_t filetype; \/**< Filetype used for the sample *\/ member in struct:LIBMTP_filesampledata_struct
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
MachO.h 35 // Constants for the "filetype" field in llvm::MachO::mach_header and
283 uint32_t filetype; member in struct:llvm::MachO::mach_header
293 uint32_t filetype; member in struct:llvm::MachO::mach_header_64
  /external/v8/src/
gdb-jit.cc 497 uint32_t filetype; member in struct:v8::internal::BASE_EMBEDDED::MachOHeader
548 header->filetype = 0x1; // MH_OBJECT
    [all...]
  /external/curl/include/curl/
curl.h 249 curlfiletype filetype; member in struct:curl_fileinfo
    [all...]
  /external/llvm/include/llvm/Support/
MachO.h 38 // Constants for the "filetype" field in llvm::MachO::mach_header and
496 uint32_t filetype; member in struct:llvm::MachO::mach_header
506 uint32_t filetype; member in struct:llvm::MachO::mach_header_64
989 sys::swapByteOrder(mh.filetype);
999 sys::swapByteOrder(H.filetype);
    [all...]

Completed in 1501 milliseconds

1 2