Searched defs:Line (Results 1 - 25 of 28) sorted by relevance

12

/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/
H A DMisc.c51 HEFI_EDITOR_LINE *Line; local
53 Line = HMainEditor.BufferImage->CurrentLine;
54 if (Line == NULL) {
62 if (Line->Link.ForwardLink == HMainEditor.BufferImage->ListHead) {
66 Line = CR (Line->Link.ForwardLink, HEFI_EDITOR_LINE, Link, EFI_EDITOR_LINE_LIST);
69 return Line;
86 HEFI_EDITOR_LINE *Line; local
88 Line = HMainEditor.BufferImage->CurrentLine;
89 if (Line
122 HEFI_EDITOR_LINE *Line; local
155 HEFI_EDITOR_LINE *Line; local
199 HEFI_EDITOR_LINE *Line; local
[all...]
H A DDiskImage.c183 HEFI_EDITOR_LINE *Line; local
312 Line = HBufferImageCreateLine ();
313 if (Line == NULL) {
318 HBufferImage.CurrentLine = Line;
H A DFileImage.c153 HEFI_EDITOR_LINE *Line; local
161 Line = NULL;
234 Line = HBufferImageCreateLine ();
235 if (Line == NULL) {
240 HBufferImage.CurrentLine = Line;
267 HEFI_EDITOR_LINE *Line; local
329 Line = CR (Link, HEFI_EDITOR_LINE, Link, EFI_EDITOR_LINE_LIST);
331 if (Line->Size != 0) {
332 TotalSize += Line->Size;
335 // end of if Line
[all...]
H A DMemImage.c191 HEFI_EDITOR_LINE *Line; local
266 Line = HBufferImageCreateLine ();
267 if (Line == NULL) {
272 HBufferImage.CurrentLine = Line;
H A DMainHexEditor.c602 HEFI_EDITOR_LINE *Line; local
627 Line = CR (Link, HEFI_EDITOR_LINE, Link, EFI_EDITOR_LINE_LIST);
678 HEFI_EDITOR_LINE *Line; local
689 Line = HMainEditor.BufferImage->CurrentLine;
692 if (Line->Link.ForwardLink == HMainEditor.BufferImage->ListHead && Line->Size + Count < 0x10) {
1916 HEFI_EDITOR_LINE *Line; local
1993 Line = CR (Link, HEFI_EDITOR_LINE, Link, EFI_EDITOR_LINE_LIST);
2001 if (FCol > Line->Size) {
2005 if (Line
[all...]
H A DBufferImage.c239 Print Line on Row
241 @param[in] Line The lline to print.
251 IN HEFI_EDITOR_LINE *Line,
310 for (Index = 0; Index < 0x08 && Index < Line->Size; Index++) {
327 if (Line->Buffer[Index] < 0x10) {
333 ShellPrintEx ((INT32)Pos - 1, (INT32)Row - 1, L"%x ", Line->Buffer[Index]);
335 ShellPrintEx ((INT32)Pos - 1, (INT32)Row - 1, L"%x ", Line->Buffer[Index]);
347 while (Index < 0x10 && Index < Line->Size) {
364 if (Line->Buffer[Index] < 0x10) {
369 ShellPrintEx ((INT32)Pos - 1, (INT32)Row - 1, L"%x ", Line
250 HBufferImagePrintLine( IN HEFI_EDITOR_LINE *Line, IN UINTN Row, IN UINTN FRow, IN HEFI_EDITOR_COLOR_UNION Orig, IN HEFI_EDITOR_COLOR_UNION New ) argument
556 HEFI_EDITOR_LINE *Line; local
747 HEFI_EDITOR_LINE *Line; local
1045 HEFI_EDITOR_LINE *Line; local
1141 HEFI_EDITOR_LINE *Line; local
1272 HEFI_EDITOR_LINE *Line; local
1514 HEFI_EDITOR_LINE *Line; local
1573 HEFI_EDITOR_LINE *Line; local
1621 HEFI_EDITOR_LINE *Line; local
1666 HEFI_EDITOR_LINE *Line; local
1700 HEFI_EDITOR_LINE *Line; local
1753 HEFI_EDITOR_LINE *Line; local
1801 HEFI_EDITOR_LINE *Line; local
1833 HEFI_EDITOR_LINE *Line; local
1874 HEFI_EDITOR_LINE *Line; local
1919 HEFI_EDITOR_LINE *Line; local
2054 HEFI_EDITOR_LINE *Line; local
2151 HEFI_EDITOR_LINE *Line; local
2215 HEFI_EDITOR_LINE *Line; local
2279 HEFI_EDITOR_LINE *Line; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Common/
H A DMyAlloc.h57 UINTN Line; member in struct:MyAllocStruct
63 // Cksum := (UINTN)This + (UINTN)Next + Line + Size + (UINTN)File +
68 // Line := __LINE__
91 UINTN Line
111 // Line := Set to __LINE__ by macro expansion.
123 UINTN Line
142 // Line := Set to __LINE__ by macro expansion.
155 UINTN Line
175 // Line := Set to __LINE__ by macro expansion.
187 UINTN Line
[all...]
H A DEfiUtilityMsgs.c434 CHAR8 Line[MAX_LINE_LEN]; local
443 Line[0] = '\0';
471 sprintf (Line, ": %s", Cptr);
474 strcat (Line, Line2);
485 sprintf (Line, "%s", Cptr);
488 strcat (Line, Line2);
492 sprintf (Line, "%s", mUtilityName);
515 strcat (Line, Line2);
516 fprintf (stdout, "%s", Line);
554 CHAR8 Line[MAX_LINE_LE local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkPkg/Library/FrameworkUefiLib/
H A DConsole.c328 CHAR16 *Line; local
394 Line = AllocateZeroPool ((MaxLength + 3) * sizeof (CHAR16));
395 ASSERT (Line != NULL);
400 SetMem16 (Line, (MaxLength + 2) * 2, BOXDRAW_HORIZONTAL);
401 Line[0] = BOXDRAW_DOWN_RIGHT;
402 Line[MaxLength + 1] = BOXDRAW_DOWN_LEFT;
403 Line[MaxLength + 2] = L'\0';
405 ConOut->OutputString (ConOut, Line);
413 SetMem16 (Line, (MaxLength + 2) * 2, L' ');
418 CopyMem (Line
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/UefiLib/
H A DConsole.c328 CHAR16 *Line; local
394 Line = AllocateZeroPool ((MaxLength + 3) * sizeof (CHAR16));
395 ASSERT (Line != NULL);
400 SetMem16 (Line, (MaxLength + 2) * 2, BOXDRAW_HORIZONTAL);
401 Line[0] = BOXDRAW_DOWN_RIGHT;
402 Line[MaxLength + 1] = BOXDRAW_DOWN_LEFT;
403 Line[MaxLength + 2] = L'\0';
405 ConOut->OutputString (ConOut, Line);
413 SetMem16 (Line, (MaxLength + 2) * 2, L' ');
418 CopyMem (Line
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Include/Library/
H A DShellCommandLib.h391 UINTN Line; ///< What line of the script file this was on. member in struct:__anon12761
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/Edit/
H A DMainTextEditor.c482 EFI_EDITOR_LINE *Line; local
487 // Below is the scenario of Cut Line command:
492 Status = FileBufferCutLine (&Line);
501 MainEditor.CutLine = Line;
521 // Below is the scenario of Paste Line command:
523 // "No Line to Paste" and Paste Line command ends.
528 StatusBarSetStatusString (L"No Line to Paste");
1079 // Below is the scenario of Go To Line command:
1080 // 1. An Input Bar will be prompted : "Go To Line
1709 EFI_EDITOR_LINE *Line; local
[all...]
H A DFileBuffer.c167 CONST EFI_EDITOR_LINE *Line; local
173 for (Line = CurrentLine, Index = 0; Index < Count; Index++) {
177 if (Line->Link.ForwardLink == LineList) {
181 Line = CR (Line->Link.ForwardLink, EFI_EDITOR_LINE, Link, LINE_LIST_SIGNATURE);
184 return ((EFI_EDITOR_LINE *)Line);
207 CONST EFI_EDITOR_LINE *Line; local
213 for (Line = CurrentLine, Index = 0; Index < Count; Index++) {
217 if (Line->Link.BackLink == LineList) {
221 Line
242 EFI_EDITOR_LINE *Line; local
276 EFI_EDITOR_LINE *Line; local
414 EFI_EDITOR_LINE *Line; local
483 FileBufferPrintLine( IN CONST EFI_EDITOR_LINE *Line, IN CONST UINTN Row ) argument
554 EFI_EDITOR_LINE *Line; local
665 EFI_EDITOR_LINE *Line; local
780 EFI_EDITOR_LINE *Line; local
1412 EFI_EDITOR_LINE *Line; local
1650 EFI_EDITOR_LINE *Line; local
1693 LineDeleteAt( IN OUT EFI_EDITOR_LINE *Line, IN UINTN Pos ) argument
1763 EFI_EDITOR_LINE *Line; local
1835 EFI_EDITOR_LINE *Line; local
1932 EFI_EDITOR_LINE *Line; local
1995 EFI_EDITOR_LINE *Line; local
2045 LineStrInsert( IN EFI_EDITOR_LINE *Line, IN CHAR16 Char, IN UINTN Pos, IN UINTN StrSize ) argument
2102 EFI_EDITOR_LINE *Line; local
2201 EFI_EDITOR_LINE *Line; local
2247 EFI_EDITOR_LINE *Line; local
2290 EFI_EDITOR_LINE *Line; local
2341 EFI_EDITOR_LINE *Line; local
2397 EFI_EDITOR_LINE *Line; local
2649 EFI_EDITOR_LINE *Line; local
2796 EFI_EDITOR_LINE *Line; local
2876 EFI_EDITOR_LINE *Line; local
2953 EFI_EDITOR_LINE *Line; local
3247 EFI_EDITOR_LINE *Line; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/
H A DUefiShellDebug1CommandsLib.c385 CHAR16 Line[200]; local
394 SetMem16(Line, LastCol*sizeof(CHAR16), L' ');
400 Line[LastCol - 1] = CHAR_NULL;
402 Line[LastCol] = CHAR_NULL;
408 ShellPrintEx (0, ((INT32)Row) - 1, Line);
/vbox/src/VBox/Runtime/tools/
H A DRTLdrFlt.cpp406 RTDBGLINE Line; local
408 rc = RTDbgAsLineByAddr(hDbgAs, u64Address, &offLine, &Line, NULL);
410 RTStrmPrintf(pOutput, " %Rbn(%u)", Line.szFilename, Line.uLineNo);
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VolInfo/
H A DVolInfo.c1687 CHAR8 Line[MAX_LINE_LEN]; local
1695 while (fgets (Line, sizeof (Line), Fptr) != NULL) {
1705 if (sscanf (Line, "%s %s", GPtr->Guid, GPtr->BaseName) == 2) {
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/swrast/
H A Ds_context.h155 GLuint StippleCounter; /**< Line stipple counter */
165 * Point/Line/Triangle function pointers below.
188 swrast_line_func Line; member in struct:__anon3735
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/SetupBrowserDxe/
H A DPresentation.c195 UINT8 Line; local
239 // for (Line = 0; Line < BANNER_HEIGHT; Line++) {
241 for (Line = (UINT8) LocalScreen.TopRow; Line < BANNER_HEIGHT + (UINT8) LocalScreen.TopRow; Line++) {
249 RowIdx = (UINT8) (Line - (UINT8) LocalScreen.TopRow);
269 PrintStringAt (LocalScreen.LeftColumn + BANNER_LEFT_COLUMN_INDENT, Line, StrFrontPageBanner);
278 Line,
[all...]
/vbox/src/VBox/VMM/VMMR3/
H A DDBGFAddrSpace.cpp1347 RTDBGLINE Line; local
1348 int rc = DBGFR3AsLineByAddr(pUVM, hDbgAs, pAddress, poffDisp, &Line, phMod);
1350 return RTDbgLineDup(&Line);
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/GenFv/
H A DGenFvInternalLib.c710 CHAR8 Line [MAX_LINE_LEN]; local
853 while (fgets (Line, MAX_LINE_LEN, PeMapFile) != NULL) {
857 if (Line[0] == 0x0a) {
865 sscanf (Line, "%s", KeyWord);
871 fgets (Line, MAX_LINE_LEN, PeMapFile);
877 fgets (Line, MAX_LINE_LEN, PeMapFile);
879 sscanf (Line + strlen (" Preferred load address is"), "%llx", &TempLongAddress);
888 sscanf (Line, "%s %s %llx %s", KeyWord, FunctionName, &TempLongAddress, FunctionTypeName);
895 sscanf (Line, "%s %s %llx %s", KeyWord, FunctionName, &TempLongAddress, FunctionTypeName);
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/GenFw/
H A DGenFw.c3149 CHAR8 Line[MAX_LINE_LEN]; local
3153 Line[MAX_LINE_LEN - 1] = 0;
3155 if (fgets (Line, MAX_LINE_LEN, InFptr) == NULL) {
3161 if (Line[MAX_LINE_LEN - 1] != 0) {
3168 for (cptr = Line; *cptr && isspace((int)*cptr); cptr++) {
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Library/DxeNetLib/
H A DDxeNetLib.c308 @param[in] Line The line of code in the File that contains the current log
321 IN UINT32 Line,
405 "Tiano %a: %a (Line: %d File: %a)",
408 Line,
482 @param Line The exact line that contains the log.
496 IN UINT32 Line,
535 Line,
317 SyslogBuildPacket( IN UINT32 Level, IN UINT8 *Module, IN UINT8 *File, IN UINT32 Line, IN UINT8 *Message, IN UINT32 BufLen, OUT CHAR8 *Buf ) argument
492 NetDebugOutput( IN UINT32 Level, IN UINT8 *Module, IN UINT8 *File, IN UINT32 Line, IN UINT8 *Message ) argument
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/tnl/
H A Dt_context.h461 tnl_line_func Line; member in struct:tnl_device_driver::__anon3740
/vbox/src/VBox/Debugger/
H A DDBGCEmulateCodeView.cpp1218 RTDBGLINE Line; local
1224 rc = DBGFR3AsLineByAddr(pUVM, pDbgc->hDbgAs, &SourcePosAddr, &off, &Line, NULL);
1229 if (memcmp(&Line, &LinePrev, sizeof(Line)))
1234 if (!fFirst && strcmp(Line.szFilename, LinePrev.szFilename))
1238 rc = DBGCCmdHlpPrintf(pCmdHlp, "[%s @ %d]\n", Line.szFilename, Line.uLineNo);
1246 FILE *phFile = fopen(Line.szFilename, "r");
1251 unsigned cBefore = fFirst ? RT_MIN(2, Line.uLineNo - 1) : Line
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/
H A DVfrFormPkg.h1718 VOID SetLine (IN UINT16 Line) { argument
1719 mBanner->LineNumber = Line;

Completed in 109 milliseconds

12