Lines Matching full:caller
53 void *caller;
57 static struct gtod_log *find_hash(void *caller)
59 unsigned long h = hash_ptr(caller, HASH_BITS);
66 if (log->caller == caller)
73 static void inc_caller(void *caller)
75 struct gtod_log *log = find_hash(caller);
82 log->caller = caller;
85 h = hash_ptr(caller, HASH_BITS);
92 static void gtod_log_caller(void *caller)
95 inc_caller(caller);
110 printf("function %p, calls %lu\n", log->caller,
208 void fio_gettime(struct timeval *tp, void *caller)
210 void fio_gettime(struct timeval *tp, void fio_unused *caller)
214 if (!caller)
215 caller = __builtin_return_address(0);
217 gtod_log_caller(caller);