Searched refs:str_ptr (Results 1 – 1 of 1) sorted by relevance
1046 const char *str_ptr = oid_str; in mbedtls_oid_from_numeric_string() local1081 ret = oid_parse_number(&component1, &str_ptr, str_bound); in mbedtls_oid_from_numeric_string()1090 if (str_ptr >= str_bound || *str_ptr != '.') { in mbedtls_oid_from_numeric_string()1094 str_ptr++; in mbedtls_oid_from_numeric_string()1096 ret = oid_parse_number(&component2, &str_ptr, str_bound); in mbedtls_oid_from_numeric_string()1105 if (str_ptr < str_bound) { in mbedtls_oid_from_numeric_string()1106 if (*str_ptr == '.') { in mbedtls_oid_from_numeric_string()1107 str_ptr++; in mbedtls_oid_from_numeric_string()1124 while (str_ptr < str_bound) { in mbedtls_oid_from_numeric_string()1125 ret = oid_parse_number(&val, &str_ptr, str_bound); in mbedtls_oid_from_numeric_string()[all …]