LCOV - code coverage report
Current view: top level - strace_git - fallocate.c (source / functions) Hit Total Coverage
Test: strace-4.16.0.69.f1ea-dirty Code Coverage Lines: 8 8 100.0 %
Date: 2017-03-18 00:38:52 Functions: 1 1 100.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 0 0 -

           Branch data     Line data    Source code
       1                 :            : #include "defs.h"
       2                 :            : 
       3                 :            : #ifdef HAVE_LINUX_FALLOC_H
       4                 :            : # include <linux/falloc.h>
       5                 :            : #endif
       6                 :            : 
       7                 :            : #include "xlat/falloc_flags.h"
       8                 :            : 
       9                 :          6 : SYS_FUNC(fallocate)
      10                 :            : {
      11                 :            :         int argn;
      12                 :            : 
      13                 :            :         /* fd */
      14                 :          6 :         printfd(tcp, tcp->u_arg[0]);
      15                 :          6 :         tprints(", ");
      16                 :            : 
      17                 :            :         /* mode */
      18                 :          6 :         printflags(falloc_flags, tcp->u_arg[1], "FALLOC_FL_???");
      19                 :          6 :         tprints(", ");
      20                 :            : 
      21                 :            :         /* offset */
      22                 :          6 :         argn = printllval(tcp, "%lld, ", 2);
      23                 :            : 
      24                 :            :         /* len */
      25                 :          6 :         printllval(tcp, "%lld", argn);
      26                 :            : 
      27                 :          6 :         return RVAL_DECODED;
      28                 :            : }

Generated by: LCOV version 1.12