Lines Matching refs:result
12 int result )
22 …dtls_base64_encode( dst_str, dst_buf_size, &len, src_str, strlen( (char *) src_str ) ) == result );
23 if( result == 0 )
31 void mbedtls_base64_decode( char *src_string, char *dst_string, int result )
43 TEST_ASSERT( res == result );
44 if( result == 0 )
53 int result )
61 TEST_ASSERT( mbedtls_base64_encode( res, dst_buf_size, &len, src, src_len ) == result );
62 if( result == 0 )
76 int result )
85 strlen( src ) ) == result );
86 if( result == 0 )
99 void base64_decode_hex_src( char *src_hex, char *dst_ref, int result )
107 TEST_ASSERT( mbedtls_base64_decode( dst, sizeof( dst ), &len, src, src_len ) == result );
108 if( result == 0 )