Lines Matching refs:fentry
1635 hdntry_t fentry; in child_to_file() local
1653 fentry.type = HD_hashntry; in child_to_file()
1654 fentry.count = ntry->count; in child_to_file()
1659 fentry.sz_key = i; in child_to_file()
1660 fentry.sz_lib = j; in child_to_file()
1661 if (i + sizeof (fentry) > bufsz) { in child_to_file()
1662 buf = my_realloc(buf, i + j + sizeof (fentry), in child_to_file()
1664 bufsz = i + j + sizeof (fentry); in child_to_file()
1666 (void) memcpy(buf, &fentry, sizeof (fentry)); in child_to_file()
1667 (void) strlcpy((char *)(buf + sizeof (fentry)), t, j); in child_to_file()
1668 (void) strlcpy((char *)(buf + sizeof (fentry) + j), in child_to_file()
1670 if (write(sfd, buf, sizeof (fentry) + i + j) == -1) in child_to_file()
1678 bufsz = sizeof (fentry) + (sizeof (struct counts) + maxsyscalls() * in child_to_file()
1681 fentry.type = HD_cts_syscts; in child_to_file()
1682 fentry.count = 0; /* undefined, really */ in child_to_file()
1683 fentry.sz_key = bufsz - sizeof (fentry); in child_to_file()
1684 fentry.sz_lib = 0; /* also undefined */ in child_to_file()
1685 (void) memcpy(buf, &fentry, sizeof (fentry)); in child_to_file()
1686 (void) memcpy((char *)(buf + sizeof (fentry)), Cp, in child_to_file()
1687 bufsz - sizeof (fentry)); in child_to_file()