Searched refs:str_o (Results 1 – 1 of 1) sorted by relevance
/linux-4.19.296/fs/udf/ |
D | unicode.c | 90 static int udf_name_conv_char(uint8_t *str_o, int str_o_max_len, in udf_name_conv_char() argument 129 len = conv_f(c, &str_o[*str_o_idx], in udf_name_conv_char() 132 len = utf32_to_utf8(c, &str_o[*str_o_idx], in udf_name_conv_char() 144 str_o[(*str_o_idx)++] = ILLEGAL_CHAR_MARK; in udf_name_conv_char() 152 uint8_t *str_o, int str_max_len, in udf_name_from_CS0() argument 176 memset(str_o, 0, str_max_len); in udf_name_from_CS0() 187 memset(str_o, 0, str_max_len); in udf_name_from_CS0() 239 if (!udf_name_conv_char(str_o, str_max_len, &str_o_len, in udf_name_from_CS0() 250 if (str_o_len > 0 && str_o_len <= 2 && str_o[0] == '.' && in udf_name_from_CS0() 251 (str_o_len == 1 || str_o[1] == '.')) in udf_name_from_CS0() [all …]
|