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
microsoft/ebpf-for-windows
https://github.com/microsoft/ebpf-for-windows
null
null
null
null
3,483
null
null
mit
null
null
null
null
null
null
null
include/ebpf_program_attach_type_guids.h
null
null
null
null
null
null
C
2026-05-04T18:31:43.380158
// Copyright (c) eBPF for Windows contributors // SPDX-License-Identifier: MIT #pragma once #include "ebpf_windows.h" #ifdef __cplusplus extern "C" { #endif // // Attach Types. // __declspec(selectany) ebpf_attach_type_t EBPF_ATTACH_TYPE_UNSPECIFIED = {0}; /** @brief Attach type for handling inc...
microsoft/ebpf-for-windows
https://github.com/microsoft/ebpf-for-windows
null
null
null
null
3,483
null
null
mit
null
null
null
null
null
null
null
include/net/if_ether.h
null
null
null
null
null
null
C
2026-05-04T18:31:43.912396
// Copyright (c) eBPF for Windows contributors // SPDX-License-Identifier: MIT #pragma once typedef uint8_t mac_address_t[6]; #define ETHERNET_TYPE_IPV4 0x0800 #define ETHERNET_TYPE_IPV6 0x86dd #if defined(_MSC_VER) #pragma warning(push) #pragma warning(disable : 4201) // nonstandard extension used : nameless struct...
microsoft/ebpf-for-windows
https://github.com/microsoft/ebpf-for-windows
null
null
null
null
3,483
null
null
mit
null
null
null
null
null
null
null
include/net/tcp.h
null
null
null
null
null
null
C
2026-05-04T18:31:43.933613
// Copyright (c) eBPF for Windows contributors // SPDX-License-Identifier: MIT #pragma once #pragma pack(push) #pragma pack(1) struct tcphdr { uint16_t source; uint16_t dest; uint32_t seq; // Sequence Number uint32_t ack_seq; // Acknowledgement Number // List bits in each byte from right (low)...
microsoft/ebpf-for-windows
https://github.com/microsoft/ebpf-for-windows
null
null
null
null
3,483
null
null
mit
null
null
null
null
null
null
null
include/net/ip.h
null
null
null
null
null
null
C
2026-05-04T18:31:43.994164
// Copyright (c) eBPF for Windows contributors // SPDX-License-Identifier: MIT #pragma once #define IPPROTO_IPV4 4 #define IPPROTO_TCP 6 #define IPPROTO_UDP 17 #define IPPROTO_IPV6 41 #define AF_INET 2 #define AF_INET6 23 #ifndef DEFAULT_COMPARTMENT_ID #define DEFAULT_COMPARTMENT_ID 1 #endif #if defined(_MSC_VER) #...
microsoft/ebpf-for-windows
https://github.com/microsoft/ebpf-for-windows
null
null
null
null
3,483
null
null
mit
null
null
null
null
null
null
null
include/net/udp.h
null
null
null
null
null
null
C
2026-05-04T18:31:44.025735
// Copyright (c) eBPF for Windows contributors // SPDX-License-Identifier: MIT #pragma once typedef struct UDP_HEADER_ { uint16_t srcPort; uint16_t destPort; uint16_t length; uint16_t checksum; } UDP_HEADER;
microsoft/ebpf-for-windows
https://github.com/microsoft/ebpf-for-windows
null
null
null
null
3,483
null
null
mit
null
null
null
null
null
null
null
include/ebpf_windows.h
null
null
null
null
null
null
C
2026-05-04T18:31:44.078335
// Copyright (c) eBPF for Windows contributors // SPDX-License-Identifier: MIT #pragma once #define EBPF_OFFSET_OF(s, m) (((size_t) & ((s*)0)->m)) #define EBPF_FIELD_SIZE(s, m) (sizeof(((s*)0)->m)) #define EBPF_SIZE_INCLUDING_FIELD(s, m) (EBPF_OFFSET_OF(s, m) + EBPF_FIELD_SIZE(s, m)) #ifdef _MSC_VER #include <guiddef...
microsoft/ebpf-for-windows
https://github.com/microsoft/ebpf-for-windows
null
null
null
null
3,483
null
null
mit
null
null
null
null
null
null
null
include/ebpf_program_types.h
null
null
null
null
null
null
C
2026-05-04T18:31:44.079499
// Copyright (c) eBPF for Windows contributors // SPDX-License-Identifier: MIT #pragma once #include "ebpf_base.h" #include "ebpf_result.h" #include "ebpf_windows.h" #define EBPF_MAX_PROGRAM_DESCRIPTOR_NAME_LENGTH 256 #define EBPF_MAX_HELPER_FUNCTION_NAME_LENGTH 256 // This is the type definition for the eBPF progra...
microsoft/ebpf-for-windows
https://github.com/microsoft/ebpf-for-windows
null
null
null
null
3,483
null
null
mit
null
null
null
null
null
null
null
include/ebpf_utilities.h
null
null
null
null
null
null
C
2026-05-04T18:31:44.123681
// Copyright (c) eBPF for Windows contributors // SPDX-License-Identifier: MIT #pragma once #include "ebpf_result.h" #include <stdint.h> #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers // Windows Header Files #include <windows.h> // This should be consistent with _ebpf_result_mapping[] ...
microsoft/ebpf-for-windows
https://github.com/microsoft/ebpf-for-windows
null
null
null
null
3,483
null
null
mit
null
null
null
null
null
null
null
include/ebpf_structs.h
null
null
null
null
null
null
C
2026-05-04T18:31:44.125043
// Copyright (c) eBPF for Windows contributors // SPDX-License-Identifier: MIT #pragma once /** * @file * @brief This file contains eBPF definitions common to eBPF programs, core execution engine * as well as eBPF API library. */ #include "ebpf_windows.h" #define MAX_TAIL_CALL_CNT 33 #define BPF_ENUM_TO_STRING(...
microsoft/ebpf-for-windows
https://github.com/microsoft/ebpf-for-windows
null
null
null
null
3,483
null
null
mit
null
null
null
null
null
null
null
include/uapi/linux/bpf.h
null
null
null
null
null
null
C
2026-05-04T18:31:44.521504
// Copyright (c) eBPF for Windows contributors // SPDX-License-Identifier: MIT #pragma once #include "../../linux/bpf.h"
microsoft/ebpf-for-windows
https://github.com/microsoft/ebpf-for-windows
null
null
null
null
3,483
null
null
mit
null
null
null
null
null
null
null
include/uapi/linux/if_ether.h
null
null
null
null
null
null
C
2026-05-04T18:31:44.533915
// Copyright (c) eBPF for Windows contributors // SPDX-License-Identifier: MIT #pragma once #include "../../net/if_ether.h"
microsoft/ebpf-for-windows
https://github.com/microsoft/ebpf-for-windows
null
null
null
null
3,483
null
null
mit
null
null
null
null
null
null
null
include/uapi/linux/tcp.h
null
null
null
null
null
null
C
2026-05-04T18:31:44.633919
// Copyright (c) eBPF for Windows contributors // SPDX-License-Identifier: MIT #pragma once #include "../../net/tcp.h"
microsoft/ebpf-for-windows
https://github.com/microsoft/ebpf-for-windows
null
null
null
null
3,483
null
null
mit
null
null
null
null
null
null
null
libs/api/ebpf_execution_context.h
null
null
null
null
null
null
C
2026-05-04T18:31:44.726213
// Copyright (c) eBPF for Windows contributors // SPDX-License-Identifier: MIT #pragma once #ifdef __cplusplus extern "C" { #endif typedef enum ebpf_execution_context { execution_context_user_mode, execution_context_kernel_mode } ebpf_execution_context_t; #ifdef __cplusplus } #endif
microsoft/ebpf-for-windows
https://github.com/microsoft/ebpf-for-windows
null
null
null
null
3,483
null
null
mit
null
null
null
null
null
null
null
include/uapi/linux/ip.h
null
null
null
null
null
null
C
2026-05-04T18:31:44.726828
// Copyright (c) eBPF for Windows contributors // SPDX-License-Identifier: MIT #pragma once #include "../../net/ip.h"
microsoft/ebpf-for-windows
https://github.com/microsoft/ebpf-for-windows
null
null
null
null
3,483
null
null
mit
null
null
null
null
null
null
null
libs/api/Verifier.h
null
null
null
null
null
null
C
2026-05-04T18:31:44.746897
// Copyright (c) eBPF for Windows contributors // SPDX-License-Identifier: MIT #pragma once #include "api_internal.h" #include "config.hpp" #include "ebpf_program_types.h" #include "ebpf_result.h" #include "ebpf_verifier_wrapper.hpp" #include "platform.hpp" #include <variant> typedef int (*map_create_fp)( uint3...
microsoft/ebpf-for-windows
https://github.com/microsoft/ebpf-for-windows
null
null
null
null
3,483
null
null
mit
null
null
null
null
null
null
null
libs/api/api_internal.h
null
null
null
null
null
null
C
2026-05-04T18:31:44.802087
// Copyright (c) eBPF for Windows contributors // SPDX-License-Identifier: MIT #pragma once #include "api_common.hpp" #include "ebpf_api.h" #if !defined(EBPF_API_LOCKING) #define EBPF_API_LOCKING #endif struct bpf_object; typedef struct _ebpf_map_subscription ebpf_map_subscription_t; // Forward declaration for ri...
microsoft/ebpf-for-windows
https://github.com/microsoft/ebpf-for-windows
null
null
null
null
3,483
null
null
mit
null
null
null
null
null
null
null
include/ebpf_nethooks.h
null
null
null
null
null
null
C
2026-05-04T18:31:51.993397
// Copyright (c) eBPF for Windows contributors // SPDX-License-Identifier: MIT #pragma once #include <stdint.h> // This file contains APIs for hooks and helpers that are // exposed by netebpfext.sys for use by eBPF programs. #ifndef __doxygen #define EBPF_HELPER(return_type, name, args) typedef return_type(*const nam...
answer-huang/dSYMTools
https://github.com/answer-huang/dSYMTools
null
null
null
null
3,479
null
null
mit
null
null
null
null
null
null
null
Objective-C/DSYMTools/View/ArchiveFilesScrollView.h
null
null
null
null
null
null
C
2026-05-04T18:31:54.569842
// // ArchiveFilesScrollView.h // DSYMTools // // Created by answer on 7/29/16. // Copyright © 2016 answer. All rights reserved. // #import <Cocoa/Cocoa.h> @interface ArchiveFilesScrollView : NSScrollView { BOOL highlight; } @end
answer-huang/dSYMTools
https://github.com/answer-huang/dSYMTools
null
null
null
null
3,479
null
null
mit
null
null
null
null
null
null
null
wxPython/app/dSYM.app/Contents/Resources/include/python2.7/pyconfig.h
null
null
null
null
null
null
C
2026-05-04T18:31:54.581056
/* pyconfig.h. Generated from pyconfig.h.in by configure. */ /* pyconfig.h.in. Generated from configure.ac by autoheader. */ #ifndef Py_PYCONFIG_H #define Py_PYCONFIG_H /* Define if building universal (internal helper macro) */ #define AC_APPLE_UNIVERSAL_BUILD 1 /* Define for AIX if your compiler is a genuine ...
answer-huang/dSYMTools
https://github.com/answer-huang/dSYMTools
null
null
null
null
3,479
null
null
mit
null
null
null
null
null
null
null
Objective-C/DSYMTools/Model/ArchiveInfo.h
null
null
null
null
null
null
C
2026-05-04T18:31:54.606208
// // ArchiveInfo.h // DSYMTools // // Created by answer on 7/27/16. // Copyright © 2016 answer. All rights reserved. // #import <Foundation/Foundation.h> /** * 文件类型 */ typedef NS_ENUM(NSInteger, ArchiveFileType){ // archive 文件 ArchiveFileTypeXCARCHIVE = 1, //dsym 文件 ArchiveFileTypeDSYM = 2 }; ...
answer-huang/dSYMTools
https://github.com/answer-huang/dSYMTools
null
null
null
null
3,479
null
null
mit
null
null
null
null
null
null
null
Objective-C/DSYMTools/NSAttributedString+Hyperlink.h
null
null
null
null
null
null
C
2026-05-04T18:31:54.612724
// // NSAttributedString+Hyperlink.h // DSYMTools // // Created by answer on 2016/11/8. // Copyright © 2016年 answer. All rights reserved. // #import <Foundation/Foundation.h> @interface NSAttributedString (Hyperlink) +(id)hyperlinkFromString:(NSString*)inString withURL:(NSURL*)aURL; @end
answer-huang/dSYMTools
https://github.com/answer-huang/dSYMTools
null
null
null
null
3,479
null
null
mit
null
null
null
null
null
null
null
wxPython/app/dSYM.app/Contents/Frameworks/Python.framework/Versions/2.7/include/python2.7/pyconfig.h
null
null
null
null
null
null
C
2026-05-04T18:31:54.614794
/* pyconfig.h. Generated from pyconfig.h.in by configure. */ /* pyconfig.h.in. Generated from configure.ac by autoheader. */ #ifndef Py_PYCONFIG_H #define Py_PYCONFIG_H /* Define if building universal (internal helper macro) */ #define AC_APPLE_UNIVERSAL_BUILD 1 /* Define for AIX if your compiler is a genuine ...
answer-huang/dSYMTools
https://github.com/answer-huang/dSYMTools
null
null
null
null
3,479
null
null
mit
null
null
null
null
null
null
null
Objective-C/DSYMTools/Model/UUIDInfo.h
null
null
null
null
null
null
C
2026-05-04T18:31:54.625830
// // UUIDInfo.h // DSYMTools // // Created by answer on 7/27/16. // Copyright © 2016 answer. All rights reserved. // #import <Foundation/Foundation.h> @interface UUIDInfo : NSObject /** * arch 类型 */ @property (nonatomic, copy) NSString *arch; /** * 默认的 Slide Address */ @property (nonatomic, readonly) NSSt...
answer-huang/dSYMTools
https://github.com/answer-huang/dSYMTools
null
null
null
null
3,479
null
null
mit
null
null
null
null
null
null
null
Objective-C/DSYMTools/Controller/CustomModalWindowController.h
null
null
null
null
null
null
C
2026-05-04T18:31:54.636766
// // CustomModalWindowViewController.h // CustomModalWindow // // Created by Nick Kuh on 16/01/2015. // Copyright (c) 2015 Mumbo Apps Ltd. All rights reserved. // #import <Cocoa/Cocoa.h> @interface CustomModalWindowController : NSWindowController @end
answer-huang/dSYMTools
https://github.com/answer-huang/dSYMTools
null
null
null
null
3,479
null
null
mit
null
null
null
null
null
null
null
Objective-C/DSYMTools/Controller/MainWindowViewController.h
null
null
null
null
null
null
C
2026-05-04T18:31:54.684463
// // MainWindowViewController.h // CustomModalWindow // // Created by answer on 7/26/16. // Copyright © 2016 answer. All rights reserved. // #import <Cocoa/Cocoa.h> @interface MainWindowViewController : NSWindowController @end
answer-huang/dSYMTools
https://github.com/answer-huang/dSYMTools
null
null
null
null
3,479
null
null
mit
null
null
null
null
null
null
null
Objective-C/DSYMTools/AppDelegate.h
null
null
null
null
null
null
C
2026-05-04T18:31:54.685220
// // AppDelegate.h // DSYMTools // // Created by answer on 7/25/16. // Copyright © 2016 answer. All rights reserved. // #import <Cocoa/Cocoa.h> @interface AppDelegate : NSObject <NSApplicationDelegate> @end
answer-huang/dSYMTools
https://github.com/answer-huang/dSYMTools
null
null
null
null
3,479
null
null
mit
null
null
null
null
null
null
null
Objective-C/DSYMTools/Controller/AboutWindowController.h
null
null
null
null
null
null
C
2026-05-04T18:31:54.686054
// // AboutWindowController.h // DSYMTools // // Created by answer on 7/26/16. // Copyright © 2016 answer. All rights reserved. // #import <Cocoa/Cocoa.h> @interface AboutWindowController : NSWindowController @end
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libdash/src/dash-adaptation.c
null
null
null
null
null
null
C
2026-05-04T18:31:57.287676
#include "dash-parser.h" #include <stdlib.h> #include <string.h> #include <assert.h> static int dash_mime_type_to_media_type(const char* mime) { switch (mime[0]) { case 't': return 0 == strncmp(mime, "text/", 5) ? DASH_MEDIA_TEXT : DASH_MEDIA_UNKNOWN; case 'i': return 0 == strncmp(mime, "image/", 6) ? DASH_MED...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libdash/include/dash-mpd.h
null
null
null
null
null
null
C
2026-05-04T18:31:57.294010
#ifndef _dash_mpd_h_ #define _dash_mpd_h_ #include <stddef.h> #include <stdint.h> #ifdef __cplusplus extern "C" { #endif typedef struct dash_mpd_t dash_mpd_t; typedef int (*dash_mpd_segment)(void* param, int adapation, const void* data, size_t bytes, int64_t pts, int64_t dts, int64_t duration, const char* name); d...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libdash/include/xs-datatype.h
null
null
null
null
null
null
C
2026-05-04T18:31:57.298600
#ifndef _xs_datatype_h_ #define _xs_datatype_h_ #include <stdint.h> #include <stddef.h> #ifdef __cplusplus extern "C" { #endif /// @param[in] duration millisecond duration /// @param[out] data ISO8601 duration: P[n]Y[n]M[n]DT[n]H[n]M[n]S int xs_duration_write(int64_t duration, char* data, int size); int xs_duration_...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libdash/include/dash-proto.h
null
null
null
null
null
null
C
2026-05-04T18:31:57.299694
#ifndef _dash_proto_h_ #define _dash_proto_h_ enum { DASH_STATIC = 0, DASH_DYNAMIC, }; #endif /* !_dash_proto_h_ */
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libdash/src/dash-parser.c
null
null
null
null
null
null
C
2026-05-04T18:31:57.300747
// https://standards.iso.org/iso-iec/23009/-1/ed-3/en/DASH-MPD.xsd #include "dash-parser.h" #include "xs-datatype.h" #include "hls-string.h" #include <errno.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <assert.h> #ifndef offsetof #define offsetof(s, m) (size_t)&(((s*)0)->m) #endif #define...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libdash/src/dash-segment.c
null
null
null
null
null
null
C
2026-05-04T18:31:57.351422
#include "dash-parser.h" #include <stdlib.h> #include <string.h> #include <assert.h> #include <limits.h> int dash_segment_count(const struct dash_segment_t* segment) { int n; size_t i; switch (segment->type) { case DASH_SEGMENT_BASE: return 1; case DASH_SEGMENT_LIST: return (int)segment->segment_url_count;...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libdash/src/dash-period.c
null
null
null
null
null
null
C
2026-05-04T18:31:57.380931
#include "dash-parser.h" #include "hls-string.h" #include <stdlib.h> #include <string.h> #include <assert.h> int64_t dash_get_duration(const struct dash_mpd_t* mpd) { size_t i; int64_t t, start; const struct dash_period_t* period; if (DASH_DYNAMIC == mpd->type) return -1; if (mpd->media_presentation_duration ...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libdash/src/dash-representation.c
null
null
null
null
null
null
C
2026-05-04T18:31:57.437652
#include "dash-parser.h" #include <stdio.h> #include <stdlib.h> #include <string.h> #include <assert.h> #include <inttypes.h> #include <stdint.h> const char* dash_segment_initialization(const struct dash_segment_t* segment); int dash_segment_count(const struct dash_segment_t* segment); int dash_segment_find(const stru...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libdash/include/dash-parser.h
null
null
null
null
null
null
C
2026-05-04T18:31:57.458715
#ifndef _dash_parser_h_ #define _dash_parser_h_ #include "dash-proto.h" #include <stdint.h> #include <stddef.h> #ifdef __cplusplus extern "C" { #endif enum { DASH_SEGMENT_NONE = 0, DASH_SEGMENT_BASE, DASH_SEGMENT_LIST, DASH_SEGMENT_TEMPLATE, }; // https://tools.ietf.org/html/rfc6838 enum { DASH_MEDIA_UNKNOWN, ...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libdash/src/dash-mpd.c
null
null
null
null
null
null
C
2026-05-04T18:31:57.467718
#include "dash-mpd.h" #include "dash-proto.h" #include "mov-format.h" #include "fmp4-writer.h" #include "mpeg4-hevc.h" #include "mpeg4-vvc.h" #include "mpeg4-avc.h" #include "mpeg4-aac.h" #include "list.h" #include <time.h> #include <errno.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <assert.h...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libdash/src/xs-duration.c
null
null
null
null
null
null
C
2026-05-04T18:31:57.976363
#include "xs-datatype.h" #include <assert.h> #include <stdio.h> #include <time.h> // https://en.wikipedia.org/wiki/ISO_8601 // Durations: // 1. P[n]Y[n]M[n]DT[n]H[n]M[n]S // 2. P[n]W // 3. P<date>T<time> // 4. PYYYYMMDDThhmmss // 5. P[YYYY]-[MM]-[DD]T[hh]:[mm]:[ss] // For example, "P3Y6M4DT12H30M5S" represents a dura...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libflv/include/amf0.h
null
null
null
null
null
null
C
2026-05-04T18:31:57.994545
#ifndef _amf0_h_ #define _amf0_h_ #include <stdint.h> #include <stddef.h> #ifdef __cplusplus extern "C" { #endif enum AMFDataType { AMF_NUMBER = 0x00, AMF_BOOLEAN, AMF_STRING, AMF_OBJECT, AMF_MOVIECLIP, AMF_NULL, AMF_UNDEFINED, AMF_REFERENCE, AMF_ECMA_ARRAY, AMF_OBJECT_END, AMF_STRICT_ARRAY, AMF_DATE, A...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libflv/include/amf3.h
null
null
null
null
null
null
C
2026-05-04T18:31:57.995710
#ifndef _amf3_h_ #define _amf3_h_ #include <stdint.h> #include <stddef.h> #ifdef __cplusplus extern "C" { #endif enum AMF3DataType { AMF3_UNDEFINED = 0x00, AMF3_NULL, AMF3_FALSE, AMF3_TRUE, AMF3_INTEGER, AMF3_DOUBLE, AMF3_STRING, AMF3_XML_DOCUMENT, AMF3_DATE, AMF3_ARRAY, AMF3_OBJECT, AMF3_XML, AMF3_BYTE...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libdash/src/list.h
null
null
null
null
null
null
C
2026-05-04T18:31:58.007864
#ifndef _list_h_ #define _list_h_ struct list_head { struct list_head *next, *prev; }; static inline void list_insert_after(struct list_head *item, struct list_head *head) { struct list_head *prev, *next; prev = head; next = head->next; item->prev = prev; item->next = next; next->prev = item; prev->next = it...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libflv/include/aom-av1.h
null
null
null
null
null
null
C
2026-05-04T18:31:58.046259
#ifndef _aom_av1_h_ #define _aom_av1_h_ #include <stdint.h> #include <stddef.h> #if defined(__cplusplus) extern "C" { #endif struct aom_av1_t { uint32_t marker : 1; uint32_t version : 7; uint32_t seq_profile : 3; uint32_t seq_level_idx_0 : 5; uint32_t seq_tier_0 : 1; uint32_t high_bitdepth : 1; uint32_t twelv...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libflv/include/flv-demuxer.h
null
null
null
null
null
null
C
2026-05-04T18:31:58.047323
#ifndef _flv_demuxer_h_ #define _flv_demuxer_h_ #include <stdint.h> #include <stddef.h> #if defined(__cplusplus) extern "C" { #endif typedef struct flv_demuxer_t flv_demuxer_t; /// Audio/Video Elementary Stream /// @param[in] param user-defined parameter /// @param[in] codec audio/video format (see more flv-proto.h...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libflv/include/avswg-avs3.h
null
null
null
null
null
null
C
2026-05-04T18:31:58.083032
#ifndef _avswg_avs3_h_ #define _avswg_avs3_h_ // http://standard.avswg.org.cn/avs3_download/ #include <stdint.h> #include <stddef.h> #if defined(__cplusplus) extern "C" { #endif struct avswg_avs3_t { uint32_t version : 8; uint32_t sequence_header_length : 16; uint32_t library_dependency_idc : 2; uint8_t sequen...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libflv/include/flv-parser.h
null
null
null
null
null
null
C
2026-05-04T18:31:58.108736
#ifndef _flv_parser_h_ #define _flv_parser_h_ #include <stdint.h> #include <stddef.h> #include "flv-header.h" #if defined(__cplusplus) extern "C" { #endif /// Audio/Video Elementary Stream /// @param[in] param user-defined parameter /// @param[in] codec audio/video format (see more flv-proto.h) /// @param[in] data a...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libflv/include/flv-header.h
null
null
null
null
null
null
C
2026-05-04T18:31:58.184071
#ifndef _flv_header_h_ #define _flv_header_h_ #include <stdint.h> #include <stddef.h> #if defined(__cplusplus) extern "C" { #endif struct flv_header_t { uint8_t FLV[3]; uint8_t version; uint8_t audio; uint8_t video; uint32_t offset; // data offset }; struct flv_tag_header_t { uint8_t filter; // 0-No pre-proce...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libflv/include/flv-muxer.h
null
null
null
null
null
null
C
2026-05-04T18:31:58.195481
#ifndef _flv_muxer_h_ #define _flv_muxer_h_ #include <stddef.h> #include <stdint.h> #if defined(__cplusplus) extern "C" { #endif typedef struct flv_muxer_t flv_muxer_t; ///Video: FLV VideoTagHeader + AVCVIDEOPACKET: AVCDecoderConfigurationRecord(ISO 14496-15) / One or more NALUs(four-bytes length + NALU) ///Audio: ...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libflv/include/mpeg4-bits.h
null
null
null
null
null
null
C
2026-05-04T18:31:59.578835
#ifndef _mpeg4_bits_h_ #define _mpeg4_bits_h_ #include <stdint.h> #include <stddef.h> #include <assert.h> #ifdef __cplusplus extern "C" { #endif struct mpeg4_bits_t { uint8_t* data; size_t size; size_t bits; // offset bit int error; }; #define mpeg4_bits_read_uint8(bits, n) (uint8_t)mpeg4_bits_read_n(bits, n) ...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libflv/include/flv-reader.h
null
null
null
null
null
null
C
2026-05-04T18:31:59.584779
#ifndef _flv_reader_h_ #define _flv_reader_h_ #include <stdint.h> #include <stddef.h> #if defined(__cplusplus) extern "C" { #endif void* flv_reader_create(const char* file); void* flv_reader_create2(int(*read)(void* param, void* buf, int len), void* param); void flv_reader_destroy(void* flv); ///@param[out] tagtype...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libflv/include/flv-proto.h
null
null
null
null
null
null
C
2026-05-04T18:31:59.587142
#ifndef _flv_proto_h_ #define _flv_proto_h_ // FLV Tag Type #define FLV_TYPE_AUDIO 8 #define FLV_TYPE_VIDEO 9 #define FLV_TYPE_SCRIPT 18 // FLV Audio Type #define FLV_AUDIO_LPCM (0 << 4) // Linear PCM, platform endian #define FLV_AUDIO_ADPCM (1 << 4) #define FLV_AUDIO_MP3 (2 << 4) #define FLV_AUDIO_LLPCM (3 <<...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libflv/include/mp3-header.h
null
null
null
null
null
null
C
2026-05-04T18:31:59.588775
#ifndef _mp3_header_h_ #define _mp3_header_h_ // https://en.wikipedia.org/wiki/MP3 #if defined(__cplusplus) extern "C" { #endif /* ISO/IEC 11172-3 2.4.1.3 Header unsigned int sync: 12 unsigned int version: 1 unsigned int layer: 2 unsigned int error protection: 1 unsigned int bitrate_index: 4 unsigned int sampling_f...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libflv/include/mpeg4-aac.h
null
null
null
null
null
null
C
2026-05-04T18:31:59.590220
#ifndef _mpeg4_aac_h_ #define _mpeg4_aac_h_ #include <stddef.h> #include <stdint.h> #if defined(__cplusplus) extern "C" { #endif struct mpeg4_aac_t { uint8_t profile; // 0-NULL, 1-AAC Main, 2-AAC LC, 2-AAC SSR, 3-AAC LTP uint8_t sampling_frequency_index; // 0-96000, 1-88200, 2-64000, 3-48000, 4-44100,...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libflv/include/mpeg4-avc.h
null
null
null
null
null
null
C
2026-05-04T18:31:59.591080
#ifndef _mpeg4_avc_h_ #define _mpeg4_avc_h_ #include <stdint.h> #include <stddef.h> #if defined(__cplusplus) extern "C" { #endif struct mpeg4_avc_t { // uint8_t version; // 1-only uint8_t profile; uint8_t compatibility; // constraint_set[0-5]_flag uint8_t level; uint8_t nalu; // NALUnitLength = (lengthSizeMinusO...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libflv/include/mpeg4-vvc.h
null
null
null
null
null
null
C
2026-05-04T18:31:59.592652
#ifndef _mpeg_vvc_h #define _mpeg_vvc_h #include <stdint.h> #include <stddef.h> #if defined(__cplusplus) extern "C" { #endif struct mpeg4_vvc_t { uint32_t lengthSizeMinusOne : 2; // 2bit,[0,3] uint32_t ptl_present_flag : 1; // valid on ptl_present_flag uint32_t ols_idx : 9; uint32_t num_sublayers : 3; uint32_...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libflv/include/flv-writer.h
null
null
null
null
null
null
C
2026-05-04T18:31:59.593843
#ifndef _flv_writer_h_ #define _flv_writer_h_ #include <stddef.h> #include <stdint.h> #if defined(__cplusplus) extern "C" { #endif struct flv_vec_t { void* ptr; int len; }; /// @param[in] param flv_writer_create2 param /// @param[in] n vec number /// @return 0-ok, other-error typedef int (*flv_writer_onwrite)(voi...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libflv/include/mpeg4-hevc.h
null
null
null
null
null
null
C
2026-05-04T18:31:59.656252
#ifndef _mpeg4_hevc_h_ #define _mpeg4_hevc_h_ #include <stdint.h> #include <stddef.h> #if defined(__cplusplus) extern "C" { #endif struct mpeg4_hevc_t { uint8_t configurationVersion; // 1-only uint8_t general_profile_space; // 2bit,[0,3] uint8_t general_tier_flag; // 1bit,[0,1] uint8_t general_profile_idc; ...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libflv/include/opus-head.h
null
null
null
null
null
null
C
2026-05-04T18:31:59.656773
#ifndef _opus_head_h_ #define _opus_head_h_ #include <stddef.h> #include <stdint.h> #if defined(__cplusplus) extern "C" { #endif struct opus_head_t { uint8_t version; uint8_t channels; uint16_t pre_skip; uint32_t input_sample_rate; int16_t output_gain; uint8_t channel_mapping_family; uint...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libflv/include/riff-acm.h
null
null
null
null
null
null
C
2026-05-04T18:32:00.241861
#ifndef _riff_acm_h_ #define _riff_acm_h_ #include <stdint.h> #include <stddef.h> #ifndef WAVE_FORMAT_PCM #define WAVE_FORMAT_PCM 1 #define WAVE_FORMAT_ADPCM 2 #define WAVE_FORMAT_ALAW 6 #define WAVE_FORMAT_MULAW 7 #endif #if defined(__cplusplus) extern "C" { #endif #pragma pack(push) #pragma pac...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libflv/include/xiph-flac.h
null
null
null
null
null
null
C
2026-05-04T18:32:00.243673
#ifndef _xiph_flac_h_ #define _xiph_flac_h_ #include <stddef.h> #include <stdint.h> #if defined(__cplusplus) extern "C" { #endif struct flac_streaminfo_t { uint16_t min_block_size; // in samples uint16_t max_block_size; uint32_t min_frame_size; // 24-bits, in bytes uint32_t max_frame_size; uint64...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libflv/source/amf3.c
null
null
null
null
null
null
C
2026-05-04T18:32:00.261036
#include "amf3.h" #include <string.h> #include <assert.h> static double s_double = 1.0; // 3ff0 0000 0000 0000 const uint8_t* AMF3ReadNull(const uint8_t* ptr, const uint8_t* end) { (void)end; return ptr; } const uint8_t* AMF3ReadBoolean(const uint8_t* ptr, const uint8_t* end) { (void)end; return ptr; } const ui...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libflv/include/webm-vpx.h
null
null
null
null
null
null
C
2026-05-04T18:32:00.275736
#ifndef _webm_vpx_h_ #define _webm_vpx_h_ #include <stdint.h> #include <stddef.h> #if defined(__cplusplus) extern "C" { #endif // VP8/VP9/VP10 struct webm_vpx_t { uint8_t profile; uint8_t level; uint8_t bit_depth; uint8_t chroma_subsampling; // 0-4:2:0 vertical, 1-4:2:0 colocated with luma (0,0), 2-4...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libflv/source/amf0.c
null
null
null
null
null
null
C
2026-05-04T18:32:00.276779
#include "amf0.h" #include <stdint.h> #include <stddef.h> #include <string.h> #include <assert.h> static double s_double = 1.0; // 3ff0 0000 0000 0000 static uint8_t* AMFWriteInt16(uint8_t* ptr, const uint8_t* end, uint16_t value) { if (ptr + 2 > end) return NULL; ptr[0] = value >> 8; ptr[1] = value & ...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libflv/source/flv-header.c
null
null
null
null
null
null
C
2026-05-04T18:32:00.318872
#include "flv-header.h" #include "flv-proto.h" #include <stdlib.h> #include <string.h> #include <assert.h> #include <errno.h> #define N_TAG_SIZE 4 // previous tag size #define FLV_HEADER_SIZE 9 // DataOffset included #define FLV_TAG_HEADER_SIZE 11 // StreamID included static inline uint32_t be_read_uint32(const ui...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libflv/source/flv-demuxer.c
null
null
null
null
null
null
C
2026-05-04T18:32:00.343434
#include "flv-demuxer.h" #include "flv-header.h" #include "flv-proto.h" #include "mpeg4-aac.h" #include "mpeg4-avc.h" #include "mpeg4-hevc.h" #include "mpeg4-vvc.h" #include "opus-head.h" #include "xiph-flac.h" #include "aom-av1.h" #include "avswg-avs3.h" #include "amf0.h" #include <stdlib.h> #include <string.h> #inclu...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libflv/source/avswg-avs3.c
null
null
null
null
null
null
C
2026-05-04T18:32:00.375009
#include "avswg-avs3.h" #include <stdio.h> #include <string.h> #include <assert.h> #define AVS3_VIDEO_SEQUENCE_START 0xB0 /* aligned(8) class Avs3DecoderConfigurationRecord { unsigned int(8) configurationVersion = 1; unsigned int(16) sequence_header_length; bit(8*sequence_header_length) sequence_header; bit(6) re...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libflv/source/flv-demuxer-script.c
null
null
null
null
null
null
C
2026-05-04T18:32:00.376963
#include "flv-demuxer.h" #include "amf0.h" #include <errno.h> #include <assert.h> #include <string.h> #define N_ONMETADATA 12 // 2-LEN + 10-onMetaData /// http://www.cnblogs.com/musicfans/archive/2012/11/07/2819291.html /// metadata keyframes/filepositions /// @return >0-OK, 0-don't metadata, <0-error int flv_demuxe...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libflv/source/aom-av1.c
null
null
null
null
null
null
C
2026-05-04T18:32:00.408434
#include "aom-av1.h" #include <stdlib.h> #include <string.h> #include <assert.h> #include <stdio.h> #include "mpeg4-bits.h" // https://aomediacodec.github.io/av1-isobmff // https://aomediacodec.github.io/av1-avif/ enum { OBU_SEQUENCE_HEADER = 1, OBU_TEMPORAL_DELIMITER = 2, OBU_FRAME_HEADER = 3, OBU_TILE_GROUP = 4...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libflv/source/flv-reader.c
null
null
null
null
null
null
C
2026-05-04T18:32:00.881377
#include "flv-reader.h" #include "flv-header.h" #include "flv-proto.h" #include <stdlib.h> #include <string.h> #include <assert.h> #include <stdio.h> #define FLV_HEADER_SIZE 9 // DataOffset included #define FLV_TAG_HEADER_SIZE 11 // StreamID included struct flv_reader_t { FILE* fp; int (*read)(void* param, void* b...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libflv/source/hevc-annexbtomp4.c
null
null
null
null
null
null
C
2026-05-04T18:32:00.900043
#include "mpeg4-hevc.h" #include "mpeg4-avc.h" #include <string.h> #include <assert.h> #include <errno.h> #define H265_NAL_BLA_W_LP 16 #define H265_NAL_RSV_IRAP 23 #define H265_NAL_VPS 32 #define H265_NAL_SPS 33 #define H265_NAL_PPS 34 #define H265_NAL_AUD 35 #define H265_NAL_SEI_PREFIX 39 #define H265_NAL_SEI_SUF...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libflv/source/flv-parser.c
null
null
null
null
null
null
C
2026-05-04T18:32:00.915358
#include "flv-parser.h" #include "flv-header.h" #include "flv-proto.h" #include <stdlib.h> #include <string.h> #include <assert.h> #include <errno.h> #define N_TAG_SIZE 4 // previous tag size #define FLV_HEADER_SIZE 9 // DataOffset included #define FLV_TAG_HEADER_SIZE 11 // StreamID included #define FLV_VIDEO_CODE...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libflv/source/hevc-mp4toannexb.c
null
null
null
null
null
null
C
2026-05-04T18:32:00.985482
#include "mpeg4-hevc.h" #include "mpeg4-avc.h" #include <string.h> #include <assert.h> #include <stdint.h> #include <stddef.h> #include <errno.h> #define H265_NAL_BLA_W_LP 16 #define H265_NAL_RSV_IRAP 23 #define H265_NAL_VPS 32 #define H265_NAL_SPS 33 #define H265_NAL_PPS 34 #define H265_NAL_AUD 35 // Access unit ...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libflv/source/flv-writer.c
null
null
null
null
null
null
C
2026-05-04T18:32:00.986117
#include "flv-writer.h" #include "flv-header.h" #include "flv-proto.h" #include <stdlib.h> #include <string.h> #include <assert.h> #include <stdio.h> #define FLV_HEADER_SIZE 9 // DataOffset included #define FLV_TAG_HEADER_SIZE 11 // StreamID included struct flv_writer_t { FILE* fp; flv_writer_onwrite write; void*...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libflv/source/mp3-header.c
null
null
null
null
null
null
C
2026-05-04T18:32:01.003325
#include "mp3-header.h" #include <stdint.h> #include <string.h> #include <assert.h> // layer-1, layer-2, layer-3 static int s_bitrate_mpeg1[3][16] = { { 0/*free*/, 32000, 64000, 96000, 128000, 160000, 192000, 224000, 256000, 288000, 320000, 352000, 384000, 416000, 448000, -1 }, { 0/*free*/, 32000, 48000, 56000, 6400...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libflv/source/mpeg4-annexbtomp4.c
null
null
null
null
null
null
C
2026-05-04T18:32:01.040238
// ISO/IEC 14496-1:2010(E) // Annex I: Usage of ITU-T Recommendation H.264 | ISO/IEC 14496-10 AVC (p150) // // 1. Start Codes shall not be present in the stream. The field indicating the size of each following NAL unit // shall be added before NAL unit.The size of this field is defined in DecoderSpecificInfo. // 2. ...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libflv/source/flv-muxer.c
null
null
null
null
null
null
C
2026-05-04T18:32:01.080407
#include "flv-muxer.h" #include "flv-proto.h" #include "flv-header.h" #include "amf0.h" #include <stdio.h> #include <errno.h> #include <stdlib.h> #include <assert.h> #include <stdint.h> #include <string.h> #include "aom-av1.h" #include "mpeg4-aac.h" #include "mpeg4-avc.h" #include "mpeg4-vvc.h" #include "mpeg4-hevc.h" ...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libflv/source/mpeg4-aac.c
null
null
null
null
null
null
C
2026-05-04T18:32:01.198875
#include "mpeg4-aac.h" #include <assert.h> #include <string.h> #include <stdio.h> int mpeg4_aac_adts_pce_load(const uint8_t* data, size_t bytes, struct mpeg4_aac_t* aac); int mpeg4_aac_adts_pce_save(uint8_t* data, size_t bytes, const struct mpeg4_aac_t* aac); int mpeg4_aac_audio_specific_config_load2(const uint8_t* da...
ireader/media-server
https://github.com/ireader/media-server
null
null
null
null
3,465
null
null
mit
null
null
null
null
null
null
null
libflv/source/mpeg4-aac-asc.c
null
null
null
null
null
null
C
2026-05-04T18:32:01.272901
#include "mpeg4-aac.h" #include "mpeg4-bits.h" #include <assert.h> #include <stdlib.h> #include <string.h> #include <errno.h> // Table 4.85 - Syntactic elements (p533) enum { ID_SCE = 0x0, // single channel element() ID_CPE = 0x1, // channel_pair_element() ID_CCE = 0x2, // coupling_channel_element() ID_LFE = 0x3, ...
rxi/log.c
https://github.com/rxi/log.c
null
null
null
null
3,461
null
null
mit
null
null
null
null
null
null
null
src/log.h
null
null
null
null
null
null
C
2026-05-04T18:32:03.788631
/** * Copyright (c) 2020 rxi * * This library is free software; you can redistribute it and/or modify it * under the terms of the MIT license. See `log.c` for details. */ #ifndef LOG_H #define LOG_H #include <stdio.h> #include <stdarg.h> #include <stdbool.h> #include <time.h> #define LOG_VERSION "0.1.0" typede...
rxi/log.c
https://github.com/rxi/log.c
null
null
null
null
3,461
null
null
mit
null
null
null
null
null
null
null
src/log.c
null
null
null
null
null
null
C
2026-05-04T18:32:03.864666
/* * Copyright (c) 2020 rxi * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distri...
eclipse-threadx/threadx
https://github.com/eclipse-threadx/threadx
null
null
null
null
3,445
null
null
mit
null
null
null
null
null
null
null
common/inc/tx_semaphore.h
null
null
null
null
null
null
C
2026-05-04T18:32:08.086707
/*************************************************************************** * Copyright (c) 2024 Microsoft Corporation * Copyright (c) 2026-present Eclipse ThreadX contributors * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://...
eclipse-threadx/threadx
https://github.com/eclipse-threadx/threadx
null
null
null
null
3,445
null
null
mit
null
null
null
null
null
null
null
common/inc/tx_thread.h
null
null
null
null
null
null
C
2026-05-04T18:32:08.089365
/*************************************************************************** * Copyright (c) 2024 Microsoft Corporation * Copyright (c) 2026-present Eclipse ThreadX contributors * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://...
eclipse-threadx/threadx
https://github.com/eclipse-threadx/threadx
null
null
null
null
3,445
null
null
mit
null
null
null
null
null
null
null
common/inc/tx_initialize.h
null
null
null
null
null
null
C
2026-05-04T18:32:08.291435
/*************************************************************************** * Copyright (c) 2024 Microsoft Corporation * Copyright (c) 2026-present Eclipse ThreadX contributors * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://...
eclipse-threadx/threadx
https://github.com/eclipse-threadx/threadx
null
null
null
null
3,445
null
null
mit
null
null
null
null
null
null
null
common/inc/tx_trace.h
null
null
null
null
null
null
C
2026-05-04T18:32:08.300689
/*************************************************************************** * Copyright (c) 2024 Microsoft Corporation * Copyright (c) 2026-present Eclipse ThreadX contributors * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://...
eclipse-threadx/threadx
https://github.com/eclipse-threadx/threadx
null
null
null
null
3,445
null
null
mit
null
null
null
null
null
null
null
common/inc/tx_event_flags.h
null
null
null
null
null
null
C
2026-05-04T18:32:08.320054
/*************************************************************************** * Copyright (c) 2024 Microsoft Corporation * Copyright (c) 2026-present Eclipse ThreadX contributors * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://...
eclipse-threadx/threadx
https://github.com/eclipse-threadx/threadx
null
null
null
null
3,445
null
null
mit
null
null
null
null
null
null
null
common/inc/tx_queue.h
null
null
null
null
null
null
C
2026-05-04T18:32:08.320568
/*************************************************************************** * Copyright (c) 2024 Microsoft Corporation * Copyright (c) 2026-present Eclipse ThreadX contributors * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://...
eclipse-threadx/threadx
https://github.com/eclipse-threadx/threadx
null
null
null
null
3,445
null
null
mit
null
null
null
null
null
null
null
common/inc/tx_byte_pool.h
null
null
null
null
null
null
C
2026-05-04T18:32:08.349864
/*************************************************************************** * Copyright (c) 2024 Microsoft Corporation * Copyright (c) 2026-present Eclipse ThreadX contributors * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://...
eclipse-threadx/threadx
https://github.com/eclipse-threadx/threadx
null
null
null
null
3,445
null
null
mit
null
null
null
null
null
null
null
common/inc/tx_user_sample.h
null
null
null
null
null
null
C
2026-05-04T18:32:10.115918
/*************************************************************************** * Copyright (c) 2024 Microsoft Corporation * Copyright (c) 2026-present Eclipse ThreadX contributors * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://...
eclipse-threadx/threadx
https://github.com/eclipse-threadx/threadx
null
null
null
null
3,445
null
null
mit
null
null
null
null
null
null
null
common/src/tx_block_pool_cleanup.c
null
null
null
null
null
null
C
2026-05-04T18:32:10.169839
/*************************************************************************** * Copyright (c) 2024 Microsoft Corporation * Copyright (c) 2026-present Eclipse ThreadX contributors * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://...
eclipse-threadx/threadx
https://github.com/eclipse-threadx/threadx
null
null
null
null
3,445
null
null
mit
null
null
null
null
null
null
null
common/src/tx_block_pool_create.c
null
null
null
null
null
null
C
2026-05-04T18:32:10.216884
/*************************************************************************** * Copyright (c) 2024 Microsoft Corporation * Copyright (c) 2026-present Eclipse ThreadX contributors * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://...
eclipse-threadx/threadx
https://github.com/eclipse-threadx/threadx
null
null
null
null
3,445
null
null
mit
null
null
null
null
null
null
null
common/src/tx_block_pool_info_get.c
null
null
null
null
null
null
C
2026-05-04T18:32:10.217410
/*************************************************************************** * Copyright (c) 2024 Microsoft Corporation * Copyright (c) 2026-present Eclipse ThreadX contributors * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://...
eclipse-threadx/threadx
https://github.com/eclipse-threadx/threadx
null
null
null
null
3,445
null
null
mit
null
null
null
null
null
null
null
common/inc/tx_mutex.h
null
null
null
null
null
null
C
2026-05-04T18:32:10.243177
/*************************************************************************** * Copyright (c) 2024 Microsoft Corporation * Copyright (c) 2026-present Eclipse ThreadX contributors * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://...
eclipse-threadx/threadx
https://github.com/eclipse-threadx/threadx
null
null
null
null
3,445
null
null
mit
null
null
null
null
null
null
null
common/inc/tx_block_pool.h
null
null
null
null
null
null
C
2026-05-04T18:32:10.283001
/*************************************************************************** * Copyright (c) 2024 Microsoft Corporation * Copyright (c) 2026-present Eclipse ThreadX contributors * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://...
eclipse-threadx/threadx
https://github.com/eclipse-threadx/threadx
null
null
null
null
3,445
null
null
mit
null
null
null
null
null
null
null
common/inc/tx_timer.h
null
null
null
null
null
null
C
2026-05-04T18:32:10.284154
/*************************************************************************** * Copyright (c) 2024 Microsoft Corporation * Copyright (c) 2026-present Eclipse ThreadX contributors * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://...
eclipse-threadx/threadx
https://github.com/eclipse-threadx/threadx
null
null
null
null
3,445
null
null
mit
null
null
null
null
null
null
null
common/src/tx_block_allocate.c
null
null
null
null
null
null
C
2026-05-04T18:32:10.443557
/*************************************************************************** * Copyright (c) 2024 Microsoft Corporation * Copyright (c) 2026-present Eclipse ThreadX contributors * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://...
eclipse-threadx/threadx
https://github.com/eclipse-threadx/threadx
null
null
null
null
3,445
null
null
mit
null
null
null
null
null
null
null
common/src/tx_block_pool_performance_info_get.c
null
null
null
null
null
null
C
2026-05-04T18:32:11.722554
/*************************************************************************** * Copyright (c) 2024 Microsoft Corporation * Copyright (c) 2026-present Eclipse ThreadX contributors * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://...
eclipse-threadx/threadx
https://github.com/eclipse-threadx/threadx
null
null
null
null
3,445
null
null
mit
null
null
null
null
null
null
null
common/src/tx_block_pool_performance_system_info_get.c
null
null
null
null
null
null
C
2026-05-04T18:32:11.766928
/*************************************************************************** * Copyright (c) 2024 Microsoft Corporation * Copyright (c) 2026-present Eclipse ThreadX contributors * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://...
eclipse-threadx/threadx
https://github.com/eclipse-threadx/threadx
null
null
null
null
3,445
null
null
mit
null
null
null
null
null
null
null
common/src/tx_block_pool_prioritize.c
null
null
null
null
null
null
C
2026-05-04T18:32:11.968608
/*************************************************************************** * Copyright (c) 2024 Microsoft Corporation * Copyright (c) 2026-present Eclipse ThreadX contributors * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://...
eclipse-threadx/threadx
https://github.com/eclipse-threadx/threadx
null
null
null
null
3,445
null
null
mit
null
null
null
null
null
null
null
common/src/tx_byte_pool_create.c
null
null
null
null
null
null
C
2026-05-04T18:32:11.997201
/*************************************************************************** * Copyright (c) 2024 Microsoft Corporation * Copyright (c) 2026-present Eclipse ThreadX contributors * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://...
eclipse-threadx/threadx
https://github.com/eclipse-threadx/threadx
null
null
null
null
3,445
null
null
mit
null
null
null
null
null
null
null
common/src/tx_byte_pool_cleanup.c
null
null
null
null
null
null
C
2026-05-04T18:32:11.998390
/*************************************************************************** * Copyright (c) 2024 Microsoft Corporation * Copyright (c) 2026-present Eclipse ThreadX contributors * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://...
eclipse-threadx/threadx
https://github.com/eclipse-threadx/threadx
null
null
null
null
3,445
null
null
mit
null
null
null
null
null
null
null
common/src/tx_block_release.c
null
null
null
null
null
null
C
2026-05-04T18:32:12.083724
/*************************************************************************** * Copyright (c) 2024 Microsoft Corporation * Copyright (c) 2026-present Eclipse ThreadX contributors * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://...