Home
last modified time | relevance | path

Searched refs:BEGET_INFO_CHECK (Results 1 – 4 of 4) sorted by relevance

/base/startup/init/services/sandbox/
Dsandbox.c228 BEGET_INFO_CHECK(srcPath != NULL, return 0, "Get src-path is null"); in AddMountInfoToSandbox()
230 BEGET_INFO_CHECK(dstPath != NULL, return 0, "Get sandbox-path is null"); in AddMountInfoToSandbox()
232 BEGET_INFO_CHECK(obj != NULL, return 0, "Get sandbox-flags is null"); in AddMountInfoToSandbox()
234 BEGET_INFO_CHECK(ret, return 0, "Sandbox-flags is not array"); in AddMountInfoToSandbox()
236 BEGET_INFO_CHECK(count > 0, return 0, "Get sandbox-flags array size is zero"); in AddMountInfoToSandbox()
540BEGET_INFO_CHECK(sandbox->isCreated == false, return 0, "Sandbox %s already created", sandbox->nam… in PrepareSandbox()
/base/startup/init/interfaces/innerkits/fs_manager/
Dfstab_mount.c302 BEGET_INFO_CHECK(GetParameterFromCmdLine(slotInfoName, value, MAX_BUFFER_LEN) == 0, in GetSlotInfoFromCmdLine()
320 BEGET_INFO_CHECK(read(fd, &slotInfo, sizeof(slotInfo)) == size, close(fd); return -1, in GetSlotInfoFromBootctrl()
427 BEGET_INFO_CHECK(bootSlots <= 1, AdjustPartitionNameByPartitionSlot(item), in CheckRequiredAndMount()
Dfstab.c510 BEGET_INFO_CHECK(ret == 0, ret = GetBlockDeviceByName(partName, fstab, path, size), in GetBlockDevicePath()
/base/startup/init/interfaces/innerkits/include/
Dbeget_ext.h126 #define BEGET_INFO_CHECK(ret, statement, format, ...) \ macro