Lines Matching defs:dacInfo
575 AppSpawnMsgDacInfo *dacInfo = (AppSpawnMsgDacInfo *)GetAppProperty(property, TLV_DAC_INFO);
576 APPSPAWN_CHECK(dacInfo != NULL, return APPSPAWN_TLV_NONE,
595 if ((permissionNode->section.gidCount + dacInfo->gidCount) > APP_MAX_GIDS) {
597 GetProcessName(property), dacInfo->gidCount, permissionNode->section.gidCount);
598 copyLen = APP_MAX_GIDS - dacInfo->gidCount;
600 int ret = memcpy_s(&dacInfo->gidTable[dacInfo->gidCount], sizeof(gid_t) * copyLen,
608 dacInfo->gidCount += copyLen;
616 AppSpawnMsgDacInfo *dacInfo = (AppSpawnMsgDacInfo *)GetAppProperty(property, TLV_DAC_INFO);
617 APPSPAWN_CHECK(dacInfo != NULL, return APPSPAWN_TLV_NONE,
627 if ((sandboxNode->section.gidCount + dacInfo->gidCount) > APP_MAX_GIDS) {
630 dacInfo->gidCount,
632 copyLen = APP_MAX_GIDS - dacInfo->gidCount;
634 int ret = memcpy_s(&dacInfo->gidTable[dacInfo->gidCount], sizeof(gid_t) * copyLen,
641 dacInfo->gidCount += copyLen;