Searched refs:systemType (Results 1 – 3 of 3) sorted by relevance
172 char *systemType = NULL; in CreatePCID() local302 systemType = jsonSyscapObj->valuestring; in CreatePCID()303 pcidBuffer->systemType = !strcmp(systemType, "mini") ? 0b001 : in CreatePCID()304 (!strcmp(systemType, "small") ? 0b010 : in CreatePCID()305 (!strcmp(systemType, "standard") ? 0b100 : 0)); in CreatePCID()306 if (pcidBuffer->systemType == 0) { in CreatePCID()307 PRINT_ERR("\"system_type\" is invaild, systemType = \"%s\"\n", systemType); in CreatePCID()362 char *systemType = pcidMain->systemType == 0b001 ? "mini" : in DecodePCID() local363 (pcidMain->systemType == 0b010 ? "small" : in DecodePCID()364 (pcidMain->systemType == 0b100 ? "standard" : NULL)); in DecodePCID()[all …]
26 uint16_t systemType : 3; member35 uint16_t systemType : 3; member
54 uint16_t systemType : 3; member