Searched refs:encrypted (Results 1 - 7 of 7) sorted by relevance

/xnu-2782.1.97/osfmk/vm/
H A Dvm_page.h277 encrypted:1, /* encrypted for secure swap (O) */ member in struct:vm_page
293 if ((page)->encrypted) { \
294 panic("VM page %p should not be encrypted here\n", \
299 #define ASSERT_PAGE_DECRYPTED(page) assert(!(page)->encrypted)
H A Dvm_resident.c571 m->encrypted = FALSE;
1693 if (!encrypted_ok && mem->encrypted) {
1694 panic("vm_page_rename: page %p is encrypted\n", mem);
2068 assert(!mem->encrypted);
2187 assert(!mem->encrypted);
2911 * The page could be encrypted, but
3690 * The source page should not be encrypted. The caller should
3719 * The source page should not be encrypted at this point.
3720 * The destination page will therefore not contain encrypted
3723 if (src_m->encrypted) {
[all...]
H A Dvm_pageout.c420 boolean_t vm_pages_encrypted = FALSE; /* are there encrypted pages ? */
2130 * because it is being encrypted (see
2299 * if it's being encrypted during a
4707 * Just mark the UPL as "encrypted" here.
4908 * the caller never sees encrypted data.
4910 if (! (cntrl_flags & UPL_ENCRYPT) && dst_page->encrypted) {
5017 * encrypted and the user would be very
5018 * confused to see encrypted data instead
5207 * The page is going to be encrypted when we
5210 dst_page->encrypted
[all...]
H A Dbsd_vm.c432 * encrypted swap pages
434 assert(!dst_page->encrypted);
H A Dvm_object.c5073 * object collapse, so we can just move an encrypted
5078 if (p->encrypted) {
6190 if (m->encrypted) {
6194 panic("vm_object_populate_with_private - %p encrypted", m);
8104 if (dst_page->encrypted) {
8107 * We need to decrypt this encrypted page before the
8111 * Otherwise, the page could get recycled or re-encrypted
8119 * not encrypted.
8140 * caller access an encrypted page.
8143 assert(!dst_page->encrypted);
[all...]
H A Dvm_fault.c1320 if (m->encrypted) {
1324 * encrypted before paging it out.
2177 * it's OK if the "copy_m" page is encrypted,
3586 if (m->encrypted) {
3590 * table) on an encrypted page.
5205 if ((m == VM_PAGE_NULL) || (m->busy) || (m->encrypted) ||
H A Dvm_map.c1439 * The user should never see encrypted data, so do not
1440 * enter an encrypted page in the page table.
1442 if (m == VM_PAGE_NULL || m->busy || m->encrypted ||
3384 * should not be encrypted. It wouldn't be safe
3385 * to enter it in a new VM object while encrypted.
8461 * shouldn't be encrypted. Otherwise, we
8463 * we don't want the user to see the encrypted

Completed in 126 milliseconds