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