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