rpm
5.4.14
|
![]() |
Files | |
file | rpmfi.c |
Routines to handle file info tag sets. | |
file | rpmfi.h |
Structure(s) used for file info tag sets. | |
file | rpmlib.h |
In Memoriam: Steve Taylor stayl was here, now he's not. or@r edhat .com | |
Typedefs | |
typedef enum rpmFileTypes_e | rpmFileTypes |
File types. More... | |
typedef struct rpmfi_s * | rpmfi |
File info tag sets from a header, so that a header can be discarded early. More... | |
Enumerations | |
enum | rpmFileTypes_e { PIPE = 1, CDEV = 2, XDIR = 4, BDEV = 6, REG = 8, LINK = 10, SOCK = 12 } |
File types. More... | |
RPMFI | |
void * | rpmfiBloomFN (const rpmfi fi) |
Return file path Bloom filter. More... | |
void * | rpmfiExclude (const rpmfi fi) |
Return file info exclude patterns. More... | |
int | rpmfiNExclude (const rpmfi fi) |
Return no. More... | |
void * | rpmfiInclude (const rpmfi fi) |
Return file info include patterns. More... | |
int | rpmfiNInclude (const rpmfi fi) |
Return no. More... | |
typedef struct rpmfi_s* rpmfi |
typedef enum rpmFileTypes_e rpmFileTypes |
File types.
These are the file types used internally by rpm. The file type is determined by applying stat(2) macros like S_ISDIR to the file mode tag from a header. The values are arbitrary, but are identical to the linux stat(2) file types.
enum rpmFileTypes_e |
File types.
These are the file types used internally by rpm. The file type is determined by applying stat(2) macros like S_ISDIR to the file mode tag from a header. The values are arbitrary, but are identical to the linux stat(2) file types.
Enumerator | |
---|---|
PIPE |
pipe/fifo |
CDEV |
character device |
XDIR |
directory |
BDEV |
block device |
REG |
regular file |
LINK |
hard link |
SOCK |
socket |