Lines Matching refs:subsystem
223 uint64_t subsystem;
234 kcov_remote_find(uint64_t subsystem, uint64_t id)
239 if (kr->subsystem == subsystem && kr->id == id)
247 kcov_remote_register(uint64_t subsystem, uint64_t id)
253 if (kcov_remote_find(subsystem, id) != NULL) {
258 kr->subsystem = subsystem;
272 kcov_remote_enter(uint64_t subsystem, uint64_t id)
279 kr = kcov_remote_find(subsystem, id);
295 kcov_remote_leave(uint64_t subsystem, uint64_t id)
301 kr = kcov_remote_find(subsystem, id);
349 kr = kcov_remote_find(args->subsystem, args->id);