/openbmc/qemu/contrib/gitdm/ |
H A D | filetypes.txt | 27 # filetype <type> <regex> [<comment>] 33 # If there is an filetype which is not in order but has values, it will 43 filetype code \.c$ # C 44 filetype code \.c.inc$ # C 45 filetype code \.C$ # C++ 46 filetype code \.cpp$ # C++ 47 filetype code \.c\+\+$ # C++ 48 filetype code \.cxx$ # C++ 49 filetype code \.cc$ # C++ 50 filetype code \.h$ # C or C++ header [all …]
|
/openbmc/libpldm/tests/oem/ibm/ |
H A D | fileio.cpp | 875 uint16_t fileType = 0; in TEST() local 881 request->file_type = htole16(fileType); in TEST() 899 ASSERT_EQ(fileType, retFileType); in TEST() 940 uint16_t fileType = 0; in TEST() local 947 auto rc = decode_rw_file_by_type_memory_req(NULL, 0, &fileType, &fileHandle, in TEST() 960 requestPtr, requestMsg.size() - hdrSize, &fileType, &fileHandle, in TEST() 966 requestPtr, 0, &fileType, &fileHandle, &offset, &length, &address); in TEST() 1004 uint16_t fileType = 0; in TEST() local 1009 uint16_t fileTypeLe = htole16(fileType); in TEST() 1019 0, PLDM_READ_FILE_BY_TYPE_INTO_MEMORY, fileType, fileHandle, offset, in TEST() [all …]
|
/openbmc/openbmc/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 |
|
/openbmc/pldm/oem/ibm/libpldmresponder/ |
H A D | file_io_by_type.cpp | 127 getHandlerByType(uint16_t fileType, uint32_t fileHandle) in getHandlerByType() argument 129 switch (fileType) in getHandlerByType() 152 return std::make_unique<DumpHandler>(fileHandle, fileType); in getHandlerByType() 158 return std::make_unique<CertHandler>(fileHandle, fileType); in getHandlerByType() 171 return std::make_unique<keywordHandler>(fileHandle, fileType); in getHandlerByType() 176 return std::make_unique<PCIeInfoHandler>(fileHandle, fileType); in getHandlerByType()
|
H A D | file_io.cpp | 823 uint16_t fileType{}; in rwFileByTypeIntoMemory() local 829 request, payloadLength, &fileType, &fileHandle, &offset, &length, in rwFileByTypeIntoMemory() 854 handler = getHandlerByType(fileType, fileHandle); in rwFileByTypeIntoMemory() 858 error("Unknown file type '{TYPE}', error - {ERROR} ", "TYPE", fileType, in rwFileByTypeIntoMemory() 906 uint16_t fileType{}; in writeFileByType() local 911 auto rc = decode_rw_file_by_type_req(request, payloadLength, &fileType, in writeFileByType() 926 handler = getHandlerByType(fileType, fileHandle); in writeFileByType() 930 error("Unknown file type '{TYPE}', error - {ERROR}", "TYPE", fileType, in writeFileByType() 963 uint16_t fileType{}; in readFileByType() local 968 auto rc = decode_rw_file_by_type_req(request, payloadLength, &fileType, in readFileByType() [all …]
|
H A D | file_io_type_dump.hpp | 21 DumpHandler(uint32_t fileHandle, uint16_t fileType) : in DumpHandler() argument 22 FileHandler(fileHandle), dumpType(fileType) in DumpHandler()
|
H A D | file_io_type_cert.hpp | 27 CertHandler(uint32_t fileHandle, uint16_t fileType) : in CertHandler() argument 28 FileHandler(fileHandle), certType(fileType) in CertHandler()
|
H A D | file_io_by_type.hpp | 129 * @param[in] fileType - type of file 134 getHandlerByType(uint16_t fileType, uint32_t fileHandle);
|
/openbmc/linux/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() 183 uint8_t filetype; in xfs_dir2_block_getdents() local 208 filetype = xfs_dir2_data_get_ftype(dp->i_mount, dep); in xfs_dir2_block_getdents() 220 xfs_dir3_get_dtype(dp->i_mount, filetype))) in xfs_dir2_block_getdents() 382 uint8_t filetype; in xfs_dir2_leaf_getdents() local [all …]
|
/openbmc/linux/fs/ |
H A D | fs_types.c | 21 * @filetype: The on-disk file type to convert. 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()
|
/openbmc/linux/fs/adfs/ |
H A D | dir.c | 224 * filetype suffix to the name, check the filetype and append. in adfs_object_fixup() 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()
|
H A D | adfs.h | 14 /* RISC OS 12-bit filetype is stored in load_address[19:8] */ 72 int s_ftsuffix; /* ,xyz hex filetype suffix option */ 113 #define ADFS_MAX_NAME_LEN (256 + 4) /* +4 for ,xyz hex filetype suffix */
|
/openbmc/linux/tools/testing/selftests/tc-testing/ |
H A D | Makefile | 10 PROBE := $(shell $(LLC) -march=bpf -mcpu=probe -filetype=null /dev/null 2>&1) 28 $(LLC) -march=bpf -mcpu=$(CPU) $(LLC_FLAGS) -filetype=obj -o $@
|
/openbmc/phosphor-webui/app/common/components/ |
H A D | file-upload.js | 17 accept="{{$ctrl.fileType}}"/> 58 bindings: {uploadFile: '&', fileType: '@', fileStatus: '@'}
|
/openbmc/u-boot/include/ |
H A D | ext_common.h | 34 /* Filetype used in directory entry. */ 40 /* Filetype information as used in inodes. */ 193 __u8 filetype; member
|
/openbmc/linux/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::
|
/openbmc/linux/fs/xfs/libxfs/ |
H A D | xfs_dir2_sf.c | 67 * offset behind the entry name. If the entry stores a filetype value, then it 130 * The file type field is stored at the end of the name for filetype enabled 192 * if there is a filetype field, add the extra byte to the namelen in xfs_dir2_block_sfsize() 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() 889 args->filetype = XFS_DIR3_FT_DIR; in xfs_dir2_sf_lookup() 899 args->filetype = XFS_DIR3_FT_DIR; in xfs_dir2_sf_lookup() [all …]
|
H A D | xfs_dir2.c | 29 * Convert inode mode to directory entry filetype 283 args->filetype = name->type; in xfs_dir_createname() 379 args->filetype = name->type; in xfs_dir_lookup() 451 args->filetype = name->type; in xfs_dir_removename() 512 args->filetype = name->type; in xfs_dir_replace()
|
H A D | xfs_dir2.h | 27 * Convert inode mode to directory entry filetype 246 unsigned char xfs_dir3_get_dtype(struct xfs_mount *mp, uint8_t filetype);
|
/openbmc/linux/usr/ |
H A D | gen_initramfs.sh | 44 filetype() { function 85 # <filetype> <name> <path to file> <octal mode> <uid> <gid> 95 local ftype=$(filetype "${location}")
|
/openbmc/qemu/tests/qapi-schema/ |
H A D | sub-sub-module.json | 2 # vim: filetype=python
|
/openbmc/qemu/tests/qapi-schema/include/ |
H A D | sub-module.json | 2 # vim: filetype=python
|
/openbmc/qemu/ |
H A D | version.rc | 9 FILETYPE VFT_APP
|
/openbmc/qemu/qapi/ |
H A D | error.json | 2 # vim: filetype=python
|
H A D | compat.json | 2 # vim: filetype=python
|