Lines Matching defs:node
66 OH_ListInit(&block->node);
69 OH_ListAddTail(&reqNode->msgBlocks, &block->node);
76 struct ListNode *node = reqNode->msgBlocks.next;
77 while (node != &reqNode->msgBlocks) {
78 block = ListEntry(node, AppSpawnMsgBlock, node);
82 node = node->next;
90 struct ListNode *node = reqNode->msgBlocks.prev;
91 if (node != &reqNode->msgBlocks) {
92 block = ListEntry(node, AppSpawnMsgBlock, node);
97 static void FreeMsgBlock(ListNode *node)
99 AppSpawnMsgBlock *block = ListEntry(node, AppSpawnMsgBlock, node);
100 OH_ListRemove(node);
101 OH_ListInit(node);
294 APPSPAWN_CHECK(reqNode != NULL, return NULL, "Failed to create msg node for %{public}s", processName);
296 OH_ListInit(&reqNode->node);
351 "Failed to create msg node for %{public}s", processName);
534 APPSPAWN_CHECK(reqNode != NULL, return APPSPAWN_SYSTEM_ERROR, "Failed to create msg node");