Lines Matching refs:asciiblob_len
271 size_t asciiblob_len) in datablob_format() argument
278 ascii_buf = kmalloc(asciiblob_len + 1, GFP_KERNEL); in datablob_format()
282 ascii_buf[asciiblob_len] = '\0'; in datablob_format()
290 for (i = 0; i < (asciiblob_len - len) / 2; i++) in datablob_format()
909 size_t asciiblob_len; in encrypted_read() local
915 asciiblob_len = epayload->datablob_len + ivsize + 1 in encrypted_read()
919 if (!buffer || buflen < asciiblob_len) in encrypted_read()
920 return asciiblob_len; in encrypted_read()
938 ascii_buf = datablob_format(epayload, asciiblob_len); in encrypted_read()
948 memcpy(buffer, ascii_buf, asciiblob_len); in encrypted_read()
951 return asciiblob_len; in encrypted_read()