/reactos/boot/freeldr/freeldr/arch/i386/pc98/ |
H A D | pc98video.c | 167 Pc98VideoClearScreen(UCHAR Attr) in Pc98VideoClearScreen() argument 170 USHORT B = (Attr & 0x10) ? 0xFFFF : 0; in Pc98VideoClearScreen() 171 USHORT G = (Attr & 0x20) ? 0xFFFF : 0; in Pc98VideoClearScreen() 172 USHORT R = (Attr & 0x40) ? 0xFFFF : 0; in Pc98VideoClearScreen() 246 Pc98VideoAttrToGdcAttr(UCHAR Attr) in Pc98VideoAttrToGdcAttr() argument 248 switch (Attr & 0xF) in Pc98VideoAttrToGdcAttr() 319 UCHAR B = (Attr & 0x10) ? 0xFF : 0; in Pc98VideoPutChar() 320 UCHAR G = (Attr & 0x20) ? 0xFF : 0; in Pc98VideoPutChar() 321 UCHAR R = (Attr & 0x40) ? 0xFF : 0; in Pc98VideoPutChar() 322 UCHAR I = (Attr & 0x80) ? 0xFF : 0; in Pc98VideoPutChar() [all …]
|
/reactos/boot/armllb/ |
H A D | fw.c | 81 LlbFwVideoClearScreen(IN UCHAR Attr) in LlbFwVideoClearScreen() argument 89 IN UCHAR Attr, in LlbFwVideoPutChar() argument 97 Color = LlbHwVideoCreateColor(ColorPalette[Attr & 0xF][0], in LlbFwVideoPutChar() 98 ColorPalette[Attr & 0xF][1], in LlbFwVideoPutChar() 99 ColorPalette[Attr & 0xF][2]); in LlbFwVideoPutChar() 100 BackColor = LlbHwVideoCreateColor(ColorPalette[Attr >> 4][0], in LlbFwVideoPutChar() 101 ColorPalette[Attr >> 4][1], in LlbFwVideoPutChar() 102 ColorPalette[Attr >> 4][2]); in LlbFwVideoPutChar()
|
/reactos/boot/freeldr/freeldr/arch/uefi/ |
H A D | uefivid.c | 69 UefiVideoAttrToSingleColor(UCHAR Attr) in UefiVideoAttrToSingleColor() argument 72 Intensity = (0 == (Attr & 0x08) ? 127 : 255); in UefiVideoAttrToSingleColor() 75 (0 == (Attr & 0x04) ? 0 : (Intensity << 16)) | in UefiVideoAttrToSingleColor() 76 (0 == (Attr & 0x02) ? 0 : (Intensity << 8)) | in UefiVideoAttrToSingleColor() 77 (0 == (Attr & 0x01) ? 0 : Intensity); in UefiVideoAttrToSingleColor() 83 *FgColor = UefiVideoAttrToSingleColor(Attr & 0xf); in UefiVideoAttrToColors() 84 *BgColor = UefiVideoAttrToSingleColor((Attr >> 4) & 0xf); in UefiVideoAttrToColors() 107 UefiVideoClearScreen(UCHAR Attr) in UefiVideoClearScreen() argument 111 UefiVideoAttrToColors(Attr, &FgColor, &BgColor); in UefiVideoClearScreen() 142 UefiVideoPutChar(int Ch, UCHAR Attr, unsigned X, unsigned Y) in UefiVideoPutChar() argument [all …]
|
/reactos/boot/freeldr/freeldr/arch/i386/xbox/ |
H A D | xboxvideo.c | 72 XboxVideoAttrToSingleColor(UCHAR Attr) in XboxVideoAttrToSingleColor() argument 76 Intensity = (0 == (Attr & 0x08) ? 127 : 255); in XboxVideoAttrToSingleColor() 79 (0 == (Attr & 0x04) ? 0 : (Intensity << 16)) | in XboxVideoAttrToSingleColor() 80 (0 == (Attr & 0x02) ? 0 : (Intensity << 8)) | in XboxVideoAttrToSingleColor() 81 (0 == (Attr & 0x01) ? 0 : Intensity); in XboxVideoAttrToSingleColor() 87 *FgColor = XboxVideoAttrToSingleColor(Attr & 0xf); in XboxVideoAttrToColors() 88 *BgColor = XboxVideoAttrToSingleColor((Attr >> 4) & 0xf); in XboxVideoAttrToColors() 126 XboxVideoClearScreen(UCHAR Attr) in XboxVideoClearScreen() argument 130 XboxVideoAttrToColors(Attr, &FgColor, &BgColor); in XboxVideoClearScreen() 136 XboxVideoPutChar(int Ch, UCHAR Attr, unsigned X, unsigned Y) in XboxVideoPutChar() argument [all …]
|
/reactos/boot/freeldr/freeldr/include/ui/ |
H A D | tui.h | 41 VOID TuiFillArea(ULONG Left, ULONG Top, ULONG Right, ULONG Bottom, CHAR FillChar, UCHAR Attr /* … 55 _In_ UCHAR Attr); 64 _In_ UCHAR Attr); 73 _In_ UCHAR Attr); 81 _In_ UCHAR Attr); 90 _In_ UCHAR Attr); 100 _In_ UCHAR Attr);
|
H A D | noui.h | 17 VOID NoUiFillArea(ULONG Left, ULONG Top, ULONG Right, ULONG Bottom, CHAR FillChar, UCHAR Attr); 19 …G Right, ULONG Bottom, UCHAR VertStyle, UCHAR HorzStyle, BOOLEAN Fill, BOOLEAN Shadow, UCHAR Attr); 27 _In_ UCHAR Attr); 36 _In_ UCHAR Attr); 46 _In_ UCHAR Attr);
|
H A D | gui.h | 27 VOID GuiFillArea(ULONG Left, ULONG Top, ULONG Right, ULONG Bottom, UCHAR FillChar, UCHAR Attr /*… 29 …om, UCHAR VertStyle, UCHAR HorzStyle, BOOLEAN Fill, BOOLEAN Shadow, UCHAR Attr); // Draws a box… 30 VOID GuiDrawText(ULONG X, ULONG Y, PUCHAR Text, UCHAR Attr); // Draws text at coordinates spe… 31 VOID GuiDrawText2(ULONG X, ULONG Y, ULONG MaxNumChars, PUCHAR Text, UCHAR Attr); // Draws tex…
|
/reactos/boot/freeldr/freeldr/ui/ |
H A D | directui.c | 61 _In_ UCHAR Attr) 63 TuiDrawText2(X, Y, 0 /*(ULONG)strlen(Text)*/, Text, Attr); 72 _In_ UCHAR Attr) 74 TuiDrawText2(X, Y, MaxNumChars, Text, Attr); 84 _In_ UCHAR Attr) 86 TuiDrawCenteredText(Left, Top, Right, Bottom, TextString, Attr);
|
H A D | tui.c | 82 _In_ UCHAR Attr) in TuiDrawText() argument 100 _In_ UCHAR Attr) in TuiDrawText2() argument 113 ScreenMemory[((Y*2)*UiScreenWidth)+(i*2)+1] = Attr; in TuiDrawText2() 124 _In_ UCHAR Attr) in TuiDrawCenteredText() argument 191 TuiDrawText(X, Y, Temp, Attr); in TuiDrawCenteredText() 420 _In_ UCHAR Attr) in TuiDrawBoxTopLine() argument 452 TuiFillArea(Left, Top, Left, Top, ULCorner, Attr); in TuiDrawBoxTopLine() 454 TuiFillArea(Right, Top, Right, Top, URCorner, Attr); in TuiDrawBoxTopLine() 464 _In_ UCHAR Attr) in TuiDrawBoxBottomLine() argument 511 _In_ UCHAR Attr) in TuiDrawBox() argument [all …]
|
H A D | noui.c | 24 VOID NoUiFillArea(ULONG Left, ULONG Top, ULONG Right, ULONG Bottom, CHAR FillChar, UCHAR Attr) in NoUiFillArea() argument 32 …NG Right, ULONG Bottom, UCHAR VertStyle, UCHAR HorzStyle, BOOLEAN Fill, BOOLEAN Shadow, UCHAR Attr) in NoUiDrawBox() argument 41 _In_ UCHAR Attr) in NoUiDrawText() argument 52 _In_ UCHAR Attr) in NoUiDrawText2() argument 66 _In_ UCHAR Attr) in NoUiDrawCenteredText() argument
|
H A D | gui.c | 26 VOID GuiFillArea(ULONG Left, ULONG Top, ULONG Right, ULONG Bottom, UCHAR FillChar, UCHAR Attr /* Co… in GuiFillArea() argument 34 …NG Right, ULONG Bottom, UCHAR VertStyle, UCHAR HorzStyle, BOOLEAN Fill, BOOLEAN Shadow, UCHAR Attr) in GuiDrawBox() argument 38 VOID GuiDrawText(ULONG X, ULONG Y, PUCHAR Text, UCHAR Attr) in GuiDrawText() argument 42 VOID GuiDrawText2(ULONG X, ULONG Y, ULONG MaxNumChars, PUCHAR Text, UCHAR Attr) in GuiDrawText2() argument
|
H A D | ui.c | 238 VOID UiFillArea(ULONG Left, ULONG Top, ULONG Right, ULONG Bottom, CHAR FillChar, UCHAR Attr /* Colo… in UiFillArea() argument 240 UiVtbl.FillArea(Left, Top, Right, Bottom, FillChar, Attr); in UiFillArea() 248 …NG Right, ULONG Bottom, UCHAR VertStyle, UCHAR HorzStyle, BOOLEAN Fill, BOOLEAN Shadow, UCHAR Attr) in UiDrawBox() argument 250 UiVtbl.DrawBox(Left, Top, Right, Bottom, VertStyle, HorzStyle, Fill, Shadow, Attr); in UiDrawBox() 258 _In_ UCHAR Attr) in UiDrawText() argument 260 UiVtbl.DrawText(X, Y, Text, Attr); in UiDrawText() 269 _In_ UCHAR Attr) in UiDrawText2() argument 271 UiVtbl.DrawText2(X, Y, MaxNumChars, Text, Attr); in UiDrawText2() 281 _In_ UCHAR Attr) in UiDrawCenteredText() argument 283 UiVtbl.DrawCenteredText(Left, Top, Right, Bottom, TextString, Attr); in UiDrawCenteredText()
|
/reactos/boot/freeldr/freeldr/include/ |
H A D | ui.h | 57 VOID UiFillArea(ULONG Left, ULONG Top, ULONG Right, ULONG Bottom, CHAR FillChar, UCHAR Attr /* C… 59 …om, UCHAR VertStyle, UCHAR HorzStyle, BOOLEAN Fill, BOOLEAN Shadow, UCHAR Attr); // Draws a box… 67 _In_ UCHAR Attr); 76 _In_ UCHAR Attr); 86 _In_ UCHAR Attr); 254 VOID (*FillArea)(ULONG Left, ULONG Top, ULONG Right, ULONG Bottom, CHAR FillChar, UCHAR Attr); 256 …G Right, ULONG Bottom, UCHAR VertStyle, UCHAR HorzStyle, BOOLEAN Fill, BOOLEAN Shadow, UCHAR Attr); 257 VOID (*DrawText)(ULONG X, ULONG Y, PCSTR Text, UCHAR Attr); 258 VOID (*DrawText2)(ULONG X, ULONG Y, ULONG MaxNumChars, PCSTR Text, UCHAR Attr); 259 …*DrawCenteredText)(ULONG Left, ULONG Top, ULONG Right, ULONG Bottom, PCSTR TextString, UCHAR Attr);
|
H A D | machine.h | 45 VOID (*VideoClearScreen)(UCHAR Attr); 52 VOID (*VideoPutChar)(int Ch, UCHAR Attr, unsigned X, unsigned Y); 92 #define MachVideoClearScreen(Attr) \ argument 93 MachVtbl.VideoClearScreen(Attr) 106 #define MachVideoPutChar(Ch, Attr, X, Y) \ argument 107 MachVtbl.VideoPutChar((Ch), (Attr), (X), (Y))
|
/reactos/sdk/tools/cabman/ |
H A D | cabman.cxx | 126 char* Attr2Str(char* Str, USHORT Attr) in Attr2Str() argument 137 if (Attr & CAB_ATTRIB_ARCHIVE) in Attr2Str() 143 if (Attr & CAB_ATTRIB_HIDDEN) in Attr2Str() 149 if (Attr & CAB_ATTRIB_READONLY) in Attr2Str() 155 if (Attr & CAB_ATTRIB_SYSTEM) in Attr2Str()
|
/reactos/drivers/filesystems/udfs/Include/ |
H A D | Sys_spec_lib.h | 68 ULONG Attr; \ 73 Attr = UDFAttributesToNT(DirNdx, (FileInfo)->Dloc->FileEntry); \ 74 if(!(Attr & FILE_ATTRIBUTE_ARCHIVE)) \ 75 UDFAttributesToUDF(DirNdx, (FileInfo)->Dloc->FileEntry, Attr); \
|
/reactos/boot/armllb/inc/ |
H A D | fw.h | 70 IN UCHAR Attr 76 IN UCHAR Attr,
|
/reactos/boot/freeldr/freeldr/include/arch/i386/ |
H A D | machxbox.h | 34 VOID XboxVideoClearScreen(UCHAR Attr); 41 VOID XboxVideoPutChar(int Ch, UCHAR Attr, unsigned X, unsigned Y);
|
H A D | machpc98.h | 65 VOID Pc98VideoClearScreen(UCHAR Attr); 72 VOID Pc98VideoPutChar(int Ch, UCHAR Attr, unsigned X, unsigned Y);
|
/reactos/boot/freeldr/freeldr/include/arch/uefi/ |
H A D | machuefi.h | 23 UefiVideoClearScreen(UCHAR Attr); 44 UefiVideoPutChar(int Ch, UCHAR Attr,
|
/reactos/boot/freeldr/freeldr/include/arch/pc/ |
H A D | machpc.h | 33 VOID PcVideoClearScreen(UCHAR Attr); 40 VOID PcVideoPutChar(int Ch, UCHAR Attr, unsigned X, unsigned Y);
|
/reactos/drivers/filesystems/udfs/ |
H A D | flush.cpp | 373 ULONG Attr; in UDFFlushAFile() 377 Attr = UDFAttributesToNT(DirNdx, Fcb->FileInfo->Dloc->FileEntry); in UDFFlushAFile() 378 if(!(Attr & FILE_ATTRIBUTE_ARCHIVE)) in UDFFlushAFile() 379 … UDFAttributesToUDF(DirNdx, Fcb->FileInfo->Dloc->FileEntry, Attr | FILE_ATTRIBUTE_ARCHIVE); in UDFFlushAFile()
|
/reactos/boot/freeldr/freeldr/include/fs/ |
H A D | fat.h | 105 UCHAR Attr; /* File attributes */ member 133 UCHAR Attr; /* File attributes */ member
|
/reactos/modules/rosapps/applications/fraginator/ |
H A D | DriveVolume.cpp | 481 bool DriveVolume::ShouldProcess (FileAttr Attr) in ShouldProcess() argument 483 if (Attr.Offline == 1 || Attr.Reparse == 1 || Attr.Temporary == 1) in ShouldProcess()
|
/reactos/boot/freeldr/freeldr/arch/i386/pc/ |
H A D | pcvideo.c | 1089 PcVideoClearScreen(UCHAR Attr) in PcVideoClearScreen() argument 1094 AttrChar = ((USHORT) Attr << 8) | ' '; in PcVideoClearScreen() 1105 PcVideoPutChar(int Ch, UCHAR Attr, unsigned X, unsigned Y) in PcVideoPutChar() argument 1110 *BufPtr = ((USHORT) Attr << 8) | (Ch & 0xff); in PcVideoPutChar()
|