repo_full_name
stringlengths
6
93
repo_url
stringlengths
25
112
repo_api_url
stringclasses
28 values
owner
stringclasses
28 values
repo_name
stringclasses
28 values
description
stringclasses
28 values
stars
int64
617
98.8k
forks
int64
31
355
watchers
int64
990
999
license
stringclasses
2 values
default_branch
stringclasses
2 values
repo_created_at
timestamp[s]date
2012-07-24 23:12:50
2025-06-16 08:07:28
repo_updated_at
timestamp[s]date
2026-02-23 15:23:15
2026-05-03 18:52:12
repo_topics
listlengths
0
13
repo_languages
unknown
is_fork
bool
1 class
open_issues
int64
3
104
file_path
stringlengths
3
208
file_name
stringclasses
509 values
file_extension
stringclasses
1 value
file_size_bytes
int64
101
84k
file_url
stringclasses
627 values
file_raw_url
stringclasses
627 values
file_sha
stringclasses
624 values
language
stringclasses
8 values
parsed_at
stringdate
2026-05-04 01:12:36
2026-05-04 19:41:55
text
stringlengths
100
102k
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
agents/introbootdrv/inc/loader.h
null
null
null
null
null
null
C
2026-05-04T18:58:57.918463
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ #ifndef _LOADER_H_ #define _LOADER_H_ #include "introbootdrv_types.h" void * LdrFindModuleByName( _In_z_ const CHAR *ModuleName ); void * LdrFindExportByName( _In_ PBYTE ModuleBase, _In_z_ const CHAR *ExportName ); B...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
agents/introbootdrv/inc/stubs.h
null
null
null
null
null
null
C
2026-05-04T18:58:57.920469
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ #ifndef _STUBS_H_ #define _STUBS_H_ #ifdef AMD64 #define USER_MODE_PROC_CODE_SIZE 4096 #define AGID_OFFSET 796 #define NAME_OFFSET 800 #define RELOC_OFFSET 0 // This shellcode will be in...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
agents/introbootdrv/inc/hypercall.h
null
null
null
null
null
null
C
2026-05-04T18:58:57.924271
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ #ifndef _HYPERCALL_H_ #define _HYPERCALL_H_ #include "introbootdrv_types.h" #include "../../../introcore/include/aghcall.h" #define HYPERCALL_EXCEPTION (SIZE_T)-1 SIZE_T Hypercall( _In_ DWORD MaxOutputSize, _In_ PBYTE Buffer...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
agents/introbootdrv/src/driver.c
null
null
null
null
null
null
C
2026-05-04T18:58:57.925982
#include <ntifs.h> #include "introbootdrv_types.h" #include "hypercall.h" #include "loader.h" #include "unexported.h" // 64 KB of buffer #define DEPLOY_BUFER_SIZE (1024 * 64) #pragma section("ENTRYP", read, execute, nopage) #pragma section("BUFFER", read, write, nopage) /// Important note: for some reason, the...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
agents/introbootdrv/src/hypercall.c
null
null
null
null
null
null
C
2026-05-04T18:58:57.930536
#include "hypercall.h" // Define the segment that will host our hypercall machine code. #pragma section("hcall", read,execute,nopage) #pragma warning(disable:4055) //'type cast' : from data pointer to function pointer #ifdef AMD64 __declspec(allocate("hcall")) BYTE gHypercallCode[45] = { 0x33, 0xc0, 0x48, 0xf...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
agents/introbootdrv/src/loader.c
null
null
null
null
null
null
C
2026-05-04T18:58:57.931388
#include "loader.h" #include "hypercall.h" #include <ntimage.h> // // LdrFindModuleByName // void * LdrFindModuleByName( _In_z_ const CHAR *ModuleName ) // // Will query the Introspection engine for the base of the indicated module. // If ModuleName is NULL, the base of the current agent module is returned. /...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
agents/introbootdrv/inc/unexported.h
null
null
null
null
null
null
C
2026-05-04T18:58:57.933233
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ #ifndef _UNEXPORTED_H_ #define _UNEXPORTED_H_ #include "introbootdrv_types.h" #include <ntddk.h> typedef NTSTATUS (*PFUNC_ZwWriteVirtualMemory)( _In_ HANDLE ProcessHandle, _In_ void *BaseAddress, _In_ void *Buffer, _In_ UL...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
agents/introbootdrv/src/unexported.c
null
null
null
null
null
null
C
2026-05-04T18:58:57.934836
#include "unexported.h" #include "hypercall.h" IREM_DRV_UEXFN gUnexported; NTSTATUS UexFindFunctions( void ) { for (SIZE_T i = 0; i < sizeof(gUnexported) / sizeof(void *); i++) { gUnexported._Funcs[i] = (void *)Hypercall(0, (PBYTE)i, AGENT_HCALL_SYS_LNK); if (NULL == gUnexported._Funcs...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
agents/introbootdrv/resource.h
null
null
null
null
null
null
C
2026-05-04T18:58:57.939026
//{{NO_DEPENDENCIES}} // Microsoft Visual C++ generated include file. // Used by introbootdrv.rc // // Next default values for new objects // #ifdef APSTUDIO_INVOKED #ifndef APSTUDIO_READONLY_SYMBOLS #define _APS_NEXT_RESOURCE_VALUE 101 #define _APS_NEXT_COMMAND_VALUE 40001 #define _APS_NEXT_CONTROL_VAL...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
agents/introvecore/crt.c
null
null
null
null
null
null
C
2026-05-04T18:58:58.553463
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ #include "vecorebase.h" #ifdef memcpy #undef memcpy #endif #ifdef memcmp #undef memcmp #endif #ifdef memset #undef memset #endif // // memcpy // CX_VOID* __cdecl memcpy( _cx_out_bcount_full_opt(Size) CX_VOID *Dest, _cx_in_bcount...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
agents/introvecore/handler.c
null
null
null
null
null
null
C
2026-05-04T18:58:58.556763
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ #include "handler.h" #include "cpu.h" #include "asmlib.h" #include "hviface.h" #include "emu.h" #include "vestatus.h" #include "spinlock.h" // // VirtualizationExceptionHandler // void VirtualizationExceptionHandler( PVECPU Cpu ) ...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
agents/introvecore/hviface.c
null
null
null
null
null
null
C
2026-05-04T18:58:58.558117
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ #include "hviface.h" #include "asmlib.h" #include "cpu.h" // // HvRaiseEpt // DWORD HvRaiseEpt( void ) { QWORD rax, rbx, rcx, rdx, rdi, rsi; rax = VE_VMCALL_OP; rdi = VE_VMCALL_SUBOP; rsi = 0; rdx = VE_HCALL_R...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
agents/introvecore/cache.c
null
null
null
null
null
null
C
2026-05-04T18:58:58.614382
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ #include "cache.h" #pragma section("VECACHE", read,write,nopage) // The page-table cache. __declspec(allocate("VECACHE")) VE_CACHE_LINE VeCoreCache[VE_CACHE_LINES]; /// IMPORTANT // There is no need for locking in the cache, due to the ...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
agents/introvecore/include/handler.h
null
null
null
null
null
null
C
2026-05-04T18:58:58.615512
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ #ifndef _HANDLER_H_ #define _HANDLER_H_ #include "vetypes.h" #include "vecommon.h" #include "cpu.h" void VirtualizationExceptionHandler( PVECPU Cpu ); #endif // _HANDLER_H_
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
agents/introvecore/include/asmlib.h
null
null
null
null
null
null
C
2026-05-04T18:58:58.622990
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ #ifndef _ASMLIB_H_ #define _ASMLIB_H_ #include "vetypes.h" void AsmVmcall( QWORD *Eax, QWORD *Ebx, QWORD *Ecx, QWORD *Edx, QWORD *Edi, QWORD *Esi ); void AsmSpinLockAcquire( void *SpinLock ); void Asm...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
agents/introvecore/emu.c
null
null
null
null
null
null
C
2026-05-04T18:58:58.624400
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ #include "emu.h" #include "hviface.h" #include "spinlock.h" #include "vestatus.h" #include "cache.h" // These don't respect the global variable naming rule because they're actually exports. QWORD VeCoreSelfMapIndex; // The self-map ind...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
agents/introvecore/include/cpu.h
null
null
null
null
null
null
C
2026-05-04T18:58:58.625902
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ #ifndef _CPU_H_ #define _CPU_H_ #define BIT(x) (1ULL << (x)) // RFLAGS definitions #define RFLAGS_CF BIT(0) #define RFLAGS_PF BIT(2) #define RFLAGS_AF BIT(4) #define RFLAGS_ZF ...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
agents/introvecore/include/cache.h
null
null
null
null
null
null
C
2026-05-04T18:58:58.666489
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ #ifndef _CACHE_H_ #define _CACHE_H_ #include "cpu.h" #include "vetypes.h" #include "vecommon.h" BOOLEAN VeCacheIsEntryHooked( QWORD Address ); #endif // _CACHE_H_
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
agents/introvecore/include/emu.h
null
null
null
null
null
null
C
2026-05-04T18:58:58.688432
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ #ifndef _EMU_H_ #define _EMU_H_ #include "vetypes.h" #include "vecommon.h" #include "cpu.h" #include "bddisasm.h" VESTATUS VeHandlePtWrite( PVECPU Cpu ); VESTATUS VeHandlePageWalk( PVECPU Cpu ); #endif // _EMU_H_
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
agents/introvecore/include/hviface.h
null
null
null
null
null
null
C
2026-05-04T18:58:59.182181
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ #ifndef _HVIFACE_H_ #define _HVIFACE_H_ #include "vetypes.h" #include "vecommon.h" // // API // DWORD HvRaiseEpt( void ); DWORD HvBreak( QWORD Reason, QWORD Argument ); DWORD HvTrace( QWORD Reason, QWORD Argu...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
agents/introvecore/include/vetypes.h
null
null
null
null
null
null
C
2026-05-04T18:58:59.183819
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ #ifndef _VETYPES_H_ #define _VETYPES_H_ typedef char CHAR; typedef char *PCHAR; typedef unsigned char BOOLEAN; typedef unsigned char BYTE; typedef unsigned char *PBYTE; typedef unsigned short WORD; typedef unsigned short *PWORD; typedef un...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
agents/introvecore/introvecore.c
null
null
null
null
null
null
C
2026-05-04T18:58:59.238334
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ #include "vetypes.h" #include "hviface.h" #include "cpu.h" #include "asmlib.h" // The #VE info pages and the #VE stacks will be allocated in sepparate sections. #pragma section("VEINFO", read,write,nopage) #pragma section("VESTACKS", read,...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
agents/introvecore/spinlock.c
null
null
null
null
null
null
C
2026-05-04T18:58:59.239869
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ #include "spinlock.h" #include "asmlib.h" // // SpinLockInit // void SpinLockInit( PSPINLOCK SpinLock ) { *SpinLock = 0; } // // SpinLockAcquire // void SpinLockAcquire( PSPINLOCK Lock ) { AsmSpinLockAcquire(Lock...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
agents/introvecore/vestatus.h
null
null
null
null
null
null
C
2026-05-04T18:58:59.240987
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ #ifndef _VESTATUS_H_ #define _VESTATUS_H_ #define ST_VE_FACILITY 0x00E70000 #define ST_VE_SUCCESS 0x28E70000 #define ST_VE_INFORMATIONAL 0x68E70000 #define ST_VE_WARNI...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
agents/introvecore/version.h
null
null
null
null
null
null
C
2026-05-04T18:58:59.262418
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ #ifndef _VERSION_H_ #define _VERSION_H_ // driver version #define INTROVECORE_VERSION_HIGH 1 #define INTROVECORE_VERSION_LOW 0 #define INTROVECORE_VERSION_REVISION 0 #define INTROVECORE_VERSION_BUILD 1 #define INT...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
agents/introvecore/include/spinlock.h
null
null
null
null
null
null
C
2026-05-04T18:58:59.264076
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ #ifndef _SPINLOCK_H_ #define _SPINLOCK_H_ #include "vetypes.h" typedef unsigned __int32 SPINLOCK, *PSPINLOCK; typedef unsigned __int32 RWSPINLOCK, *PRWSPINLOCK; void SpinLockInit( PSPINLOCK SpinLock ); void SpinLockAcquire( ...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
agents/ondemand_agents/linux/gather_agent/gather_agent.c
null
null
null
null
null
null
C
2026-05-04T18:58:59.265476
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ #include <stdio.h> #include <stdlib.h> #include <stdint.h> // Needed for basename #define _GNU_SOURCE #include <string.h> #include <sys/mman.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> #include <unistd.h> #include <...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
agents/introvecore/physmap.c
null
null
null
null
null
null
C
2026-05-04T18:58:59.295060
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ #include "core.h" #include "physmap.h" VOID PmPreinit( VOID ); NTSTATUS PmInit( VOID ); NTSTATUS PmBuildPhysMemMap( VOID ); NTSTATUS PmUninit( VOID ); NTSTATUS PmGetPhysMemType( __in QWORD Physica...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
agents/ondemand_agents/linux/gather_agent/gather_agent.h
null
null
null
null
null
null
C
2026-05-04T18:58:59.296890
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ #include <glob.h> #ifndef GATHER_AGENT_H #define GATHER_AGENT_H /* Use glob(3) to expand paths. */ extern void expand_paths( glob_t *globbuf, const char *path ); /* Send the contents of all regular files that glob has expande...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
agents/ondemand_agents/linux/killer_agent/main.c
null
null
null
null
null
null
C
2026-05-04T18:58:59.833690
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <errno.h> #include <sys/stat.h> #include <sys/types.h> #include <unistd.h> #include <libgen.h> #define __USE_POSIX #include <signal.h> #include "../util.h" static void p...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
agents/ondemand_agents/linux/gather_agent/main.c
null
null
null
null
null
null
C
2026-05-04T18:58:59.834930
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <errno.h> #include "gather_agent.h" static void print_usage( const char *progname ); int main( int argc, char **argv ) { glob_t globbuf; int i...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
daemon/include/argparse.h
null
null
null
null
null
null
C
2026-05-04T18:58:59.930141
/** * License: Apache 2.0 with LLVM Exception or GPL v3 * * Author: Jesse Laning */ #ifndef ARGPARSE_H #define ARGPARSE_H #include <algorithm> #include <cctype> #include <cstring> #include <iomanip> #include <iostream> #include <locale> #include <map> #include <numeric> #include <sstream> #include <stdexcept> #in...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
agents/ondemand_agents/linux/types.h
null
null
null
null
null
null
C
2026-05-04T18:58:59.946769
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ #ifndef LINUX_AGENT_TYPES_H_ #define LINUX_AGENT_TYPES_H_ #include <stdint.h> #define AGENT_HCALL_GATHER_TOOL 500 #define REN_MAX_OBJECT_PATH_LEN 512 #define LGT_MAX_DATA_SIZE 4096 #define LGT_EVENT_VERSION 0x10000 /* * XXX: Keep these...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
agents/ondemand_agents/windows/introgather_agent/stdafx.h
null
null
null
null
null
null
C
2026-05-04T18:58:59.954817
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ // stdafx.h : include file for standard system include files, // or project specific include files that are used frequently, but // are changed infrequently // #pragma once #include "targetver.h" #include <stdio.h> #include <tchar.h> ...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
agents/ondemand_agents/windows/introgather_agent/targetver.h
null
null
null
null
null
null
C
2026-05-04T18:58:59.956274
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ #pragma once // Including SDKDDKVer.h defines the highest available Windows platform. // If you wish to build your application for a previous Windows platform, include WinSDKVer.h and // set the _WIN32_WINNT macro to the platform you wish...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
agents/ondemand_agents/linux/util.c
null
null
null
null
null
null
C
2026-05-04T18:58:59.966166
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ #include <stdint.h> #include <sys/mman.h> #include <stdio.h> #include "util.h" #include "vmcall.h" #include "types.h" /* * Notify intro that an error occured */ void notify_error( int error_code ) { struct agent_lgt_event *da...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
daemon/include/introcore.h
null
null
null
null
null
null
C
2026-05-04T18:58:59.966695
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ #ifndef __INTROCORE_H_INCLUDED__ #define __INTROCORE_H_INCLUDED__ // // This header is not part of the HVMI SDK. It is, if you will, a helper: // it pulls in all different introcore headers in order to make integration // a bit easier. // ...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
agents/ondemand_agents/linux/vmcall.h
null
null
null
null
null
null
C
2026-05-04T18:58:59.986185
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ #ifndef VMCALL_H #define VMCALL_H #define MAGIC 34 #define SUB_OP 24 /* * TODO: Add another version of this vmcall for the 32-bit protocol using the * code from `comm_intro32.yasm' as guideline. */ #define vmcall(magic, sub_op, msg, hc...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
agents/ondemand_agents/linux/util.h
null
null
null
null
null
null
C
2026-05-04T18:59:00.016599
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ #ifndef _UTIL_H #define _UTIL_H #include <stdlib.h> /* Notify intro that an error occured */ extern void notify_error( int error_code ); /* * Naively convert a normal string to a wide char string. */ extern void stow( void ...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
daemon/src/hvmidomainhandler.h
null
null
null
null
null
null
C
2026-05-04T18:59:00.437559
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ #ifndef __HVMIDOMAINHANDLER_H_INCLUDED__ #define __HVMIDOMAINHANDLER_H_INCLUDED__ #include <bdvmi/domainhandler.h> #include "hvmieventhandler.h" #include "hvmisettings.h" #include "threadhelper.h" #include <condition_variable> #include <un...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
daemon/src/hvmidaemon.h
null
null
null
null
null
null
C
2026-05-04T18:59:00.466843
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ #ifndef __HVMID_H__ #define __HVMID_H__ #include "config.h" #define HVMID_NAME PROJECT_DESCRIPTION #define HVMID_DAEMON_NAME PROJECT_NAME #define HVMID_PIDFILE PROJECT_RUNSTATEDIR "/" HVMID_DAEMON_NAME ".pid" constexpr int HV...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
daemon/src/hvmisettings.h
null
null
null
null
null
null
C
2026-05-04T18:59:00.605655
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ #ifndef __HVMISETTINGS_H_INCLUDED__ #define __HVMISETTINGS_H_INCLUDED__ #include <bdvmi/backendfactory.h> #include "hvmieventhandler.h" #include <introcore.h> #include <json/json.h> #include <atomic> #include <cstring> #include <list> #inc...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
daemon/src/threadhelper.h
null
null
null
null
null
null
C
2026-05-04T18:59:00.606591
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ #ifndef __THREADHELPER_H_INCLUDED__ #define __THREADHELPER_H_INCLUDED__ #include <string> #include <thread> #include <bdvmi/logger.h> class ThreadHelper { public: ThreadHelper() = default; ~ThreadHelper() { if ( thread_.joinable() ...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
daemon/src/hvmieventhandler.h
null
null
null
null
null
null
C
2026-05-04T18:59:00.614801
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ #ifndef __HVMIEVENTHANDLER_H_INCLUDED__ #define __HVMIEVENTHANDLER_H_INCLUDED__ #include <bdvmi/eventhandler.h> #include <string> #include <introcore.h> // Forward declaration class IntrocoreManager; namespace bdvmi { // Forward declara...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
include/public/env.h
null
null
null
null
null
null
C
2026-05-04T18:59:00.626263
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ #ifndef _ENV_H_ #define _ENV_H_ /// /// @file env.h /// @ingroup group_public_headers /// #if defined(_MSC_VER) #define INT_COMPILER_MSVC #elif defined(__clang__) #define INT_COMPILER_CLANG #elif defined(__GNUC__) #define INT_COM...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
daemon/src/introcoremanager.h
null
null
null
null
null
null
C
2026-05-04T18:59:00.626860
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ #ifndef __INTROCOREMANAGER_H_INCLUDED__ #define __INTROCOREMANAGER_H_INCLUDED__ #include <algorithm> #include <atomic> #include "hvmisettings.h" #include "hvmitooltask.h" #include <bdvmi/driver.h> #include <condition_variable> #include <fs...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
daemon/src/hvmitooltask.h
null
null
null
null
null
null
C
2026-05-04T18:59:00.629341
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ #ifndef __HVMITOOLTASK_H_INCLUDED__ #define __HVMITOOLTASK_H_INCLUDED__ #include <deque> #include <mutex> #include <string> class IntrocoreManager; struct Tool { enum Type { BD_INTERNAL = 0, CUSTOM = 1 }; enum OSType { OS_LINUX ...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
include/public/glueiface.h
null
null
null
null
null
null
C
2026-05-04T18:59:00.670883
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ /// /// @file glueiface.h /// /// @brief Defines an interface used by the introspection engine to communicate with an integrator. /// /// Part of the interface is implemented by the introspection engine, allowing an integrator /// to con...
bitdefender/hvmi
https://github.com/bitdefender/hvmi
null
null
null
null
678
null
null
apache-2.0
null
null
null
null
null
null
null
include/public/hvmi.h
null
null
null
null
null
null
C
2026-05-04T18:59:00.671559
/* * Copyright (c) 2020 Bitdefender * SPDX-License-Identifier: Apache-2.0 */ #ifndef __HVMI_H__ #define __HVMI_H__ #include <hvmi/env.h> #ifndef __likely #ifdef INT_COMPILER_MSVC #define __likely( expr ) ( expr ) #else #define __likely( expr ) __builtin_expect( !!( expr ), 1 ) #endif //...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd/files/daemon/authenticate.c
null
null
null
null
null
null
C
2026-05-04T18:59:10.396289
/* Copyright (c) 2017, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaime...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-benchmark/thread-benchmark/files/thread-benchmark.c
null
null
null
null
null
null
C
2026-05-04T18:59:10.398589
/* * Thread benchmark * * Copyright 2021 Facebook. All Rights Reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd/files/daemon/auth_none.h
null
null
null
null
null
null
C
2026-05-04T18:59:10.399712
/* Copyright (c) 2017, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaime...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd/files/daemon/auth_none.c
null
null
null
null
null
null
C
2026-05-04T18:59:10.424065
/* Copyright (c) 2017, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaime...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd/files/daemon/ext_tcp.c
null
null
null
null
null
null
C
2026-05-04T18:59:10.425803
/* Copyright (c) 2017, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaime...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd/files/daemon/ext_network.c
null
null
null
null
null
null
C
2026-05-04T18:59:10.433179
/* Copyright (c) 2017, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaime...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd/files/daemon/authenticate.h
null
null
null
null
null
null
C
2026-05-04T18:59:10.434208
/* Copyright (c) 2017, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaime...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd/files/daemon/ext_tcp.h
null
null
null
null
null
null
C
2026-05-04T18:59:10.444424
/* Copyright (c) 2017, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaime...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-connectivity/lldp-util/lldp-util/src/lldp_util.c
null
null
null
null
null
null
C
2026-05-04T18:59:10.469262
/* * Copyright 2004-present Facebook. All Rights Reserved. * * A simple utility for printing LLDP and CDP packets received on an interface. * Eventually it might be worth replacing this with lldpd or lldpad, * but for now this provides a simple standalone script that can be dropped * onto a system and run on an a...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd/files/daemon/ext_network.h
null
null
null
null
null
null
C
2026-05-04T18:59:10.509957
/* Copyright (c) 2017, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaime...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd/files/daemon/logging.h
null
null
null
null
null
null
C
2026-05-04T18:59:11.012399
/* Copyright (c) 2017, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclai...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd/files/daemon/logging.c
null
null
null
null
null
null
C
2026-05-04T18:59:11.032224
/* Copyright (c) 2017, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclai...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd/files/daemon/session.h
null
null
null
null
null
null
C
2026-05-04T18:59:11.073057
/* Copyright (c) 2017, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaime...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd/files/daemon/target_handler.h
null
null
null
null
null
null
C
2026-05-04T18:59:11.113390
/* Copyright (c) 2017, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclai...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd/files/daemon/target_handler.c
null
null
null
null
null
null
C
2026-05-04T18:59:11.124752
/* Copyright (c) 2017, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclai...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd/files/interface/SoftwareJTAGHandler.h
null
null
null
null
null
null
C
2026-05-04T18:59:11.144048
/* Copyright (c) 2017, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaime...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd/files/daemon/session.c
null
null
null
null
null
null
C
2026-05-04T18:59:11.151405
/* Copyright (c) 2017, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaime...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd/files/interface/mem_helper.c
null
null
null
null
null
null
C
2026-05-04T18:59:11.163793
#include "mem_helper.h" #include <math.h> #include <stdarg.h> #include <stdio.h> #include <stdlib.h> #include <string.h> int memcpy_safe(void* dest, size_t destsize, const void* src, size_t count) { if (dest == NULL || src == NULL || destsize < count) return 1; while (count--) *(char*)dest++ =...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd/files/interface/SoftwareJTAGHandler.c
null
null
null
null
null
null
C
2026-05-04T18:59:11.216813
/* Copyright (c) 2017, Intel Corporation Copyright (c) 2017, Facebook Inc. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of co...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd/files/daemon/socket_main.c
null
null
null
null
null
null
C
2026-05-04T18:59:11.277311
/* Copyright (c) 2017, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclai...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd/files/interface/pin_interface.c
null
null
null
null
null
null
C
2026-05-04T18:59:11.642985
/* Copyright (c) 2017, Intel Corporation Copyright (c) 2017, Facebook Inc. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of co...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd/files/interface/mem_helper.h
null
null
null
null
null
null
C
2026-05-04T18:59:11.644488
#ifndef AT_SCALE_DEBUG_MEM_HELPER_H #define AT_SCALE_DEBUG_MEM_HELPER_H #include <stddef.h> int memcpy_safe(void* dest, size_t destsize, const void* src, size_t count); int strcpy_safe(char* dest, size_t destsize, const char* src, size_t count); int snprintf_safe(char* str, size_t max_size, const char* fmt, int* value...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd/files/interface/pin_interface.h
null
null
null
null
null
null
C
2026-05-04T18:59:11.650593
/* Copyright (c) 2017, Intel Corporation Copyright (c) 2017, Facebook Inc. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of co...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd/files/test/jtagtest.c
null
null
null
null
null
null
C
2026-05-04T18:59:11.727737
/* Copyright (c) 2017, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclai...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd_1.4.3/files/daemon/asd_main.h
null
null
null
null
null
null
C
2026-05-04T18:59:11.782045
/* Copyright (c) 2019, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaime...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd_1.4.3/files/daemon/asd_msg.c
null
null
null
null
null
null
C
2026-05-04T18:59:11.827470
/* Copyright (c) 2019, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaime...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd_1.4.3/files/daemon/asd_msg.h
null
null
null
null
null
null
C
2026-05-04T18:59:11.841087
/* Copyright (c) 2019, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaime...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd_1.4.3/files/daemon/asd_common.h
null
null
null
null
null
null
C
2026-05-04T18:59:11.855284
/* Copyright (c) 2019, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaime...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd_1.4.3/files/daemon/auth_none.c
null
null
null
null
null
null
C
2026-05-04T18:59:11.895115
/* Copyright (c) 2019, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaime...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd_1.4.3/files/daemon/asd_main.c
null
null
null
null
null
null
C
2026-05-04T18:59:11.954665
/* Copyright (c) 2019, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaime...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd_1.4.3/files/daemon/auth_none.h
null
null
null
null
null
null
C
2026-05-04T18:59:12.262773
/* Copyright (c) 2019, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaime...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd_1.4.3/files/daemon/authenticate.c
null
null
null
null
null
null
C
2026-05-04T18:59:12.269086
/* Copyright (c) 2019, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaime...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd_1.4.3/files/daemon/authenticate.h
null
null
null
null
null
null
C
2026-05-04T18:59:12.283883
/* Copyright (c) 2019, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaime...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd_1.4.3/files/daemon/config.c
null
null
null
null
null
null
C
2026-05-04T18:59:12.367377
/* Copyright (c) 2019, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaime...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd_1.4.3/files/daemon/config.h
null
null
null
null
null
null
C
2026-05-04T18:59:12.385713
/* Copyright (c) 2019, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaime...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd_1.4.3/files/daemon/ext_network.h
null
null
null
null
null
null
C
2026-05-04T18:59:12.395117
/* Copyright (c) 2019, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaime...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd_1.4.3/files/daemon/ext_network.c
null
null
null
null
null
null
C
2026-05-04T18:59:12.480694
/* Copyright (c) 2019, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaime...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd_1.4.3/files/daemon/ext_tcp.h
null
null
null
null
null
null
C
2026-05-04T18:59:12.507856
/* Copyright (c) 2019, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaime...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd_1.4.3/files/daemon/ext_tcp.c
null
null
null
null
null
null
C
2026-05-04T18:59:12.508405
/* Copyright (c) 2019, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaime...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd_1.4.3/files/daemon/i2c_handler.c
null
null
null
null
null
null
C
2026-05-04T18:59:12.537395
/* Copyright (c) 2019, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaime...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd_1.4.3/files/daemon/i2c_msg_builder.h
null
null
null
null
null
null
C
2026-05-04T18:59:12.903776
/* Copyright (c) 2018, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaime...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd_1.4.3/files/daemon/i2c_msg_builder.c
null
null
null
null
null
null
C
2026-05-04T18:59:12.984376
/* Copyright (c) 2018, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaime...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd_1.4.3/files/daemon/jtag_handler.h
null
null
null
null
null
null
C
2026-05-04T18:59:12.996136
/* Copyright (c) 2019, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaime...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd_1.4.3/files/daemon/i2c_handler.h
null
null
null
null
null
null
C
2026-05-04T18:59:13.016237
/* Copyright (c) 2019, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaime...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd_1.4.3/files/daemon/jtag_handler.c
null
null
null
null
null
null
C
2026-05-04T18:59:13.027873
/* Copyright (c) 2019, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaime...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd_1.4.3/files/daemon/jtag.h
null
null
null
null
null
null
C
2026-05-04T18:59:13.052919
/* SPDX-License-Identifier: GPL-2.0 */ // include/uapi/linux/jtag.h - JTAG class driver uapi // // Copyright (c) 2018 Mellanox Technologies. All rights reserved. // Copyright (c) 2018 Oleksandr Shamray <oleksandrs@mellanox.com> #ifndef __UAPI_LINUX_JTAG_H #define __UAPI_LINUX_JTAG_H /* * JTAG_XFER_MODE: JTAG transfe...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd_1.4.3/files/daemon/jtag_test.c
null
null
null
null
null
null
C
2026-05-04T18:59:13.087253
/* Copyright (c) 2019, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaime...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd_1.4.3/files/daemon/logging.c
null
null
null
null
null
null
C
2026-05-04T18:59:13.141336
/* Copyright (c) 2019, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaime...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd_1.4.3/files/daemon/logging.h
null
null
null
null
null
null
C
2026-05-04T18:59:13.141842
/* Copyright (c) 2019, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaime...
facebook/openbmc
https://github.com/facebook/openbmc
null
null
null
null
676
null
null
apache-2.0
null
null
null
null
null
null
null
common/recipes-core/asd_1.4.3/files/daemon/jtag_test.h
null
null
null
null
null
null
C
2026-05-04T18:59:13.254547
/* Copyright (c) 2019, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaime...
espressif/esp-dsp
https://github.com/espressif/esp-dsp
null
null
null
null
669
null
null
apache-2.0
null
null
null
null
null
null
null
applications/azure_board_apps/graphics/3d_matrix/3d_matrix_data/cube_matrix.h
null
null
null
null
null
null
C
2026-05-04T18:59:15.761501
/* * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 */ #pragma once #include <stdint.h> #include "graphics_support.h" #include "sdkconfig.h" #ifdef __cplusplus extern "C" { #endif #define CUBE_POINTS 8 #define CUBE_EDGES 12 #define CUBE_SIDE (SSD1606_Y_C...