Lines Matching refs:extm
207 struct attrtm *extm; /* timestamp extended system attributes */ member
2547 rep->extm = xmalloc(sacnt * sizeof (struct attrtm), rep); in get_sysxattr()
2549 rep->extm[i].stm = 0; in get_sysxattr()
2550 rep->extm[i].nstm = 0; in get_sysxattr()
2551 rep->extm[i].name = NULL; in get_sysxattr()
2629 while (rep->extm[i].stm != 0 && i < sacnt) in set_sysattrtm_display()
2631 rep->extm[i].stm = value[0]; in set_sysattrtm_display()
2632 rep->extm[i].nstm = value[1]; in set_sysattrtm_display()
2633 rep->extm[i].name = xmalloc(len + 1, rep); in set_sysattrtm_display()
2634 (void) strlcpy(rep->extm[i].name, name, len + 1); in set_sysattrtm_display()
2667 if (p->extm != NULL) { in format_attrtime()
2669 if (p->extm[i].name != NULL) { in format_attrtime()
2686 format_time((time_t)p->extm[i].stm, (time_t)p->extm[i].nstm); in format_attrtime()
2713 if (p->extm != NULL) { in print_time()
2714 while (p->extm[i].nstm != 0 && i < sacnt) { in print_time()
2715 format_time(p->extm[i].stm, p->extm[i].nstm); in print_time()
2716 if (p->extm[i].name != NULL) { in print_time()
2719 p->extm[i].name, time_buf); in print_time()
3186 if (p->extm != NULL) { in free_sysattr()
3188 if (p->extm[i].name != NULL) in free_sysattr()
3189 free(p->extm[i].name); in free_sysattr()
3191 free(p->extm); in free_sysattr()