Home
last modified time | relevance | path

Searched refs:temp (Results 1 – 6 of 6) sorted by relevance

/security/integrity/evm/
Devm_secfs.c35 char temp[80]; in evm_read_key() local
41 sprintf(temp, "%d", evm_initialized); in evm_read_key()
42 rc = simple_read_from_buffer(buf, count, ppos, temp, strlen(temp)); in evm_read_key()
62 char temp[80]; in evm_write_key() local
68 if (count >= sizeof(temp) || count == 0) in evm_write_key()
71 if (copy_from_user(temp, buf, count) != 0) in evm_write_key()
74 temp[count] = '\0'; in evm_write_key()
76 if ((sscanf(temp, "%d", &i) != 1) || (i != 1)) in evm_write_key()
/security/smack/
Dsmackfs.c1032 char temp[80]; in smk_read_doi() local
1038 sprintf(temp, "%d", smk_cipso_doi_value); in smk_read_doi()
1039 rc = simple_read_from_buffer(buf, count, ppos, temp, strlen(temp)); in smk_read_doi()
1056 char temp[80]; in smk_write_doi() local
1062 if (count >= sizeof(temp) || count == 0) in smk_write_doi()
1065 if (copy_from_user(temp, buf, count) != 0) in smk_write_doi()
1068 temp[count] = '\0'; in smk_write_doi()
1070 if (sscanf(temp, "%d", &i) != 1) in smk_write_doi()
1098 char temp[80]; in smk_read_direct() local
1104 sprintf(temp, "%d", smack_cipso_direct); in smk_read_direct()
[all …]
/security/selinux/ss/
Dhashtab.c96 struct hashtab_node *cur, *temp; in hashtab_destroy() local
104 temp = cur; in hashtab_destroy()
106 kfree(temp); in hashtab_destroy()
Dsidtab.c270 struct sidtab_node *cur, *temp; in sidtab_destroy() local
278 temp = cur; in sidtab_destroy()
280 context_destroy(&temp->context); in sidtab_destroy()
281 kfree(temp); in sidtab_destroy()
Davtab.c243 struct avtab_node *cur, *temp; in avtab_destroy() local
251 temp = cur; in avtab_destroy()
253 if (temp->key.specified & AVTAB_XPERMS) in avtab_destroy()
255 temp->datum.u.xperms); in avtab_destroy()
256 kmem_cache_free(avtab_node_cachep, temp); in avtab_destroy()
Debitmap.c333 struct ebitmap_node *n, *temp; in ebitmap_destroy() local
340 temp = n; in ebitmap_destroy()
342 kfree(temp); in ebitmap_destroy()