Lines Matching defs:temp
42 char temp[80];
48 sprintf(temp, "%d", (evm_initialized & ~EVM_SETUP_COMPLETE));
49 rc = simple_read_from_buffer(buf, count, ppos, temp, strlen(temp));
130 char *temp;
145 temp = kmalloc(size + 1, GFP_KERNEL);
146 if (!temp) {
152 sprintf(temp + offset, "%s\n", xattr->name);
157 rc = simple_read_from_buffer(buf, count, ppos, temp, strlen(temp));
159 kfree(temp);