Home
last modified time | relevance | path

Searched refs:NewOptions (Results 1 – 4 of 4) sorted by relevance

/reactos/boot/freeldr/freeldr/ntldr/
H A Dntldropts.c144 IN PCSTR NewOptions OPTIONAL) in NtLdrAddOptions()
154 if (!NewOptions || !*NewOptions) in NtLdrAddOptions()
166 (*NewOptions != '\0') && in NtLdrAddOptions()
167 (*NewOptions != ' ') && in NtLdrAddOptions()
168 (*NewOptions != '\t')) in NtLdrAddOptions()
174 RtlStringCbCatA(LoadOptions, BufferSize * sizeof(CHAR), NewOptions); in NtLdrAddOptions()
178 NewOptsLength = (ULONG)strlen(NewOptions); in NtLdrAddOptions()
184 (NewOptions[NewOptsLength-1] != ' ') && in NtLdrAddOptions()
185 (NewOptions[NewOptsLength-1] != '\t') && in NtLdrAddOptions()
210 strncpy(LoadOptions, NewOptions, NewOptsLength); in NtLdrAddOptions()
H A Dntldropts.h38 IN PCSTR NewOptions OPTIONAL);
/reactos/boot/environ/lib/misc/
H A Dbcdopt.c743 PBL_BCD_OPTION NewOptions, CurrentOptions, NextOption; in BlAppendBootOptions() local
755 NewOptions = BlMmAllocateHeap(CurrentSize + OptionsSize); in BlAppendBootOptions()
756 if (!NewOptions) in BlAppendBootOptions()
762 RtlCopyMemory(NewOptions, CurrentOptions, CurrentSize); in BlAppendBootOptions()
763 RtlCopyMemory((PVOID)((ULONG_PTR)NewOptions + CurrentSize), in BlAppendBootOptions()
792 AppEntry->BcdData = NewOptions; in BlAppendBootOptions()
831 PBL_BCD_OPTION NewOptions; in BlReplaceBootOptions() local
858 NewOptions = BlMmAllocateHeap(OptionSize); in BlReplaceBootOptions()
859 if (!NewOptions) in BlReplaceBootOptions()
865 RtlCopyMemory(NewOptions, OldOptions, OptionSize); in BlReplaceBootOptions()
[all …]
/reactos/boot/environ/include/
H A Dbl.h2053 _In_ PBL_BCD_OPTION NewOptions