| /OK3568_Linux_fs/buildroot/dl/sox/git/src/ |
| H A D | formats.c | 104 char const * filetype = NULL; in auto_detect_format() local 111 filetype = magic_buffer(magic, data, len); in auto_detect_format() 112 if (filetype && strncmp(filetype, "application/octet-stream", (size_t)24) && in auto_detect_format() 113 !lsx_strends(filetype, "/unknown") && in auto_detect_format() 114 strncmp(filetype, "text/plain", (size_t)10) ) in auto_detect_format() 115 return filetype; in auto_detect_format() 116 else if (filetype) in auto_detect_format() 117 lsx_debug("libmagic detected %s", filetype); in auto_detect_format() 492 char const * filetype) in open_read() argument 501 if (filetype) { in open_read() [all …]
|
| H A D | tx16w.c | 52 char filetype[6]; /* = "LM8953", */ member 76 char filetype[7]; in startread() local 100 lsx_readchars(ft, filetype, sizeof(filetype) - 1); in startread() 101 filetype[6] = '\0'; in startread() 117 lsx_debug("Found header filetype %s",filetype); in startread() 118 if(strcmp(filetype,"LM8953")) in startread() 305 memcpy(WH.filetype, "LM8953", 6); in stopwrite()
|
| H A D | sox.c | 126 char const * filetype; member 360 char const * filetype = lsx_find_file_extension(ft->filename); in display_file_info() local 371 if (filetype) for (i = 0; ft->handler.names[i] && show_type; ++i) in display_file_info() 372 if (!strcasecmp(filetype, ft->handler.names[i])) in display_file_info() 1502 ofile->filetype, &oob, overwrite_permitted); in open_output_file() 1699 if (sox_format_supports_encoding(ofile->filename, ofile->filetype, &t)) in set_combiner_and_output_encoding_parameters() 2392 f->filetype = optstate.arg; in parse_gopts_and_fopts() 2393 if (f->filetype[0] == '.') in parse_gopts_and_fopts() 2394 f->filetype++; in parse_gopts_and_fopts() 2538 if (!f->filetype) f->filetype = getenv("AUDIODRIVER"); in set_default_device() [all …]
|
| H A D | sox.h | 1525 …char * filetype; /**< Type of file, as determined by header inspection or libmagi… member 1833 …LSX_PARAM_IN_OPT_Z char const * filetype /**< Previously-determined file type, or NU… 1849 …LSX_PARAM_IN_OPT_Z char const * filetype /**< Previously-determined file type, or N… 1861 …LSX_PARAM_IN_OPT_Z char const * filetype, /**< Previously-determined file type, or… 1875 …LSX_PARAM_IN_OPT_Z char const * filetype, /**< Filetype for which handler is nee… 1891 …LSX_PARAM_IN_OPT_Z char const * filetype, /**< Previously-determined file type, or N… 1909 …LSX_PARAM_IN_OPT_Z char const * filetype, /**< Previously-determi… 1926 …LSX_PARAM_IN_OPT_Z char const * filetype, /**< Previously-determined file typ…
|
| H A D | sndfile.c | 298 if (strcmp(ft->filetype, "sndfile") == 0) in start() 301 sf->sf_info->format = name_to_format(ft->filetype) | subtype; in start()
|
| /OK3568_Linux_fs/kernel/fs/xfs/ |
| H A D | xfs_dir2_readdir.c | 33 uint8_t filetype) in xfs_dir3_get_dtype() argument 38 if (filetype >= XFS_DIR3_FT_MAX) in xfs_dir3_get_dtype() 41 return xfs_dir3_filetype_table[filetype]; in xfs_dir3_get_dtype() 107 uint8_t filetype; in xfs_dir2_sf_getdents() local 118 filetype = xfs_dir2_sf_get_ftype(mp, sfep); in xfs_dir2_sf_getdents() 125 xfs_dir3_get_dtype(mp, filetype))) in xfs_dir2_sf_getdents() 182 uint8_t filetype; in xfs_dir2_block_getdents() local 207 filetype = xfs_dir2_data_get_ftype(dp->i_mount, dep); in xfs_dir2_block_getdents() 219 xfs_dir3_get_dtype(dp->i_mount, filetype))) in xfs_dir2_block_getdents() 383 uint8_t filetype; in xfs_dir2_leaf_getdents() local [all …]
|
| /OK3568_Linux_fs/yocto/poky/bitbake/contrib/vim/ftdetect/ |
| H A D | bitbake.vim | 1 " Vim filetype detection file 14 au BufNewFile,BufRead *.{bb,bbappend,bbclass} set filetype=bitbake 17 au BufNewFile,BufRead *.inc set filetype=bitbake 22 \ set filetype=bitbake |
|
| /OK3568_Linux_fs/kernel/fs/ |
| H A D | fs_types.c | 37 unsigned char fs_ftype_to_dtype(unsigned int filetype) in fs_ftype_to_dtype() argument 39 if (filetype >= FT_MAX) in fs_ftype_to_dtype() 42 return fs_dtype_by_ftype[filetype]; in fs_ftype_to_dtype()
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/tc-testing/ |
| H A D | Makefile | 12 PROBE := $(shell $(LLC) -march=bpf -mcpu=probe -filetype=null /dev/null 2>&1) 30 $(LLC) -march=bpf -mcpu=$(CPU) $(LLC_FLAGS) -filetype=obj -o $@
|
| /OK3568_Linux_fs/kernel/fs/adfs/ |
| H A D | dir.c | 227 u16 filetype = adfs_filetype(obj->loadaddr); in adfs_object_fixup() local 229 if (filetype != ADFS_FILETYPE_NONE) { in adfs_object_fixup() 231 obj->name[obj->name_len++] = hex_asc_lo(filetype >> 8); in adfs_object_fixup() 232 obj->name[obj->name_len++] = hex_asc_lo(filetype >> 4); in adfs_object_fixup() 233 obj->name[obj->name_len++] = hex_asc_lo(filetype >> 0); in adfs_object_fixup()
|
| /OK3568_Linux_fs/kernel/fs/xfs/libxfs/ |
| H A D | xfs_dir2_sf.c | 487 xfs_dir2_sf_put_ftype(mp, sfep, args->filetype); in xfs_dir2_sf_addname_easy() 577 xfs_dir2_sf_put_ftype(mp, sfep, args->filetype); in xfs_dir2_sf_addname_hard() 724 uint8_t filetype; in xfs_dir2_sf_verify() local 784 filetype = xfs_dir2_sf_get_ftype(mp, sfep); in xfs_dir2_sf_verify() 785 if (filetype >= XFS_DIR3_FT_MAX) in xfs_dir2_sf_verify() 892 args->filetype = XFS_DIR3_FT_DIR; in xfs_dir2_sf_lookup() 902 args->filetype = XFS_DIR3_FT_DIR; in xfs_dir2_sf_lookup() 920 args->filetype = xfs_dir2_sf_get_ftype(mp, sfep); in xfs_dir2_sf_lookup() 1109 xfs_dir2_sf_put_ftype(mp, sfep, args->filetype); in xfs_dir2_sf_replace()
|
| H A D | xfs_dir2.c | 270 args->filetype = name->type; in xfs_dir_createname() 366 args->filetype = name->type; in xfs_dir_lookup() 438 args->filetype = name->type; in xfs_dir_removename() 499 args->filetype = name->type; in xfs_dir_replace()
|
| H A D | xfs_da_btree.h | 59 uint8_t filetype; /* filetype of inode for directories */ member
|
| H A D | xfs_dir2.h | 246 unsigned char xfs_dir3_get_dtype(struct xfs_mount *mp, uint8_t filetype);
|
| H A D | xfs_dir2_block.c | 573 xfs_dir2_data_put_ftype(dp->i_mount, dep, args->filetype); in xfs_dir2_block_addname() 665 args->filetype = xfs_dir2_data_get_ftype(dp->i_mount, dep); in xfs_dir2_block_lookup() 895 xfs_dir2_data_put_ftype(dp->i_mount, dep, args->filetype); in xfs_dir2_block_replace()
|
| /OK3568_Linux_fs/kernel/Documentation/filesystems/ |
| H A D | adfs.rst | 66 Owner read and filetype UnixExec -> ---x--x--x 72 Other read and filetype UnixExec -> ---x--x--x 77 not a UnixExec filetype, then the permissions will be::
|
| /OK3568_Linux_fs/kernel/usr/ |
| H A D | gen_initramfs.sh | 43 filetype() { function 94 local ftype=$(filetype "${location}")
|
| /OK3568_Linux_fs/device/rockchip/common/linux-kbuild/armhf/linux-kbuild-4.4/scripts/ |
| H A D | gen_initramfs_list.sh | 62 filetype() { function 114 local ftype=$(filetype "${location}")
|
| /OK3568_Linux_fs/device/rockchip/common/linux-kbuild/aarch64/linux-kbuild-4.4/scripts/ |
| H A D | gen_initramfs_list.sh | 62 filetype() { function 114 local ftype=$(filetype "${location}")
|
| /OK3568_Linux_fs/kernel/include/linux/ |
| H A D | fs_types.h | 71 extern unsigned char fs_ftype_to_dtype(unsigned int filetype);
|
| /OK3568_Linux_fs/kernel/security/ |
| H A D | device_cgroup.c | 599 int filetype, char *buffer) in devcgroup_update_access() argument 615 switch (filetype) { in devcgroup_update_access() 717 switch (filetype) { in devcgroup_update_access()
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/ |
| H A D | Makefile | 257 $(LLC) -mattr=dwarfris -march=bpf -mcpu=v3 $4 -filetype=obj -o $2 264 $(LLC) -march=bpf -mcpu=v2 $4 -filetype=obj -o $2 271 $(LLC) -march=bpf -mcpu=v3 $4 -filetype=obj -o $2
|
| /OK3568_Linux_fs/u-boot/include/ |
| H A D | ext_common.h | 194 __u8 filetype; member
|
| /OK3568_Linux_fs/kernel/fs/jfs/ |
| H A D | namei.c | 623 int filetype; in commitZeroLink() local 628 filetype = ip->i_mode & S_IFMT; in commitZeroLink() 629 switch (filetype) { in commitZeroLink() 640 assert(filetype != S_IFDIR); in commitZeroLink()
|
| /OK3568_Linux_fs/u-boot/fs/ext4/ |
| H A D | ext4_common.c | 612 dir->filetype = FILETYPE_REG; /* regular file */ in ext4fs_update_parent_dentry() 2062 if (dirent.filetype != FILETYPE_UNKNOWN) { in ext4fs_iterate_dir() 2065 if (dirent.filetype == FILETYPE_DIRECTORY) in ext4fs_iterate_dir() 2067 else if (dirent.filetype == FILETYPE_SYMLINK) in ext4fs_iterate_dir() 2069 else if (dirent.filetype == FILETYPE_REG) in ext4fs_iterate_dir()
|