Lines Matching refs:err
63 NWC24Err err; in PostTestMsg() local
71 err = NWC24InitMsgObj( &msgObj, TEST_MSG_TYPE[iObj] ); in PostTestMsg()
72 if ( err != NWC24_OK ) in PostTestMsg()
74 OSReport( "NWC24InitMsgObj(): Error %d\n", err ); in PostTestMsg()
81 err = NWC24GetMyUserId( &uidTo ); in PostTestMsg()
82 if ( err != NWC24_OK ) in PostTestMsg()
84 OSReport( "NWC24GetMyUserId(): Error %d\n", err ); in PostTestMsg()
92 err = NWC24SetMsgToId( &msgObj, uidTo ); in PostTestMsg()
93 if ( err != NWC24_OK ) in PostTestMsg()
95 OSReport( "NWC24SetMsgToId(): Error %d\n", err ); in PostTestMsg()
100 err = NWC24SetMsgSubject( &msgObj, STR_TEST_SUBJECT[iObj], in PostTestMsg()
102 if ( err != NWC24_OK ) in PostTestMsg()
104 OSReport( "NWC24SetMsgSubject(): Error %d\n", err ); in PostTestMsg()
109 err = NWC24SetMsgText( &msgObj, STR_TEST_MSG_TEXT, in PostTestMsg()
112 if ( err != NWC24_OK ) in PostTestMsg()
114 OSReport( "NWC24SetMsgText(): Error %d\n", err ); in PostTestMsg()
119 err = NWC24CommitMsg( &msgObj ); in PostTestMsg()
120 if ( err != NWC24_OK ) in PostTestMsg()
122 OSReport( "NWC24CommitMsg(): Error %d\n", err ); in PostTestMsg()