Lines Matching refs:createObjectInfo

949 #define setMessageCreateObjectInfo( createObjectInfo, a1 ) \  argument
951 memset( createObjectInfo, 0, sizeof( MESSAGE_CREATEOBJECT_INFO ) ); \
952 ( createObjectInfo )->cryptHandle = CRYPT_ERROR; \
953 ( createObjectInfo )->cryptOwner = CRYPT_ERROR; \
954 ( createObjectInfo )->arg1 = ( a1 ); \
955 ANALYSER_HINT( isHandleRangeValid( ( createObjectInfo )->cryptHandle ) ); \
958 #define setMessageCreateObjectIndirectInfo( createObjectInfo, data, dataLen, type ) \ argument
960 memset( createObjectInfo, 0, sizeof( MESSAGE_CREATEOBJECT_INFO ) ); \
961 ( createObjectInfo )->cryptHandle = CRYPT_ERROR; \
962 ( createObjectInfo )->cryptOwner = CRYPT_ERROR; \
963 ( createObjectInfo )->strArg1 = ( data ); \
964 ( createObjectInfo )->strArgLen1 = ( dataLen ); \
965 ( createObjectInfo )->arg1 = ( type ); \
966 ANALYSER_HINT( isHandleRangeValid( ( createObjectInfo )->cryptHandle ) ); \
969 #define setMessageCreateObjectIndirectInfoEx( createObjectInfo, data, dataLen, type, options ) \ argument
971 memset( createObjectInfo, 0, sizeof( MESSAGE_CREATEOBJECT_INFO ) ); \
972 ( createObjectInfo )->cryptHandle = CRYPT_ERROR; \
973 ( createObjectInfo )->cryptOwner = CRYPT_ERROR; \
974 ( createObjectInfo )->strArg1 = ( data ); \
975 ( createObjectInfo )->strArgLen1 = ( dataLen ); \
976 ( createObjectInfo )->arg1 = ( type ); \
977 ( createObjectInfo )->arg3 = ( options ); \
978 ANALYSER_HINT( isHandleRangeValid( ( createObjectInfo )->cryptHandle ) ); \
981 #define updateMessageCreateObjectIndirectInfo( createObjectInfo, idType, id, idLength ) \ argument
983 ( createObjectInfo )->arg2 = ( idType ); \
984 ( createObjectInfo )->strArg2 = ( id ); \
985 ( createObjectInfo )->strArgLen2 = ( idLength ); \