Lines Matching defs:time_start
3568 struct timespec time_start, time_end, total_start, total_end;
3698 clock_gettime(CLOCK_MONOTONIC, &time_start);
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;
3727 clock_gettime(CLOCK_MONOTONIC, &time_start);
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;
3736 clock_gettime(CLOCK_MONOTONIC, &time_start);
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;
3792 clock_gettime(CLOCK_MONOTONIC, &time_start);
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;
3815 clock_gettime(CLOCK_MONOTONIC, &time_start);
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;
3847 clock_gettime(CLOCK_MONOTONIC, &time_start);
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;