datablob          171 security/keys/encrypted-keys/encrypted.c static int datablob_parse(char *datablob, const char **format,
datablob          181 security/keys/encrypted-keys/encrypted.c 	keyword = strsep(&datablob, " \t");
datablob          189 security/keys/encrypted-keys/encrypted.c 	p = strsep(&datablob, " \t");
datablob          201 security/keys/encrypted-keys/encrypted.c 		*master_desc = strsep(&datablob, " \t");
datablob          220 security/keys/encrypted-keys/encrypted.c 		*decrypted_datalen = strsep(&datablob, " \t");
datablob          242 security/keys/encrypted-keys/encrypted.c 		*hex_encoded_iv = strsep(&datablob, " \t");
datablob          797 security/keys/encrypted-keys/encrypted.c 	char *datablob = NULL;
datablob          808 security/keys/encrypted-keys/encrypted.c 	datablob = kmalloc(datalen + 1, GFP_KERNEL);
datablob          809 security/keys/encrypted-keys/encrypted.c 	if (!datablob)
datablob          811 security/keys/encrypted-keys/encrypted.c 	datablob[datalen] = 0;
datablob          812 security/keys/encrypted-keys/encrypted.c 	memcpy(datablob, prep->data, datalen);
datablob          813 security/keys/encrypted-keys/encrypted.c 	ret = datablob_parse(datablob, &format, &master_desc,
datablob          833 security/keys/encrypted-keys/encrypted.c 	kzfree(datablob);
datablob          864 security/keys/trusted.c static int datablob_parse(char *datablob, struct trusted_key_payload *p,
datablob          874 security/keys/trusted.c 	c = strsep(&datablob, " \t");
datablob          881 security/keys/trusted.c 		c = strsep(&datablob, " \t");
datablob          888 security/keys/trusted.c 		ret = getoptions(datablob, p, o);
datablob          895 security/keys/trusted.c 		c = strsep(&datablob, " \t");
datablob          904 security/keys/trusted.c 		ret = getoptions(datablob, p, o);
datablob          911 security/keys/trusted.c 		ret = getoptions(datablob, p, o);
datablob          972 security/keys/trusted.c 	char *datablob;
datablob          985 security/keys/trusted.c 	datablob = kmalloc(datalen + 1, GFP_KERNEL);
datablob          986 security/keys/trusted.c 	if (!datablob)
datablob          988 security/keys/trusted.c 	memcpy(datablob, prep->data, datalen);
datablob          989 security/keys/trusted.c 	datablob[datalen] = '\0';
datablob         1002 security/keys/trusted.c 	key_cmd = datablob_parse(datablob, payload, options);
datablob         1048 security/keys/trusted.c 	kzfree(datablob);
datablob         1074 security/keys/trusted.c 	char *datablob;
datablob         1085 security/keys/trusted.c 	datablob = kmalloc(datalen + 1, GFP_KERNEL);
datablob         1086 security/keys/trusted.c 	if (!datablob)
datablob         1099 security/keys/trusted.c 	memcpy(datablob, prep->data, datalen);
datablob         1100 security/keys/trusted.c 	datablob[datalen] = '\0';
datablob         1101 security/keys/trusted.c 	ret = datablob_parse(datablob, new_p, new_o);
datablob         1138 security/keys/trusted.c 	kzfree(datablob);