OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ldt_entry
(Results
1 - 2
of
2
) sorted by null
/art/runtime/arch/x86/
thread_x86.cc
76
entry_number = i386_set_ldt(LDT_AUTO_ALLOC, reinterpret_cast<
ldt_entry
*>(&entry), 1);
97
user_desc
ldt_entry
;
local
98
memset(&
ldt_entry
, 0, sizeof(
ldt_entry
));
99
ldt_entry
.entry_number = entry_number;
100
ldt_entry
.base_addr = base;
101
ldt_entry
.limit = limit;
102
ldt_entry
.seg_32bit = seg_32bit;
103
ldt_entry
.contents = contents;
104
ldt_entry
.read_exec_only = read_exec_only
[
all
...]
/external/valgrind/main/none/tests/x86-linux/
seg_override.c
35
}
LDT_ENTRY
;
37
inline static void *wine_ldt_get_base( const
LDT_ENTRY
*ent )
43
inline static unsigned int wine_ldt_get_limit( const
LDT_ENTRY
*ent )
52
LDT_ENTRY
ldt_copy[8192];
61
res = __modify_ldt( 0, ldt_copy, 8192*sizeof(
LDT_ENTRY
) );
91
struct modify_ldt_ldt_s
ldt_entry
;
local
94
memset(&
ldt_entry
, 0, sizeof(
ldt_entry
));
96
ldt_entry
.entry_number = 1;
97
ldt_entry
.base_addr = (unsigned)base; //0x12345678
[
all
...]
Completed in 46 milliseconds