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;
149 temp = kmalloc(size + 1, GFP_KERNEL);
150 if (!temp) {
159 sprintf(temp + offset, "%s\n", xattr->name);
164 rc = simple_read_from_buffer(buf, count, ppos, temp, strlen(temp));
166 kfree(temp);