Home
last modified time | relevance | path

Searched refs:systemType (Results 1 – 3 of 3) sorted by relevance

/developtools/syscap_codec/src/
Dcreate_pcid.c172 char *systemType = NULL; in CreatePCID() local
302 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() local
363 (pcidMain->systemType == 0b010 ? "small" : in DecodePCID()
364 (pcidMain->systemType == 0b100 ? "standard" : NULL)); in DecodePCID()
[all …]
/developtools/syscap_codec/include/
Dcreate_pcid.h26 uint16_t systemType : 3; member
35 uint16_t systemType : 3; member
/developtools/syscap_codec/interfaces/inner_api/
Dsyscap_interface.c54 uint16_t systemType : 3; member