Lines Matching refs:time_end
3568 struct timespec time_start, time_end, total_start, total_end;
3721 clock_gettime(CLOCK_MONOTONIC, &time_end);
3722 dlopen_cost.entry_header_time = (time_end.tv_sec - time_start.tv_sec) * CLOCK_SECOND_TO_MILLI
3723 + (time_end.tv_nsec - time_start.tv_nsec) / CLOCK_NANO_TO_MILLI;
3729 clock_gettime(CLOCK_MONOTONIC, &time_end);
3730 dlopen_cost.deps_header_time = (time_end.tv_sec - time_start.tv_sec) * CLOCK_SECOND_TO_MILLI
3731 + (time_end.tv_nsec - time_start.tv_nsec) / CLOCK_NANO_TO_MILLI;
3738 clock_gettime(CLOCK_MONOTONIC, &time_end);
3739 dlopen_cost.map_so_time = (time_end.tv_sec - time_start.tv_sec) * CLOCK_SECOND_TO_MILLI
3740 + (time_end.tv_nsec - time_start.tv_nsec) / CLOCK_NANO_TO_MILLI;
3796 clock_gettime(CLOCK_MONOTONIC, &time_end);
3797 dlopen_cost.reloc_time = (time_end.tv_sec - time_start.tv_sec) * CLOCK_SECOND_TO_MILLI
3798 + (time_end.tv_nsec - time_start.tv_nsec) / CLOCK_NANO_TO_MILLI;
3820 clock_gettime(CLOCK_MONOTONIC, &time_end);
3821 dlopen_cost.map_cfi_time = (time_end.tv_sec - time_start.tv_sec) * CLOCK_SECOND_TO_MILLI
3822 + (time_end.tv_nsec - time_start.tv_nsec) / CLOCK_NANO_TO_MILLI;
3853 clock_gettime(CLOCK_MONOTONIC, &time_end);
3854 dlopen_cost.init_time = (time_end.tv_sec - time_start.tv_sec) * CLOCK_SECOND_TO_MILLI
3855 + (time_end.tv_nsec - time_start.tv_nsec) / CLOCK_NANO_TO_MILLI;