| Line | Source | Count |
| 1 | | - |
| 2 | | - |
| 3 | | - |
| 4 | int | - |
| 5 | fdutimensat (int fd, int dir, char const *file, struct timespec const ts[2], | - |
| 6 | int atflag) | - |
| 7 | { | - |
| 8 | int result = 1; | - |
| 9 | if (0 <= fd| TRUE | evaluated 222825 times by 1 test | | FALSE | evaluated 32 times by 1 test |
) | 32-222825 |
| 10 | result = futimens (fd, ts);executed 222825 times by 1 test: result = futimens (fd, ts); | 222825 |
| 11 | if (file| TRUE | evaluated 222849 times by 1 test | | FALSE | evaluated 8 times by 1 test |
&& (fd < 0| TRUE | evaluated 32 times by 1 test | | FALSE | evaluated 222817 times by 1 test |
|| (result == -1| TRUE | never evaluated | | FALSE | evaluated 222817 times by 1 test |
&& | 0-222849 |
| 12 | (*| TRUE | never evaluated | | FALSE | never evaluated |
__errno_location ()) | TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 13 | == | TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 14 | 38| TRUE | never evaluated | | FALSE | never evaluated |
| 0 |
| 15 | ))) | - |
| 16 | result = utimensat (dir, file, ts, atflag);executed 32 times by 1 test: result = utimensat (dir, file, ts, atflag); | 32 |
| 17 | if (result == 1| TRUE | never evaluated | | FALSE | evaluated 222857 times by 1 test |
) | 0-222857 |
| 18 | { | - |
| 19 | | - |
| 20 | (*__errno_location ()) | - |
| 21 | = | - |
| 22 | 9 | - |
| 23 | ; | - |
| 24 | result = -1; | - |
| 25 | } never executed: end of block | 0 |
| 26 | returnexecuted 222857 times by 1 test: return result; result;executed 222857 times by 1 test: return result; | 222857 |
| 27 | } | - |
| | |