Lines Matching refs:path
103 uintptr_t *path; member
117 free(cur->path); in lockdep_bfs_queue_delete()
141 qe->path = malloc(sizeof(uintptr_t)); in lockdep_graph_get_shortest_cycle()
142 if (!qe->path) in lockdep_graph_get_shortest_cycle()
144 qe->path[0] = node->lock_id; in lockdep_graph_get_shortest_cycle()
165 tmp = realloc(qe->path, in lockdep_graph_get_shortest_cycle()
169 free(qe->path); in lockdep_graph_get_shortest_cycle()
173 qe->path = tmp; in lockdep_graph_get_shortest_cycle()
174 qe->path[nlen - 1] = 0; in lockdep_graph_get_shortest_cycle()
175 ret = qe->path; in lockdep_graph_get_shortest_cycle()
190 nqe->path = malloc(nlen * sizeof(uintptr_t)); in lockdep_graph_get_shortest_cycle()
191 if (!nqe->path) in lockdep_graph_get_shortest_cycle()
194 memcpy(nqe->path, qe->path, in lockdep_graph_get_shortest_cycle()
196 nqe->path[nlen - 1] = e->to->lock_id; in lockdep_graph_get_shortest_cycle()
200 free(qe->path); in lockdep_graph_get_shortest_cycle()