Lines Matching refs:extm
206 struct attrtm *extm; /* timestamp extended system attributes */ member
2461 rep->extm = xmalloc(sacnt * sizeof (struct attrtm), rep); in get_sysxattr()
2463 rep->extm[i].stm = 0; in get_sysxattr()
2464 rep->extm[i].nstm = 0; in get_sysxattr()
2465 rep->extm[i].name = NULL; in get_sysxattr()
2543 while (rep->extm[i].stm != 0 && i < sacnt) in set_sysattrtm_display()
2545 rep->extm[i].stm = value[0]; in set_sysattrtm_display()
2546 rep->extm[i].nstm = value[1]; in set_sysattrtm_display()
2547 rep->extm[i].name = xmalloc(len + 1, rep); in set_sysattrtm_display()
2548 (void) strlcpy(rep->extm[i].name, name, len + 1); in set_sysattrtm_display()
2581 if (p->extm != NULL) { in format_attrtime()
2583 if (p->extm[i].name != NULL) { in format_attrtime()
2600 format_time((time_t)p->extm[i].stm, (time_t)p->extm[i].nstm); in format_attrtime()
2627 if (p->extm != NULL) { in print_time()
2628 while (p->extm[i].nstm != 0 && i < sacnt) { in print_time()
2629 format_time(p->extm[i].stm, p->extm[i].nstm); in print_time()
2630 if (p->extm[i].name != NULL) { in print_time()
2633 p->extm[i].name, time_buf); in print_time()
3100 if (p->extm != NULL) { in free_sysattr()
3102 if (p->extm[i].name != NULL) in free_sysattr()
3103 free(p->extm[i].name); in free_sysattr()
3105 free(p->extm); in free_sysattr()