Searched defs:cur_node (Results 1 - 6 of 6) sorted by relevance

/external/libxml2/doc/examples/
H A Dtree1.c33 xmlNode *cur_node = NULL; local
35 for (cur_node = a_node; cur_node; cur_node = cur_node->next) {
36 if (cur_node->type == XML_ELEMENT_NODE) {
37 printf("node type: Element, name: %s\n", cur_node->name);
40 print_element_names(cur_node->children);
/external/selinux/libsepol/src/
H A Dhierarchy.c270 cond_list_t *cur_node; local
277 for (cur_node = cond_list; cur_node; cur_node = cur_node->next) {
282 if (expand_cond_av_list(args->p, cur_node->true_list,
285 if (expand_cond_av_list(args->p, cur_node->false_list,
334 cond_list_t *cur_node; local
340 for (cur_node = cond_list; cur_node; cur_nod
[all...]
H A Dexpand.c2802 cond_node_t *cur_node; local
2831 for (cur_node = decl->cond_list; cur_node != NULL;
2832 cur_node = cur_node->next) {
2840 for (cur_expr = cur_node->expr; cur_expr != NULL;
2859 cur_node->flags &= ~COND_NODE_FLAGS_TUNABLE;
2865 cur_node->flags |= COND_NODE_FLAGS_TUNABLE;
2866 cur_state = cond_evaluate_expr(pol, cur_node->expr);
2875 cur_node
[all...]
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_deadlock_detector.h206 bool onLockBefore(DeadlockDetectorTLS<BV> *dtls, uptr cur_node) { argument
208 uptr cur_idx = nodeToIndex(cur_node);
216 // Add cur_node to the set of locks held currently by dtls.
217 void onLockAfter(DeadlockDetectorTLS<BV> *dtls, uptr cur_node, u32 stk = 0) { argument
219 uptr cur_idx = nodeToIndex(cur_node);
224 // Returns true if all edges from the currently held locks to cur_node exist.
225 bool hasAllEdges(DeadlockDetectorTLS<BV> *dtls, uptr cur_node) { argument
228 if (cur_node && local_epoch == current_epoch_ &&
229 local_epoch == nodeToEpoch(cur_node)) {
230 uptr cur_idx = nodeToIndexUnchecked(cur_node);
244 addEdges(DeadlockDetectorTLS<BV> *dtls, uptr cur_node, u32 stk, int unique_tid) argument
281 onLock(DeadlockDetectorTLS<BV> *dtls, uptr cur_node, u32 stk = 0) argument
294 onTryLock(DeadlockDetectorTLS<BV> *dtls, uptr cur_node, u32 stk = 0) argument
316 findPathToLock(DeadlockDetectorTLS<BV> *dtls, uptr cur_node, uptr *path, uptr path_size) argument
[all...]
/external/libxml2/
H A Dxmlreader.c1702 xmlNodePtr node, cur_node; local
1711 for (cur_node = reader->node->children; cur_node != NULL;
1712 cur_node = cur_node->next) {
1713 node = xmlDocCopyNode(cur_node, doc, 1);
/external/v8/src/heap/
H A Dspaces.cc2252 FreeListNode* cur_node = *cur; local
2253 while (cur_node != NULL &&
2254 Page::FromAddress(cur_node->address())->IsEvacuationCandidate()) {
2255 int size = reinterpret_cast<FreeSpace*>(cur_node)->Size();
2257 page = Page::FromAddress(cur_node->address());
2259 cur_node = cur_node->next();
2262 *cur = cur_node;
2263 if (cur_node == NULL) {

Completed in 364 milliseconds