csomh / source-git / rpm

Forked from source-git/rpm 4 years ago
Clone
2ff057
2ff057
<html xmlns="http://www.w3.org/1999/xhtml">
2ff057
<head>
2ff057
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
2ff057
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
2ff057
<meta name="generator" content="Doxygen 1.8.14"/>
2ff057
<meta name="viewport" content="width=device-width, initial-scale=1"/>
2ff057
<title>rpm: rpmio.h Source File</title>
2ff057
<link href="tabs.css" rel="stylesheet" type="text/css"/>
2ff057
<script type="text/javascript" src="jquery.js"></script>
2ff057
<script type="text/javascript" src="dynsections.js"></script>
2ff057
<link href="doxygen.css" rel="stylesheet" type="text/css" />
2ff057
</head>
2ff057
<body>
2ff057
2ff057
2ff057
2ff057
 
2ff057
 
2ff057
  
2ff057
   
rpm
2ff057
    4.14.2
2ff057
   
2ff057
  
2ff057
 
2ff057
 
2ff057
2ff057
2ff057
2ff057
2ff057
<script type="text/javascript" src="menudata.js"></script>
2ff057
<script type="text/javascript" src="menu.js"></script>
2ff057
<script type="text/javascript">
2ff057
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
2ff057
$(function() {
2ff057
  initMenu('',false,false,'search.php','Search');
2ff057
});
2ff057
/* @license-end */</script>
2ff057
2ff057
2ff057
  
    2ff057
  • rpmio
  • 2ff057
    2ff057
    2ff057
    2ff057
      
    2ff057
    rpmio.h
    2ff057
    2ff057
    2ff057
    Go to the documentation of this file.
    1 #ifndef H_RPMIO
    2 #define H_RPMIO
    3 
    10 #include <sys/types.h>
    11 #include <sys/stat.h>
    12 #include <stdio.h>
    13 #include <stdlib.h>
    14 #include <unistd.h>
    15 
    16 #include <rpm/rpmtypes.h>
    17 #include <rpm/rpmsw.h>
    18 
    19 #ifdef __cplusplus
    20 extern "C" {
    21 #endif
    22 
    25 typedef const struct FDIO_s * FDIO_t;
    26 
    27 
    35 const char * Fstrerror(FD_t fd);
    36 
    40 ssize_t Fread(void * buf, size_t size, size_t nmemb, FD_t fd);
    41 
    45 ssize_t Fwrite(const void * buf, size_t size, size_t nmemb, FD_t fd);
    46 
    50 int Fseek(FD_t fd, off_t offset, int whence);
    51 
    55 off_t Ftell(FD_t fd);
    56 
    60 int Fclose( FD_t fd);
    61 
    64 FD_t Fdopen(FD_t ofd, const char * fmode);
    65 
    69 FD_t Fopen(const char * path,
    70  const char * fmode);
    71 
    72 
    76 int Fflush(FD_t fd);
    77 
    81 int Ferror(FD_t fd);
    82 
    86 int Fileno(FD_t fd);
    87 
    91 int Fcntl(FD_t fd, int op, void *lip);
    92 
    96 const char * Fdescr(FD_t fd);
    97 
    104 off_t fdSize(FD_t fd);
    105 
    108 FD_t fdDup(int fdno);
    109 
    112 FD_t fdLink(FD_t fd);
    113 
    116 FD_t fdFree(FD_t fd);
    117 
    120 off_t ufdCopy(FD_t sfd, FD_t tfd);
    121 
    125 typedef enum fdOpX_e {
    132 } fdOpX;
    133 
    137 rpmop fdOp(FD_t fd, fdOpX opx);
    138 
    139 #ifdef __cplusplus
    140 }
    141 #endif
    142 
    143 #endif /* H_RPMIO */
    const char * Fdescr(FD_t fd)
    Get informative description (eg file name) from fd for diagnostic output.
    2ff057
    off_t fdSize(FD_t fd)
    2ff057
    2ff057
    2ff057
    int Fileno(FD_t fd)
    fileno(3) clone.
    2ff057
    enum fdOpX_e fdOpX
    Identify per-desciptor I/O operation statistics.
    2ff057
    rpmop fdOp(FD_t fd, fdOpX opx)
    2ff057
    FD_t fdFree(FD_t fd)
    2ff057
    ssize_t Fread(void *buf, size_t size, size_t nmemb, FD_t fd)
    Like fread(3) but with read(3)-style return values.
    2ff057
    int Fflush(FD_t fd)
    fflush(3) clone.
    2ff057
    const struct FDIO_s * FDIO_t
    Definition: rpmio.h:25
    2ff057
    struct _FD_s * FD_t
    RPM IO file descriptor type.
    Definition: rpmtypes.h:98
    2ff057
    int Fseek(FD_t fd, off_t offset, int whence)
    fseek(3) clone.
    2ff057
    ssize_t Fwrite(const void *buf, size_t size, size_t nmemb, FD_t fd)
    Like fwrite(3) but with write(3)-style return values.
    2ff057
    FD_t Fdopen(FD_t ofd, const char *fmode)
    2ff057
    off_t ufdCopy(FD_t sfd, FD_t tfd)
    2ff057
    Cumulative statistics for an operation.
    Definition: rpmsw.h:42
    2ff057
    off_t Ftell(FD_t fd)
    ftell(3) clone.
    2ff057
    2ff057
    FD_t fdLink(FD_t fd)
    2ff057
    const char * Fstrerror(FD_t fd)
    strerror(3) clone.
    2ff057
    fdOpX_e
    Identify per-desciptor I/O operation statistics.
    Definition: rpmio.h:125
    2ff057
    FD_t fdDup(int fdno)
    2ff057
    2ff057
    FD_t Fopen(const char *path, const char *fmode)
    fopen(3) clone.
    2ff057
    2ff057
    int Fcntl(FD_t fd, int op, void *lip)
    fcntl(2) clone.
    2ff057
    2ff057
    int Ferror(FD_t fd)
    ferror(3) clone.
    2ff057
    int Fclose(FD_t fd)
    fclose(3) clone.
    2ff057
    2ff057
    2ff057

    <address class="footer"><small>
    2ff057
    Generated by  
    2ff057
    doxygen
    2ff057
     1.8.14
    2ff057
    </small></address>
    2ff057
    </body>
    2ff057
    </html>