Lines Matching refs:ntry
1640 hentry_t *ntry; in child_to_file() local
1657 ntry = iter_next(itr); in child_to_file()
1658 while (ntry != NULL) { in child_to_file()
1660 fentry.count = ntry->count; in child_to_file()
1661 s = ntry->key; in child_to_file()
1662 t = ntry->lib; in child_to_file()
1678 ntry = iter_next(itr); in child_to_file()
1712 hdntry_t ntry; in file_to_parent() local
1730 if (pread(sfd, &ntry, sizeof (hdntry_t), c_offset) != in file_to_parent()
1735 switch (ntry.type) { in file_to_parent()
1739 if (ntry.sz_lib > t_strsz) { in file_to_parent()
1740 t = my_realloc(t, ntry.sz_lib, NULL); in file_to_parent()
1741 t_strsz = ntry.sz_lib; in file_to_parent()
1747 if (pread(sfd, t, ntry.sz_lib, c_offset) != ntry.sz_lib) in file_to_parent()
1750 c_offset += ntry.sz_lib; in file_to_parent()
1754 if (ntry.sz_key > s_strsz) { in file_to_parent()
1755 s = my_realloc(s, ntry.sz_key, NULL); in file_to_parent()
1756 s_strsz = ntry.sz_key; in file_to_parent()
1759 if (pread(sfd, s, ntry.sz_key, c_offset) != ntry.sz_key) in file_to_parent()
1762 c_offset += ntry.sz_key; in file_to_parent()
1764 add_fcall(fcall_tbl, t, s, ntry.count); in file_to_parent()
1775 if (ntry.sz_key != bfsz) in file_to_parent()
1778 ncp = my_malloc(ntry.sz_key, NULL); in file_to_parent()
1780 if (pread(sfd, ncp, ntry.sz_key, c_offset) != in file_to_parent()
1781 ntry.sz_key) in file_to_parent()
1784 c_offset += ntry.sz_key; in file_to_parent()