Home
last modified time | relevance | path

Searched refs:InitialTeb (Results 1 – 12 of 12) sorted by relevance

/reactos/sdk/lib/rtl/
H A Dthread.c27 OUT PINITIAL_TEB InitialTeb) in RtlpCreateUserStack() argument
96 InitialTeb->PreviousStackBase = NULL; in RtlpCreateUserStack()
97 InitialTeb->PreviousStackLimit = NULL; in RtlpCreateUserStack()
129 InitialTeb->StackLimit = (PVOID)Stack; in RtlpCreateUserStack()
143 InitialTeb->StackLimit = (PVOID)((ULONG_PTR)InitialTeb->StackLimit + in RtlpCreateUserStack()
154 IN PINITIAL_TEB InitialTeb) in RtlpFreeUserStack() argument
165 RtlZeroMemory(InitialTeb, sizeof(*InitialTeb)); in RtlpFreeUserStack()
231 INITIAL_TEB InitialTeb; in RtlCreateUserThread() local
240 &InitialTeb); in RtlCreateUserThread()
248 InitialTeb.StackBase); in RtlCreateUserThread()
[all …]
/reactos/modules/rostests/apitests/ntdll/
H A DNtCreateThread.c13 INITIAL_TEB InitialTeb; in START_TEST() local
18 ZeroMemory(&InitialTeb, sizeof(INITIAL_TEB)); in START_TEST()
26 &InitialTeb, in START_TEST()
/reactos/sdk/lib/rtl/i386/
H A Dthread.c31 IN PINITIAL_TEB InitialTeb) in RtlInitializeContext() argument
34 ProcessHandle, ThreadContext, InitialTeb); in RtlInitializeContext()
61 ThreadContext->Esp = (ULONG)InitialTeb; in RtlInitializeContext()
/reactos/dll/win32/kernel32/client/
H A Dutils.c358 _Out_ PINITIAL_TEB InitialTeb) in BaseCreateStack() argument
428 InitialTeb->AllocatedStackBase = (PVOID)Stack; in BaseCreateStack()
429 InitialTeb->StackBase = (PVOID)(Stack + StackReserve); in BaseCreateStack()
430 InitialTeb->PreviousStackBase = NULL; in BaseCreateStack()
431 InitialTeb->PreviousStackLimit = NULL; in BaseCreateStack()
464 InitialTeb->StackLimit = (PVOID)Stack; in BaseCreateStack()
482 InitialTeb->StackLimit = (PVOID)((ULONG_PTR)InitialTeb->StackLimit + in BaseCreateStack()
497 _In_ PINITIAL_TEB InitialTeb) in BaseFreeThreadStack() argument
503 &InitialTeb->AllocatedStackBase, in BaseFreeThreadStack()
H A Dfiber.c199 INITIAL_TEB InitialTeb; in CreateFiberEx() local
239 &InitialTeb); in CreateFiberEx()
260 Fiber->StackBase = InitialTeb.StackBase; in CreateFiberEx()
261 Fiber->StackLimit = InitialTeb.StackLimit; in CreateFiberEx()
262 Fiber->DeallocationStack = InitialTeb.AllocatedStackBase; in CreateFiberEx()
278 InitialTeb.StackBase, in CreateFiberEx()
H A Dthread.c168 INITIAL_TEB InitialTeb; in CreateRemoteThread() local
199 &InitialTeb); in CreateRemoteThread()
210 InitialTeb.StackBase, in CreateRemoteThread()
225 &InitialTeb, in CreateRemoteThread()
230 BaseFreeThreadStack(hProcess, &InitialTeb); in CreateRemoteThread()
341 BaseFreeThreadStack(hProcess, &InitialTeb); in CreateRemoteThread()
H A Dproc.c2281 INITIAL_TEB InitialTeb; in CreateProcessInternalW() local
4179 &InitialTeb); in CreateProcessInternalW()
4192 InitialTeb.StackBase, in CreateProcessInternalW()
4216 &InitialTeb, in CreateProcessInternalW()
/reactos/ntoskrnl/ps/
H A Dthread.c179 IN PINITIAL_TEB InitialTeb, in PspCreateThread() argument
311 Status = MmCreateTeb(Process, &Thread->Cid, InitialTeb, &TebBase); in PspCreateThread()
947 IN PINITIAL_TEB InitialTeb, in NtCreateThread() argument
978 ProbeForRead(InitialTeb, sizeof(INITIAL_TEB), sizeof(ULONG)); in NtCreateThread()
979 SafeInitialTeb = *InitialTeb; in NtCreateThread()
991 SafeInitialTeb = *InitialTeb; in NtCreateThread()
/reactos/ntoskrnl/mm/ARM3/
H A Dprocsup.c759 IN PINITIAL_TEB InitialTeb, in MmCreateTeb() argument
818 if ((InitialTeb->PreviousStackBase == NULL) && in MmCreateTeb()
819 (InitialTeb->PreviousStackLimit == NULL)) in MmCreateTeb()
824 Teb->NtTib.StackBase = InitialTeb->StackBase; in MmCreateTeb()
825 Teb->NtTib.StackLimit = InitialTeb->StackLimit; in MmCreateTeb()
826 Teb->DeallocationStack = InitialTeb->AllocatedStackBase; in MmCreateTeb()
833 Teb->NtTib.StackBase = InitialTeb->PreviousStackBase; in MmCreateTeb()
834 Teb->NtTib.StackLimit = InitialTeb->PreviousStackLimit; in MmCreateTeb()
/reactos/dll/win32/kernel32/include/
H A Dkernel32.h190 _Out_ PINITIAL_TEB InitialTeb);
196 _In_ PINITIAL_TEB InitialTeb);
/reactos/ntoskrnl/include/internal/
H A Dmm.h777 IN PINITIAL_TEB InitialTeb,
/reactos/sdk/include/ndk/
H A Drtlfuncs.h2769 _In_ PINITIAL_TEB InitialTeb