Symbol: DPL_USER
headers/private/kernel/arch/x86/32/descriptors.h
40
#define USER_CODE_SELECTOR ((USER_CODE_SEGMENT << 3) | DPL_USER)
headers/private/kernel/arch/x86/32/descriptors.h
41
#define USER_DATA_SELECTOR ((USER_DATA_SEGMENT << 3) | DPL_USER)
headers/private/kernel/arch/x86/64/descriptors.h
22
#define USER32_CODE_SELECTOR ((USER32_CODE_SEGMENT << 3) | DPL_USER)
headers/private/kernel/arch/x86/64/descriptors.h
23
#define USER_CODE_SELECTOR ((USER_CODE_SEGMENT << 3) | DPL_USER)
headers/private/kernel/arch/x86/64/descriptors.h
24
#define USER_DATA_SELECTOR ((USER_DATA_SEGMENT << 3) | DPL_USER)
headers/private/kernel/arch/x86/64/iframe.h
46
#define IFRAME_IS_USER(f) (((f)->cs & DPL_USER) == DPL_USER)
src/system/boot/arch/m68k/mmu.cpp
478
DPL_USER);
src/system/boot/arch/m68k/mmu.cpp
482
DPL_USER);
src/system/boot/platform/amiga_m68k/mmu.cpp
478
DPL_USER);
src/system/boot/platform/amiga_m68k/mmu.cpp
482
DPL_USER);
src/system/boot/platform/atari_m68k/mmu.cpp
479
DPL_USER);
src/system/boot/platform/atari_m68k/mmu.cpp
483
DPL_USER);
src/system/boot/platform/bios_ia32/long.cpp
80
DPL_USER);
src/system/boot/platform/bios_ia32/long.cpp
82
DPL_USER);
src/system/boot/platform/bios_ia32/mmu.cpp
584
DT_CODE_READABLE, DPL_USER);
src/system/boot/platform/bios_ia32/mmu.cpp
588
DT_DATA_WRITEABLE, DPL_USER);
src/system/boot/platform/efi/arch/x86/arch_mmu.cpp
124
DT_CODE_READABLE, DPL_USER);
src/system/boot/platform/efi/arch/x86/arch_mmu.cpp
128
DT_DATA_WRITEABLE, DPL_USER);
src/system/boot/platform/efi/arch/x86_64/arch_mmu.cpp
57
DPL_USER);
src/system/boot/platform/efi/arch/x86_64/arch_mmu.cpp
59
DPL_USER);
src/system/kernel/arch/x86/32/descriptors.cpp
264
DT_CODE_READABLE, DPL_USER);
src/system/kernel/arch/x86/32/descriptors.cpp
266
DT_DATA_WRITEABLE, DPL_USER);
src/system/kernel/arch/x86/32/descriptors.cpp
285
DT_DATA_WRITEABLE, DPL_USER);
src/system/kernel/arch/x86/32/descriptors.cpp
84
set_gate(&sIDTs[cpu][n], (unsigned int)addr, 15, DPL_USER);
src/system/kernel/arch/x86/32/thread.cpp
108
set_fs_register((USER_TLS_SEGMENT << 3) | DPL_USER);