Searched refs:pszReply (Results 1 – 3 of 3) sorted by relevance
232 char *pszReply = NULL; in getReply() local238 pszReply = (char *)calloc( iReplyLen, 1 ); in getReply()239 if ( !pszReply ) in getReply()243 pszReply = fgets( pszReply, iReplyLen, stdin ); in getReply()244 if ( !pszReply ) in getReply()248 if ( ( pszReply[ a_iMaxLen ] != '\n' ) && ( pszReply[ a_iMaxLen ] != '\0' ) ) { in getReply()249 free( pszReply ); in getReply()250 pszReply = NULL; in getReply()255 if ( pszReply[ iReplyLen ] == '\0' ) in getReply()258 if ( pszReply[ iReplyLen ] == '\n' ) in getReply()[all …]
106 char *pszReply = NULL; in main() local130 pszReply = getReply( TOKEN_CLEAR_PROMPT, 1 ); in main()131 if ( !pszReply || in main()132 ( strlen( pszReply ) == 0 ) || in main()133 ( strcasecmp( pszReply, TOKEN_CLEAR_NO ) == 0 ) ) { in main()216 free( pszReply ); in main()
247 char *pszReply = NULL; in checkExistingObjects() local259 pszReply = getReply( szPrompt, 1 ); in checkExistingObjects()260 if ( !pszReply || in checkExistingObjects()261 ( strlen( pszReply ) == 0 ) || in checkExistingObjects()262 ( strcasecmp( pszReply, TOKEN_ID_NO ) == 0 ) ) { in checkExistingObjects()273 free( pszReply ); in checkExistingObjects()940 char *pszReply = NULL; in getSubjectId() local955 pszReply = getReply( TOKEN_ID_MISSING_PROMPT, 1 ); in getSubjectId()956 if ( !pszReply || in getSubjectId()957 ( strlen( pszReply ) == 0 ) || in getSubjectId()[all …]