Lines Matching defs:ntry
1634 hentry_t *ntry;
1651 ntry = iter_next(itr);
1652 while (ntry != NULL) {
1654 fentry.count = ntry->count;
1655 s = ntry->key;
1656 t = ntry->lib;
1672 ntry = iter_next(itr);
1706 hdntry_t ntry;
1724 if (pread(sfd, &ntry, sizeof (hdntry_t), c_offset) !=
1729 switch (ntry.type) {
1733 if (ntry.sz_lib > t_strsz) {
1734 t = my_realloc(t, ntry.sz_lib, NULL);
1735 t_strsz = ntry.sz_lib;
1741 if (pread(sfd, t, ntry.sz_lib, c_offset) != ntry.sz_lib)
1744 c_offset += ntry.sz_lib;
1748 if (ntry.sz_key > s_strsz) {
1749 s = my_realloc(s, ntry.sz_key, NULL);
1750 s_strsz = ntry.sz_key;
1753 if (pread(sfd, s, ntry.sz_key, c_offset) != ntry.sz_key)
1756 c_offset += ntry.sz_key;
1758 add_fcall(fcall_tbl, t, s, ntry.count);
1769 if (ntry.sz_key != bfsz)
1772 ncp = my_malloc(ntry.sz_key, NULL);
1774 if (pread(sfd, ncp, ntry.sz_key, c_offset) !=
1775 ntry.sz_key)
1778 c_offset += ntry.sz_key;