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
joypad-ai/joypad-os
https://github.com/joypad-ai/joypad-os
null
null
null
null
1,350
null
null
apache-2.0
null
null
null
null
null
null
null
nrf/src/flash_nrf.c
null
null
null
null
null
null
C
2026-05-04T19:12:41.725816
// flash_nrf.c - NVS-based settings storage for Seeed XIAO nRF52840 // // Implements flash.h API using Zephyr's NVS subsystem. // Same flash_t struct, just stored in NVS instead of raw flash. #include "core/services/storage/flash.h" #include "platform/platform.h" #include <stdio.h> #include <string.h> #include <zephy...
joypad-ai/joypad-os
https://github.com/joypad-ai/joypad-os
null
null
null
null
1,350
null
null
apache-2.0
null
null
null
null
null
null
null
nrf/src/main.c
null
null
null
null
null
null
C
2026-05-04T19:12:41.776962
// main.c - nRF52840 entry point // // Zephyr entry point for bt2usb/usb2usb apps on nRF52840 boards. // bt2usb: BTstack runs in its own Zephyr thread (created by bt_transport_nrf.c). // usb2usb: USB host via MAX3421E SPI, no Bluetooth. // Main thread handles USB device, app logic, LED, and storage. #include <stdio.h>...
joypad-ai/joypad-os
https://github.com/joypad-ai/joypad-os
null
null
null
null
1,350
null
null
apache-2.0
null
null
null
null
null
null
null
nrf/src/stubs_peripheral.c
null
null
null
null
null
null
C
2026-05-04T19:12:41.838701
// stubs_peripheral.c - Weak stubs for peripheral-only nRF52840 builds // // When building in peripheral mode (controller_btusb), btstack_host.c and // bthid are not linked. Shared code (router.c, cdc_commands.c, sinput_mode.c) // references symbols from those modules. These weak stubs satisfy the linker. #include <st...
joypad-ai/joypad-os
https://github.com/joypad-ai/joypad-os
null
null
null
null
1,350
null
null
apache-2.0
null
null
null
null
null
null
null
nrf/src/tusb_config_nrf.h
null
null
null
null
null
null
C
2026-05-04T19:12:41.850788
// tusb_config_nrf.h - TinyUSB configuration for nRF52840 boards // // Device configuration for nRF52840 boards. // When CONFIG_MAX3421 is defined, adds USB host via MAX3421E FeatherWing. #ifndef _TUSB_CONFIG_H_ #define _TUSB_CONFIG_H_ #ifdef __cplusplus extern "C" { #endif //---------------------------------------...
joypad-ai/joypad-os
https://github.com/joypad-ai/joypad-os
null
null
null
null
1,350
null
null
apache-2.0
null
null
null
null
null
null
null
nrf/src/max3421_host_nrf.c
null
null
null
null
null
null
C
2026-05-04T19:12:41.876704
// max3421_host_nrf.c - MAX3421E USB Host for nRF52840 (Zephyr) // // Implements TinyUSB MAX3421E platform callbacks using direct nRF SPI registers. // Used with the Adafruit MAX3421E FeatherWing (#5858) on Feather nRF52840. // // Uses direct NRF_SPI1 register access instead of Zephyr's SPI driver because // TinyUSB ca...
joypad-ai/joypad-os
https://github.com/joypad-ai/joypad-os
null
null
null
null
1,350
null
null
apache-2.0
null
null
null
null
null
null
null
nrf/src/ws2812_nrf.c
null
null
null
null
null
null
C
2026-05-04T19:12:41.889465
// ws2812_nrf.c - RGB LED driver for nRF52840 boards // // XIAO nRF52840: 3 discrete LEDs (R=P0.26, G=P0.30, B=P0.06), active LOW // Feather nRF52840: WS2812 NeoPixel on P0.16 via PWM3 + EasyDMA // + discrete blue LED on P1.10 (fallback alive indicator) #include <stdint.h> #include <stdbool.h> #...
joypad-ai/joypad-os
https://github.com/joypad-ai/joypad-os
null
null
null
null
1,350
null
null
apache-2.0
null
null
null
null
null
null
null
nrf/src/pad_config_storage_nrf.c
null
null
null
null
null
null
C
2026-05-04T19:12:41.919776
// pad_config_storage_nrf.c - nRF52840 Zephyr NVS storage for pad config // SPDX-License-Identifier: Apache-2.0 // Copyright 2024 Robert Dale Smith #include "pad/pad_config_storage.h" #include <zephyr/fs/nvs.h> #include <string.h> #include <stdio.h> // NVS key for pad config (must not collide with flash_nrf.c key=1 o...
joypad-ai/joypad-os
https://github.com/joypad-ai/joypad-os
null
null
null
null
1,350
null
null
apache-2.0
null
null
null
null
null
null
null
src/apps/bt2gc/app.c
null
null
null
null
null
null
C
2026-05-04T19:12:41.938683
// app.c - BT2GC App Entry Point // Bluetooth to GameCube console adapter for Pico W // // Uses Pico W's built-in CYW43 Bluetooth to receive controllers, // outputs to GameCube via joybus PIO protocol. #include "app.h" #include "profiles.h" #include "core/router/router.h" #include "core/services/players/manager.h" #in...
joypad-ai/joypad-os
https://github.com/joypad-ai/joypad-os
null
null
null
null
1,350
null
null
apache-2.0
null
null
null
null
null
null
null
nrf/src/platform_gpio_nrf.c
null
null
null
null
null
null
C
2026-05-04T19:12:41.982083
// platform_gpio_nrf.c - nRF52840 GPIO/ADC implementation (Zephyr) // SPDX-License-Identifier: Apache-2.0 #include "platform/platform_gpio.h" #include <zephyr/drivers/gpio.h> #include <zephyr/drivers/adc.h> #include <stdio.h> // nRF52840 has two GPIO ports: P0 (0-31) and P1 (32-47 mapped as 32+pin) // Zephyr gpio_dt_...
joypad-ai/joypad-os
https://github.com/joypad-ai/joypad-os
null
null
null
null
1,350
null
null
apache-2.0
null
null
null
null
null
null
null
src/apps/bt2gc/app.h
null
null
null
null
null
null
C
2026-05-04T19:12:42.050436
// app.h - BT2GC App Manifest // Bluetooth to GameCube console adapter for Pico W // // Uses Pico W's built-in CYW43 Bluetooth to receive controllers, // outputs to GameCube via joybus PIO protocol. #ifndef APP_BT2GC_H #define APP_BT2GC_H // ============================================================================...
joypad-ai/joypad-os
https://github.com/joypad-ai/joypad-os
null
null
null
null
1,350
null
null
apache-2.0
null
null
null
null
null
null
null
src/apps/bt2gc/app_config.h
null
null
null
null
null
null
C
2026-05-04T19:12:42.493268
/* * GameCube Console LED Configuration * Defines player LED colors and patterns for controllers */ #ifndef CONSOLE_LED_CONFIG_H #define CONSOLE_LED_CONFIG_H // Player 1 - Purple #define LED_P1_R 20 #define LED_P1_G 0 #define LED_P1_B 40 #define LED_P1_PATTERN 0b00100 // Player 2 - Blue #define LED_P2_R 0 #define...
joypad-ai/joypad-os
https://github.com/joypad-ai/joypad-os
null
null
null
null
1,350
null
null
apache-2.0
null
null
null
null
null
null
null
src/apps/bt2gc/profiles.h
null
null
null
null
null
null
C
2026-05-04T19:12:42.495499
// profiles.h - USB2GC Profile Definitions // // Button mapping profiles for USB to GameCube adapter. // Uses console-specific button aliases for readability. // // GameCube button layout: // A (B1) - Large green button // B (B2) - Small red button // X (B4) - Right of A // Y (B3) - Above A // Z (R1) - Digita...
joypad-ai/joypad-os
https://github.com/joypad-ai/joypad-os
null
null
null
null
1,350
null
null
apache-2.0
null
null
null
null
null
null
null
src/apps/bt2loopy/app.h
null
null
null
null
null
null
C
2026-05-04T19:12:42.497549
// app.h - BT2LOOPY App Manifest // Bluetooth to Casio Loopy adapter for Pico W // // Uses Pico W's built-in CYW43 Bluetooth to receive controllers, // outputs to Casio Loopy via PIO protocol. // // This manifest declares what drivers and services this app needs. // The build system uses these flags to conditionally co...
joypad-ai/joypad-os
https://github.com/joypad-ai/joypad-os
null
null
null
null
1,350
null
null
apache-2.0
null
null
null
null
null
null
null
src/apps/bt2loopy/profiles.h
null
null
null
null
null
null
C
2026-05-04T19:12:42.529243
// profiles.h - BT2Loopy Profile Definitions // // Button mapping profiles for Bluetooth to Casio Loopy adapter. // Uses console-specific button aliases for readability. // // Loopy button layout: // A (B1) - Primary action (bottom) // B (B2) - Secondary action (right) // C (B3) - Tertiary (top) // D (B4) - Qua...
joypad-ai/joypad-os
https://github.com/joypad-ai/joypad-os
null
null
null
null
1,350
null
null
apache-2.0
null
null
null
null
null
null
null
src/apps/bt2loopy/app_config.h
null
null
null
null
null
null
C
2026-05-04T19:12:42.530303
/* * Casio Loopy Console LED Configuration * Defines player LED colors and patterns for controllers */ #ifndef CONSOLE_LED_CONFIG_H #define CONSOLE_LED_CONFIG_H // Player 1 - Pink/Magenta #define LED_P1_R 64 #define LED_P1_G 0 #define LED_P1_B 64 #define LED_P1_PATTERN 0b00100 // Player 2 - Blue #define LED_P2_R ...
joypad-ai/joypad-os
https://github.com/joypad-ai/joypad-os
null
null
null
null
1,350
null
null
apache-2.0
null
null
null
null
null
null
null
src/apps/bt2loopy/app.c
null
null
null
null
null
null
C
2026-05-04T19:12:42.672423
// app.c - BT2LOOPY App Entry Point // Bluetooth to Casio Loopy adapter for Pico W // // Uses Pico W's built-in CYW43 Bluetooth to receive controllers, // outputs to Casio Loopy via PIO protocol. #include "app.h" #include "profiles.h" #include "core/router/router.h" #include "core/services/players/manager.h" #include ...
joypad-ai/joypad-os
https://github.com/joypad-ai/joypad-os
null
null
null
null
1,350
null
null
apache-2.0
null
null
null
null
null
null
null
src/apps/bt2n64/app.h
null
null
null
null
null
null
C
2026-05-04T19:12:42.691374
// app.h - BT2N64 App Manifest // Bluetooth to N64 console adapter for Pico W // // Uses Pico W's built-in CYW43 Bluetooth to receive controllers, // outputs to N64 via joybus PIO protocol. // // This manifest declares what drivers and services this app needs. // The build system uses these flags to conditionally compi...
joypad-ai/joypad-os
https://github.com/joypad-ai/joypad-os
null
null
null
null
1,350
null
null
apache-2.0
null
null
null
null
null
null
null
src/apps/bt2n64/profiles.h
null
null
null
null
null
null
C
2026-05-04T19:12:42.824889
// profiles.h - BT2N64 Profile Definitions // // Button mapping profiles for Bluetooth to N64 adapter. // Uses N64-specific button aliases for readability. // // N64 button layout: // A - Large blue button // B - Small green button // Z - Under controller trigger // L - Left shoulder // R - Right shoulder // ...
joypad-ai/joypad-os
https://github.com/joypad-ai/joypad-os
null
null
null
null
1,350
null
null
apache-2.0
null
null
null
null
null
null
null
src/apps/bt2n64/app.c
null
null
null
null
null
null
C
2026-05-04T19:12:42.833328
// app.c - BT2N64 App Entry Point // Bluetooth to N64 console adapter for Pico W // // Uses Pico W's built-in CYW43 Bluetooth to receive controllers, // outputs to N64 via joybus PIO protocol. #include "app.h" #include "profiles.h" #include "core/router/router.h" #include "core/services/players/manager.h" #include "co...
joypad-ai/joypad-os
https://github.com/joypad-ai/joypad-os
null
null
null
null
1,350
null
null
apache-2.0
null
null
null
null
null
null
null
src/apps/bt2n64/app_config.h
null
null
null
null
null
null
C
2026-05-04T19:12:42.834644
/* * N64 Console LED Configuration (BT2N64) * Defines player LED colors and patterns for controllers */ #ifndef CONSOLE_LED_CONFIG_H #define CONSOLE_LED_CONFIG_H // Player 1 - Dark Blue (N64 controller color) #define LED_P1_R 0 #define LED_P1_G 0 #define LED_P1_B 48 #define LED_P1_PATTERN 0b00100 // Player 2 - Gr...
joypad-ai/joypad-os
https://github.com/joypad-ai/joypad-os
null
null
null
null
1,350
null
null
apache-2.0
null
null
null
null
null
null
null
src/apps/bt2usb/app.c
null
null
null
null
null
null
C
2026-05-04T19:12:43.697032
// app.c - BT2USB App Entry Point // Bluetooth to USB HID gamepad adapter for Pico W // // Uses Pico W's built-in CYW43 Bluetooth to receive controllers, // outputs as USB HID device. #include "app.h" #include "core/router/router.h" #include "core/services/players/manager.h" #include "core/services/players/feedback.h"...
joypad-ai/joypad-os
https://github.com/joypad-ai/joypad-os
null
null
null
null
1,350
null
null
apache-2.0
null
null
null
null
null
null
null
src/apps/bt2usb/app_config.h
null
null
null
null
null
null
C
2026-05-04T19:12:43.698739
/* * BT2USB Console LED Configuration * Defines player LED colors and patterns for Bluetooth controllers */ #ifndef CONSOLE_LED_CONFIG_H #define CONSOLE_LED_CONFIG_H // Player 1 - Cyan #define LED_P1_R 0 #define LED_P1_G 40 #define LED_P1_B 40 #define LED_P1_PATTERN 0b00100 // Player 2 - Blue #define LED_P2_R 0 #...
joypad-ai/joypad-os
https://github.com/joypad-ai/joypad-os
null
null
null
null
1,350
null
null
apache-2.0
null
null
null
null
null
null
null
src/apps/bt2nuon/app_config.h
null
null
null
null
null
null
C
2026-05-04T19:12:43.699600
/* * Nuon Console LED Configuration * Defines player LED colors and patterns for controllers */ #ifndef CONSOLE_LED_CONFIG_H #define CONSOLE_LED_CONFIG_H // Player 1 - Red #define LED_P1_R 64 #define LED_P1_G 0 #define LED_P1_B 0 #define LED_P1_PATTERN 0b00100 // Player 2 - Blue #define LED_P2_R 0 #define LED_P2_...
joypad-ai/joypad-os
https://github.com/joypad-ai/joypad-os
null
null
null
null
1,350
null
null
apache-2.0
null
null
null
null
null
null
null
src/apps/bt2usb/app.h
null
null
null
null
null
null
C
2026-05-04T19:12:43.700205
// app.h - BT2USB App Manifest // Bluetooth to USB adapter (HID Gamepad output) for Pico W // // Uses Pico W's built-in CYW43 Bluetooth to receive controllers, // outputs as USB HID device. // // This manifest declares what drivers and services this app needs. // The build system uses these flags to conditionally compi...
joypad-ai/joypad-os
https://github.com/joypad-ai/joypad-os
null
null
null
null
1,350
null
null
apache-2.0
null
null
null
null
null
null
null
src/apps/bt2nuon/app.h
null
null
null
null
null
null
C
2026-05-04T19:12:43.705984
// app.h - BT2NUON App Manifest // Bluetooth to Nuon DVD player adapter for Pico W // // Uses Pico W's built-in CYW43 Bluetooth to receive controllers, // outputs to Nuon via Polyface PIO protocol. // // This manifest declares what drivers and services this app needs. // The build system uses these flags to conditional...
joypad-ai/joypad-os
https://github.com/joypad-ai/joypad-os
null
null
null
null
1,350
null
null
apache-2.0
null
null
null
null
null
null
null
src/apps/bt2nuon/profiles.h
null
null
null
null
null
null
C
2026-05-04T19:12:43.706446
// profiles.h - BT2Nuon Profile Definitions // // Button mapping profiles for Bluetooth to Nuon adapter. // Uses console-specific button aliases for readability. // // Nuon button layout: // A (B1) - Main action button // B (B3) - Secondary action // C-Up/Down/Left/Right - C-pad (L2, B2, B4, R2) // L/R (L1/R1) ...
joypad-ai/joypad-os
https://github.com/joypad-ai/joypad-os
null
null
null
null
1,350
null
null
apache-2.0
null
null
null
null
null
null
null
src/apps/bt2nuon/app.c
null
null
null
null
null
null
C
2026-05-04T19:12:43.769365
// app.c - BT2NUON App Entry Point // Bluetooth to Nuon DVD player adapter for Pico W // // Uses Pico W's built-in CYW43 Bluetooth to receive controllers, // outputs to Nuon via Polyface PIO protocol. #include "app.h" #include "profiles.h" #include "core/router/router.h" #include "core/services/players/manager.h" #inc...
joypad-ai/joypad-os
https://github.com/joypad-ai/joypad-os
null
null
null
null
1,350
null
null
apache-2.0
null
null
null
null
null
null
null
src/apps/bt2wiiext/app.c
null
null
null
null
null
null
C
2026-05-04T19:12:48.506304
// app.c - BT2WIIEXT App Entry Point // BT input → Wii extension-port I2C slave output on Pico W. #include "app.h" #include "core/router/router.h" #include "core/services/players/manager.h" #include "core/services/button/button.h" #include "core/input_interface.h" #include "core/output_interface.h" #include "native/de...
joypad-ai/joypad-os
https://github.com/joypad-ai/joypad-os
null
null
null
null
1,350
null
null
apache-2.0
null
null
null
null
null
null
null
src/apps/bt2wiiext/app.h
null
null
null
null
null
null
C
2026-05-04T19:12:48.584771
// app.h - BT2WIIEXT App Manifest // Bluetooth controllers → Wii extension-port emulation on Pico W. // // A real Wiimote plugs into the microcontroller's I2C bus (extension // socket wiring) and sees a Wii Classic Controller responding to its // polls. Input comes from any Bluetooth HID controller (Xbox, Sony, // Nint...
joypad-ai/joypad-os
https://github.com/joypad-ai/joypad-os
null
null
null
null
1,350
null
null
apache-2.0
null
null
null
null
null
null
null
src/apps/bt2wiiext/app_config.h
null
null
null
null
null
null
C
2026-05-04T19:12:48.613090
/* * N64 Console LED Configuration (BT2N64) * Defines player LED colors and patterns for controllers */ #ifndef CONSOLE_LED_CONFIG_H #define CONSOLE_LED_CONFIG_H // Player 1 - Dark Blue (N64 controller color) #define LED_P1_R 0 #define LED_P1_G 0 #define LED_P1_B 48 #define LED_P1_PATTERN 0b00100 // Player 2 - Gr...
unum-cloud/UCall
https://github.com/unum-cloud/UCall
null
null
null
null
1,325
null
null
apache-2.0
null
null
null
null
null
null
null
src/python.c
null
null
null
null
null
null
C
2026-05-04T19:12:51.751156
/** * @brief Pure CPython bindings for UCall. * @author Ash Vardanian * @file python.c * @date 2023-01-30 * * @copyright Copyright (c) 2023 * * @see Reading Materials * https://pythoncapi.readthedocs.io/type_object.html * https://numpy.org/doc/stable/reference/c-api/types-and-structures.html *...
unum-cloud/UCall
https://github.com/unum-cloud/UCall
null
null
null
null
1,325
null
null
apache-2.0
null
null
null
null
null
null
null
src/helpers/py_to_json.h
null
null
null
null
null
null
C
2026-05-04T19:12:51.793593
#pragma once #define PY_SSIZE_T_CLEAN #include <Python.h> #include <turbob64.h> static const char int_to_hex_k[16] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'}; static void char_to_hex(uint8_t const c, uint8_t* hex) { hex[0] = int_to_hex_k[c >> 4]; hex[1] = int_to_hex_k...
unum-cloud/UCall
https://github.com/unum-cloud/UCall
null
null
null
null
1,325
null
null
apache-2.0
null
null
null
null
null
null
null
include/ucall/ucall.h
null
null
null
null
null
null
C
2026-05-04T19:12:51.846488
/** * @file ucall.h * @author Ash Vardanian * @date Feb 3, 2023 * * @addtogroup C * * @brief Binary Interface for UCall. * * ## Basic Usage * * To use UCall, at the very least you need the following few functions: * * - `ucall_init()` - to start a server, * - `ucall_add_procedure()` - to regi...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/ipv6-parse/ipv6.c
null
null
null
null
null
null
C
2026-05-04T19:12:55.303505
#include "ipv6.h" #include "ipv6_config.h" #ifdef HAVE_STDIO_H #include <stdio.h> #endif #ifdef HAVE_STRING_H #include <string.h> #endif #ifdef HAVE_STDARG_H #include <stdarg.h> #endif #if defined(PARSE_TRACE) #define IPV6_TRACE(...) printf(__VA_ARGS__) #else #define IPV6_TRACE(...) #endif #ifdef HAVE__SNPRINTF_S...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/include/uv/linux.h
null
null
null
null
null
null
C
2026-05-04T19:12:55.304069
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved. * * 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 * righ...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/include/uv/aix.h
null
null
null
null
null
null
C
2026-05-04T19:12:55.305674
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved. * * 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 * righ...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/ipv6-parse/ipv6.h
null
null
null
null
null
null
C
2026-05-04T19:12:55.313781
#pragma once // # IPv6 / IPv4 address parser in C // // A self-contained embeddable address parsing library. // // ![IPv6 Parse Diagram](ipv6-parse.png) // // Author: jacobrepp@gmail.com // License: MIT // // [![Build Status](https://travis-ci.org/jrepp/ipv6-parse.svg?branch=master)](https://travis-ci.org/jrepp/ipv...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/ipv6-parse/ipv6_config.h
null
null
null
null
null
null
C
2026-05-04T19:12:55.317151
#define HAVE_MALLOC_H 1 #define HAVE_ALLOCA_H 1 #define HAVE_STRING_H 1 #define HAVE_STDIO_H 1 #define HAVE_STDARG_H 1 //#cmakedefine HAVE__SNPRINTF_S 1 #ifdef PHP_WIN32 # include "config.w32.h" #else # include "php_config.h" #endif #if WIN32 # pragma warning(disable: 4820) // Disable alignment errors in windows head...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/include/uv/os390.h
null
null
null
null
null
null
C
2026-05-04T19:12:55.326744
/* Copyright libuv project contributors. All rights reserved. * * 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, cop...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/include/uv/bsd.h
null
null
null
null
null
null
C
2026-05-04T19:12:55.333146
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved. * * 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 * righ...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/include/uv/errno.h
null
null
null
null
null
null
C
2026-05-04T19:12:55.334340
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved. * * 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 * righ...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/include/uv/darwin.h
null
null
null
null
null
null
C
2026-05-04T19:12:55.357095
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved. * * 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 * righ...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/include/uv.h
null
null
null
null
null
null
C
2026-05-04T19:12:55.358359
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved. * * 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 * righ...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/include/uv/tree.h
null
null
null
null
null
null
C
2026-05-04T19:13:00.955273
/*- * Copyright 2002 Niels Provos <provos@citi.umich.edu> * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice,...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/include/uv/posix.h
null
null
null
null
null
null
C
2026-05-04T19:13:00.964511
/* Copyright libuv project contributors. All rights reserved. * * 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, cop...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/include/uv/sunos.h
null
null
null
null
null
null
C
2026-05-04T19:13:00.983840
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved. * * 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 * righ...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/include/uv/unix.h
null
null
null
null
null
null
C
2026-05-04T19:13:00.985356
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved. * * 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 * righ...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/include/uv/threadpool.h
null
null
null
null
null
null
C
2026-05-04T19:13:00.986697
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved. * * 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 * righ...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/include/uv/version.h
null
null
null
null
null
null
C
2026-05-04T19:13:00.990555
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved. * * 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 * righ...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/src/fs-poll.c
null
null
null
null
null
null
C
2026-05-04T19:13:00.995639
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved. * * 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 * righ...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/src/heap-inl.h
null
null
null
null
null
null
C
2026-05-04T19:13:01.024506
/* Copyright (c) 2013, Ben Noordhuis <info@bnoordhuis.nl> * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" A...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/include/uv/win.h
null
null
null
null
null
null
C
2026-05-04T19:13:01.044018
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved. * * 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 * righ...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/src/hat_atomic.h
null
null
null
null
null
null
C
2026-05-04T19:13:01.049223
/* +--------------------------------------------------------------------------+ | libhat | +--------------------------------------------------------------------------+ | Licensed under the Apache License, Version 2.0 (the "License"); | ...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/src/idna.h
null
null
null
null
null
null
C
2026-05-04T19:13:01.539467
/* Copyright libuv contributors. All rights reserved. * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND T...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/src/idna.c
null
null
null
null
null
null
C
2026-05-04T19:13:01.547374
/* Copyright libuv contributors. All rights reserved. * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND T...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/src/strtok.c
null
null
null
null
null
null
C
2026-05-04T19:13:01.648641
/* Copyright libuv project contributors. All rights reserved. * * 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, cop...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/src/strtok.h
null
null
null
null
null
null
C
2026-05-04T19:13:01.649880
/* Copyright libuv project contributors. All rights reserved. * * 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, cop...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/src/inet.c
null
null
null
null
null
null
C
2026-05-04T19:13:01.654691
/* * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") * Copyright (c) 1996-1999 by Internet Software Consortium. * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission ...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/src/queue.h
null
null
null
null
null
null
C
2026-05-04T19:13:01.659485
/* Copyright (c) 2013, Ben Noordhuis <info@bnoordhuis.nl> * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" A...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/src/strscpy.h
null
null
null
null
null
null
C
2026-05-04T19:13:01.669834
/* Copyright libuv project contributors. All rights reserved. * * 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, cop...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/src/random.c
null
null
null
null
null
null
C
2026-05-04T19:13:01.679218
/* Copyright libuv contributors. All rights reserved. * * 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, modif...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/src/strscpy.c
null
null
null
null
null
null
C
2026-05-04T19:13:01.689429
/* Copyright libuv project contributors. All rights reserved. * * 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, cop...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/src/thread-common.c
null
null
null
null
null
null
C
2026-05-04T19:13:01.718818
/* Copyright libuv project contributors. All rights reserved. * * 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, cop...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/src/threadpool.c
null
null
null
null
null
null
C
2026-05-04T19:13:02.104152
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved. * * 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 * righ...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/src/timer.c
null
null
null
null
null
null
C
2026-05-04T19:13:02.216529
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved. * 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 ...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/src/unix/aix-common.c
null
null
null
null
null
null
C
2026-05-04T19:13:02.268041
/* Copyright libuv project contributors. All rights reserved. * * 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, cop...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/src/unix/async.c
null
null
null
null
null
null
C
2026-05-04T19:13:02.279959
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved. * 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 ...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/src/unix/bsd-ifaddrs.c
null
null
null
null
null
null
C
2026-05-04T19:13:02.283383
/* Copyright libuv project contributors. All rights reserved. * * 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, cop...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/src/unix/cygwin.c
null
null
null
null
null
null
C
2026-05-04T19:13:02.322799
/* Copyright libuv project contributors. All rights reserved. * * 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, cop...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/src/unix/aix.c
null
null
null
null
null
null
C
2026-05-04T19:13:02.324172
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved. * * 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 * righ...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/src/unix/bsd-proctitle.c
null
null
null
null
null
null
C
2026-05-04T19:13:02.351769
/* Copyright libuv project contributors. All rights reserved. * * 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, cop...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/src/unix/darwin-proctitle.c
null
null
null
null
null
null
C
2026-05-04T19:13:02.356111
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved. * 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 ...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/src/unix/core.c
null
null
null
null
null
null
C
2026-05-04T19:13:02.380989
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved. * 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 ...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/src/unix/darwin-stub.h
null
null
null
null
null
null
C
2026-05-04T19:13:02.715077
/* Copyright libuv project contributors. All rights reserved. * * 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, cop...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/src/unix/darwin-syscalls.h
null
null
null
null
null
null
C
2026-05-04T19:13:02.837456
#ifndef UV_DARWIN_SYSCALLS_H_ #define UV_DARWIN_SYSCALLS_H_ #include <sys/types.h> #include <sys/socket.h> /* https://github.com/apple/darwin-xnu/blob/master/bsd/sys/socket.h */ struct mmsghdr { struct msghdr msg_hdr; size_t msg_len; }; ssize_t recvmsg_x(int s, const struct mmsghdr* msgp, u_int cnt, int fla...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/src/unix/darwin.c
null
null
null
null
null
null
C
2026-05-04T19:13:02.900900
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved. * 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 ...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/src/unix/dl.c
null
null
null
null
null
null
C
2026-05-04T19:13:02.920319
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved. * * 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 * righ...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/src/unix/freebsd.c
null
null
null
null
null
null
C
2026-05-04T19:13:02.931786
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved. * 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 ...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/src/unix/haiku.c
null
null
null
null
null
null
C
2026-05-04T19:13:02.974462
/* Copyright libuv project contributors. All rights reserved. * * 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, cop...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/src/unix/fsevents.c
null
null
null
null
null
null
C
2026-05-04T19:13:02.983747
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved. * 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 ...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/src/unix/getaddrinfo.c
null
null
null
null
null
null
C
2026-05-04T19:13:02.995134
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved. * 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 ...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/src/unix/getnameinfo.c
null
null
null
null
null
null
C
2026-05-04T19:13:03.005285
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved. * * 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...
swow/swow
https://github.com/swow/swow
null
null
null
null
1,319
null
null
apache-2.0
null
null
null
null
null
null
null
ext/deps/libcat/deps/libuv/src/unix/fs.c
null
null
null
null
null
null
C
2026-05-04T19:13:03.005766
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved. * * 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 * righ...
twitter/fatcache
https://github.com/twitter/fatcache
null
null
null
null
1,301
null
null
apache-2.0
null
null
null
null
null
null
null
src/fc_array.c
null
null
null
null
null
null
C
2026-05-04T19:13:05.411506
/* * fatcache - memcache on ssd. * Copyright (C) 2013 Twitter, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless require...
twitter/fatcache
https://github.com/twitter/fatcache
null
null
null
null
1,301
null
null
apache-2.0
null
null
null
null
null
null
null
src/fc_client.c
null
null
null
null
null
null
C
2026-05-04T19:13:05.412744
/* * fatcache - memcache on ssd. * Copyright (C) 2013 Twitter, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless require...
twitter/fatcache
https://github.com/twitter/fatcache
null
null
null
null
1,301
null
null
apache-2.0
null
null
null
null
null
null
null
src/fc_common.h
null
null
null
null
null
null
C
2026-05-04T19:13:05.420849
#ifndef _FC_COMMON_H_ #define _FC_COMMON_H_ #define FC_OK 0 #define FC_ERROR -1 #define FC_EAGAIN -2 #define FC_ENOMEM -3 typedef int rstatus_t; /* return type */ typedef int err_t; /* error type */ #include <stddef.h> #include <stdint.h> #include <stdbool.h> #include <inttypes.h> #include <unistd....
twitter/fatcache
https://github.com/twitter/fatcache
null
null
null
null
1,301
null
null
apache-2.0
null
null
null
null
null
null
null
src/fc_connection.c
null
null
null
null
null
null
C
2026-05-04T19:13:05.421948
/* * fatcache - memcache on ssd. * Copyright (C) 2013 Twitter, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless require...
twitter/fatcache
https://github.com/twitter/fatcache
null
null
null
null
1,301
null
null
apache-2.0
null
null
null
null
null
null
null
src/fc_connection.h
null
null
null
null
null
null
C
2026-05-04T19:13:05.433910
/* * fatcache - memcache on ssd. * Copyright (C) 2013 Twitter, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless require...
twitter/fatcache
https://github.com/twitter/fatcache
null
null
null
null
1,301
null
null
apache-2.0
null
null
null
null
null
null
null
src/fc_client.h
null
null
null
null
null
null
C
2026-05-04T19:13:05.435070
/* * fatcache - memcache on ssd. * Copyright (C) 2013 Twitter, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless require...
twitter/fatcache
https://github.com/twitter/fatcache
null
null
null
null
1,301
null
null
apache-2.0
null
null
null
null
null
null
null
src/fc.c
null
null
null
null
null
null
C
2026-05-04T19:13:05.466640
/* * fatcache - memcache on ssd. * Copyright (C) 2013 Twitter, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless require...
twitter/fatcache
https://github.com/twitter/fatcache
null
null
null
null
1,301
null
null
apache-2.0
null
null
null
null
null
null
null
src/fc_core.c
null
null
null
null
null
null
C
2026-05-04T19:13:05.467176
/* * fatcache - memcache on ssd. * Copyright (C) 2013 Twitter, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless require...
twitter/fatcache
https://github.com/twitter/fatcache
null
null
null
null
1,301
null
null
apache-2.0
null
null
null
null
null
null
null
src/fc_core.h
null
null
null
null
null
null
C
2026-05-04T19:13:05.497455
/* * fatcache - memcache on ssd. * Copyright (C) 2013 Twitter, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless require...
twitter/fatcache
https://github.com/twitter/fatcache
null
null
null
null
1,301
null
null
apache-2.0
null
null
null
null
null
null
null
src/fc_array.h
null
null
null
null
null
null
C
2026-05-04T19:13:05.498486
/* * fatcache - memcache on ssd. * Copyright (C) 2013 Twitter, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless require...
twitter/fatcache
https://github.com/twitter/fatcache
null
null
null
null
1,301
null
null
apache-2.0
null
null
null
null
null
null
null
src/fc_event.h
null
null
null
null
null
null
C
2026-05-04T19:13:06.029572
/* * fatcache - memcache on ssd. * Copyright (C) 2013 Twitter, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless require...
twitter/fatcache
https://github.com/twitter/fatcache
null
null
null
null
1,301
null
null
apache-2.0
null
null
null
null
null
null
null
src/fc_event.c
null
null
null
null
null
null
C
2026-05-04T19:13:06.055278
/* * fatcache - memcache on ssd. * Copyright (C) 2013 Twitter, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless require...
twitter/fatcache
https://github.com/twitter/fatcache
null
null
null
null
1,301
null
null
apache-2.0
null
null
null
null
null
null
null
src/fc_itemx.c
null
null
null
null
null
null
C
2026-05-04T19:13:06.069122
/* * fatcache - memcache on ssd. * Copyright (C) 2013 Twitter, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless require...
twitter/fatcache
https://github.com/twitter/fatcache
null
null
null
null
1,301
null
null
apache-2.0
null
null
null
null
null
null
null
src/fc_itemx.h
null
null
null
null
null
null
C
2026-05-04T19:13:06.070123
/* * fatcache - memcache on ssd. * Copyright (C) 2013 Twitter, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless require...
twitter/fatcache
https://github.com/twitter/fatcache
null
null
null
null
1,301
null
null
apache-2.0
null
null
null
null
null
null
null
src/fc_item.h
null
null
null
null
null
null
C
2026-05-04T19:13:06.083543
/* * fatcache - memcache on ssd. * Copyright (C) 2013 Twitter, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless require...
twitter/fatcache
https://github.com/twitter/fatcache
null
null
null
null
1,301
null
null
apache-2.0
null
null
null
null
null
null
null
src/fc_item.c
null
null
null
null
null
null
C
2026-05-04T19:13:06.093783
/* * fatcache - memcache on ssd. * Copyright (C) 2013 Twitter, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless require...
twitter/fatcache
https://github.com/twitter/fatcache
null
null
null
null
1,301
null
null
apache-2.0
null
null
null
null
null
null
null
src/fc_log.c
null
null
null
null
null
null
C
2026-05-04T19:13:06.123538
/* * fatcache - memcache on ssd. * Copyright (C) 2013 Twitter, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless require...