Home
last modified time | relevance | path

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

/openbmc/libbej/src/
H A Dbej_encoder_core.c318 NULL_CHECK(dictionaries, "dictionaries"); in bejEncode()
319 NULL_CHECK(dictionaries->schemaDictionary, "schemaDictionary"); in bejEncode()
320 NULL_CHECK(dictionaries->annotationDictionary, "annotationDictionary"); in bejEncode()
322 NULL_CHECK(root, "root"); in bejEncode()
324 NULL_CHECK(output, "output"); in bejEncode()
325 NULL_CHECK(stack, "stack"); in bejEncode()
H A Dbej_decoder_core.c826 NULL_CHECK(dictionaries, "dictionaries"); in bejDecodePldmBlock()
827 NULL_CHECK(dictionaries->schemaDictionary, "schemaDictionary"); in bejDecodePldmBlock()
828 NULL_CHECK(dictionaries->annotationDictionary, "annotationDictionary"); in bejDecodePldmBlock()
830 NULL_CHECK(encodedPldmBlock, "encodedPldmBlock"); in bejDecodePldmBlock()
832 NULL_CHECK(stackCallback, "stackCallback"); in bejDecodePldmBlock()
833 NULL_CHECK(stackCallback->stackEmpty, "stackEmpty"); in bejDecodePldmBlock()
834 NULL_CHECK(stackCallback->stackPeek, "stackPeek"); in bejDecodePldmBlock()
835 NULL_CHECK(stackCallback->stackPop, "stackPop"); in bejDecodePldmBlock()
836 NULL_CHECK(stackCallback->stackPush, "stackPush"); in bejDecodePldmBlock()
838 NULL_CHECK(decodedCallback, "decodedCallback"); in bejDecodePldmBlock()
H A Dbej_dictionary.c122 NULL_CHECK(property, "property in bejDictGetPropertyByName"); in bejDictGetPropertyByName()
/openbmc/libbej/include/libbej/
H A Dbej_common.h36 #define NULL_CHECK(param, structStr) \ macro