Lines Matching refs:front
82 OH_ListAddWithOrder(&queue->front, &node->node, SandboxNodeCompareProc);
111 ListNode *node = OH_ListFind(§ion->front, (void *)&pathNode, PathMountNodeCompare);
126 ListNode *node = OH_ListFind(§ion->front, (void *)&linkNode, SymbolLinkNodeCompare);
155 if (section == NULL || ListEmpty(section->front)) {
158 return (SandboxMountNode *)ListEntry(section->front.next, SandboxMountNode, node);
196 OH_ListInit(§ion->front);
230 ListNode *node = section->front.next;
231 while (node != §ion->front) {
238 node = section->front.next;
242 static void DumpSandboxQueue(const ListNode *front,
246 ListNode *node = front->next;
247 while (node != front) {
272 DumpSandboxQueue(§ion->front, DumpSandboxMountNode);
310 ListNode *node = OH_ListFind(&queue->front, (void *)name, SandboxConditionalNodeCompareName);
321 OH_ListAddWithOrder(&queue->front, &node->sandboxNode.node, SandboxConditionalNodeCompareNode);
337 ListNode *node = queue->front.next;
338 while (node != &queue->front) {
342 node = queue->front.next;
425 OH_ListInit(&queue->front);
478 DumpSandboxQueue(&sandbox->requiredQueue.front, DumpSandboxSectionNode);
479 DumpSandboxQueue(&sandbox->packageNameQueue.front, DumpSandboxSectionNode);
480 DumpSandboxQueue(&sandbox->permissionQueue.front, DumpSandboxPermission);
481 DumpSandboxQueue(&sandbox->spawnFlagsQueue.front, DumpSandboxSectionNode);
482 DumpSandboxQueue(&sandbox->nameGroupsQueue.front, DumpSandboxNameGroupNode);
580 ListNode *node = sandbox->permissionQueue.front.next;
581 while (node != &sandbox->permissionQueue.front) {