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
fossasia/pslab-firmware
https://github.com/fossasia/pslab-firmware
null
null
null
null
1,574
null
null
apache-2.0
null
null
null
null
null
null
null
src/bus/spi/spi.h
null
null
null
null
null
null
C
2026-05-04T19:09:58.902902
#ifndef _SPI_H #define _SPI_H #include <stdbool.h> #include <stdint.h> #include <xc.h> #include "../../commands.h" /// @brief SPI chip select multiplexer. typedef enum { SPI_CH1 = 0b0000, ///< CH1 PGA SPI_CH2 = 0b0001, ///< CH2 PGA SPI_PS = 0b0010, ///< Power source SPI_HD = 0b0...
fossasia/pslab-firmware
https://github.com/fossasia/pslab-firmware
null
null
null
null
1,574
null
null
apache-2.0
null
null
null
null
null
null
null
src/bus/i2c/i2c.c
null
null
null
null
null
null
C
2026-05-04T19:09:58.906101
#include "i2c.h" #include "../../bus/uart/uart.h" #include "../../helpers/delay.h" #include "../../registers/system/pin_manager.h" /** I2C Driver Queue Status Type @Summary Defines the type used for the transaction queue status. @Description This defines type used to keep track of the queue status. */...
fossasia/pslab-firmware
https://github.com/fossasia/pslab-firmware
null
null
null
null
1,574
null
null
apache-2.0
null
null
null
null
null
null
null
src/helpers/buffer.h
null
null
null
null
null
null
C
2026-05-04T19:10:00.018272
#ifndef BUFFER_H #define BUFFER_H #include <stdint.h> #define BUFFER_SIZE 10000 #ifdef __cplusplus extern "C" { #endif extern uint16_t volatile __attribute__((section(".adc_buffer"), far)) BUFFER[BUFFER_SIZE]; /** * @brief Send buffer contents. * * @description * This command funct...
fossasia/pslab-firmware
https://github.com/fossasia/pslab-firmware
null
null
null
null
1,574
null
null
apache-2.0
null
null
null
null
null
null
null
src/helpers/delay.c
null
null
null
null
null
null
C
2026-05-04T19:10:00.260940
#include "delay.h" #include <libpic30.h> void DELAY_ms(unsigned long d) { __delay_ms(d); } void DELAY_us(unsigned long d) { __delay_us(d); }
fossasia/pslab-firmware
https://github.com/fossasia/pslab-firmware
null
null
null
null
1,574
null
null
apache-2.0
null
null
null
null
null
null
null
src/helpers/interval.h
null
null
null
null
null
null
C
2026-05-04T19:10:00.263003
#ifndef INTERVAL_H #define INTERVAL_H #include <xc.h> #include "../commands.h" #ifdef __cplusplus extern "C" { #endif /** * @brief Setup input capture on one channel * * @description * This routing will configure IC1,2 and DMA0,1 modules to listen to logic * level changes on a pin d...
fossasia/pslab-firmware
https://github.com/fossasia/pslab-firmware
null
null
null
null
1,574
null
null
apache-2.0
null
null
null
null
null
null
null
src/helpers/device.h
null
null
null
null
null
null
C
2026-05-04T19:10:00.264378
#ifndef VERSION_H #define VERSION_H #ifdef __cplusplus extern "C" { #endif /** * @brief Get hardware version. * @return DO_NOT_BOTHER */ response_t DEVICE_GetVersion(void); /** * @brief Get firmware version. * @return MAJOR (uint8_t), MINOR (uint8_t), PATCH (uint8_t) */ ...
fossasia/pslab-firmware
https://github.com/fossasia/pslab-firmware
null
null
null
null
1,574
null
null
apache-2.0
null
null
null
null
null
null
null
src/helpers/debug.h
null
null
null
null
null
null
C
2026-05-04T19:10:00.267878
#ifndef _DEBUG_H #define _DEBUG_H #include "../commands.h" // Enable debug messages over serial with -DENABLE_DEBUG CMake flag. #ifdef SERIAL_DEBUG #define DEBUG_write_u8(byte) UART1_Write(byte) #define DEBUG_write_u16(word) UART1_WriteInt(word) #define DEBUG_write_u32(dword) UART1_write_u32(dword) #else...
fossasia/pslab-firmware
https://github.com/fossasia/pslab-firmware
null
null
null
null
1,574
null
null
apache-2.0
null
null
null
null
null
null
null
src/helpers/delay.h
null
null
null
null
null
null
C
2026-05-04T19:10:00.268910
#ifndef DELAY_H #define DELAY_H /** * @file delay.h * @brief Delay functions. * * This file contains wrapper functions for the compiler built in delay * functions. The reason for this is that other files which need to use delays * can include just a single file, delay.h, instead of needing to both define * FCY ...
fossasia/pslab-firmware
https://github.com/fossasia/pslab-firmware
null
null
null
null
1,574
null
null
apache-2.0
null
null
null
null
null
null
null
src/helpers/debug.c
null
null
null
null
null
null
C
2026-05-04T19:10:00.269974
#include <stdbool.h> #include "../bus/uart/uart.h" #include "../commands.h" #include "debug.h" response_t DEBUG_is_enabled(void) { #ifdef PSLAB_DEBUG bool const IS_DEBUG_ENABLED = true; #else bool const IS_DEBUG_ENABLED = false; #endif // PSLAB_DEBUG UART1_Write(IS_DEBUG_ENABLED); ...
fossasia/pslab-firmware
https://github.com/fossasia/pslab-firmware
null
null
null
null
1,574
null
null
apache-2.0
null
null
null
null
null
null
null
src/helpers/light.c
null
null
null
null
null
null
C
2026-05-04T19:10:00.271951
#include <xc.h> #include "../bus/uart/uart.h" #include "../registers/system/interrupt_manager.h" #include "../registers/system/pin_manager.h" #include "light.h" #define SendZero(pin) do {\ pin = 1;\ __asm__ __volatile__("repeat #22");\ Nop();\ pin = 0;\ __asm...
fossasia/pslab-firmware
https://github.com/fossasia/pslab-firmware
null
null
null
null
1,574
null
null
apache-2.0
null
null
null
null
null
null
null
src/helpers/interval.c
null
null
null
null
null
null
C
2026-05-04T19:10:00.273739
#include "../bus/uart/uart.h" #include "../registers/comparators/cmp4.h" #include "../registers/comparators/cvr.h" #include "../registers/comparators/ic1.h" #include "../registers/comparators/ic2.h" #include "../registers/comparators/ic3.h" #include "../registers/comparators/ic4.h" #include "../registers/comparators/ic...
fossasia/pslab-firmware
https://github.com/fossasia/pslab-firmware
null
null
null
null
1,574
null
null
apache-2.0
null
null
null
null
null
null
null
src/helpers/device.c
null
null
null
null
null
null
C
2026-05-04T19:10:00.275127
#include <stdint.h> #include <stddef.h> #include "../bus/uart/uart.h" #include "../commands.h" #include "../registers/system/pin_manager.h" #include "../registers/system/watchdog.h" #define SEMVERS 3 static uint8_t const VERSION_HW[] = #ifndef V5_HW "PSLab V6"; #else "PSLab V5"; #endif // V5_HW static union ...
fossasia/pslab-firmware
https://github.com/fossasia/pslab-firmware
null
null
null
null
1,574
null
null
apache-2.0
null
null
null
null
null
null
null
src/helpers/light.h
null
null
null
null
null
null
C
2026-05-04T19:10:01.121307
#ifndef LIGHT_H #define LIGHT_H #ifdef __cplusplus extern "C" { #endif /** * @brief Control the color of RGB LED * * @description * Lights up the RGB LED. This method takes around 61.5 us to finish. * * @param * red: red color level (0-255) * green: green color level ...
fossasia/pslab-firmware
https://github.com/fossasia/pslab-firmware
null
null
null
null
1,574
null
null
apache-2.0
null
null
null
null
null
null
null
src/helpers/rtc.h
null
null
null
null
null
null
C
2026-05-04T19:10:01.862200
#ifndef RTC_H #define RTC_H #include <xc.h> #include "../commands.h" #define DS1307_I2C_DEVICE_ADDRESS 0x68 #ifdef __cplusplus extern "C" { #endif typedef enum { DS1307_DATA_REG_SECONDS, // Clock Halt (1) | 10 Seconds (3) | Seconds (4) DS1307_DATA_REG_MINUTES, // XX (1) | 10 Minutes (...
fossasia/pslab-firmware
https://github.com/fossasia/pslab-firmware
null
null
null
null
1,574
null
null
apache-2.0
null
null
null
null
null
null
null
src/instruments/multimeter.h
null
null
null
null
null
null
C
2026-05-04T19:10:01.876846
#ifndef MULTIMETER_H #define MULTIMETER_H #ifdef __cplusplus extern "C" { #endif /** * @brief Read a single voltage instance using ADC * @return SUCCESS */ response_t MULTIMETER_GetVoltage(void); /** * @brief Read multiple (16) voltage instances using ADC * @return SUCCESS ...
fossasia/pslab-firmware
https://github.com/fossasia/pslab-firmware
null
null
null
null
1,574
null
null
apache-2.0
null
null
null
null
null
null
null
src/instruments/oscilloscope.c
null
null
null
null
null
null
C
2026-05-04T19:10:01.878182
#include <stdbool.h> #include <stdint.h> #include <xc.h> #include "../registers/converters/adc1.h" #include "../registers/memory/dma.h" #include "../registers/system/pin_manager.h" #include "../registers/timers/tmr5.h" #include "../bus/spi/spi.h" #include "../bus/uart/uart.h" #include "../helpers/buffer.h" #include "....
fossasia/pslab-firmware
https://github.com/fossasia/pslab-firmware
null
null
null
null
1,574
null
null
apache-2.0
null
null
null
null
null
null
null
src/instruments/oscilloscope.h
null
null
null
null
null
null
C
2026-05-04T19:10:01.959275
#ifndef OSCILLOSCOPE_H #define OSCILLOSCOPE_H /** * @brief Capture samples on a single channel. * * @description * This command function takes three arguments over serial: * 1. (uint8) Configuration byte: * | 7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 | * | TE | - | - | CH123SA | CH0SA ...
fossasia/pslab-firmware
https://github.com/fossasia/pslab-firmware
null
null
null
null
1,574
null
null
apache-2.0
null
null
null
null
null
null
null
src/instruments/logicanalyzer.c
null
null
null
null
null
null
C
2026-05-04T19:10:01.959822
#include <stdint.h> #include "../bus/uart/uart.h" #include "../helpers/interval.h" #include "../registers/comparators/ic1.h" #include "../registers/comparators/ic2.h" #include "../registers/comparators/ic3.h" #include "../registers/comparators/ic4.h" #include "../registers/comparators/ic_params.h" #include "../register...
fossasia/pslab-firmware
https://github.com/fossasia/pslab-firmware
null
null
null
null
1,574
null
null
apache-2.0
null
null
null
null
null
null
null
src/instruments/powersource.c
null
null
null
null
null
null
C
2026-05-04T19:10:01.972396
#include <stdbool.h> #include "../commands.h" #include "../bus/uart/uart.h" #include "../bus/i2c/i2c.h" #include "../bus/spi/spi.h" #include "powersource.h" /*********/ /* Types */ /*********/ /** @brief Channel selection. * @details * V5 hardware has four independent channels: * 0: PCS * ...
fossasia/pslab-firmware
https://github.com/fossasia/pslab-firmware
null
null
null
null
1,574
null
null
apache-2.0
null
null
null
null
null
null
null
src/instruments/logicanalyzer.h
null
null
null
null
null
null
C
2026-05-04T19:10:02.055824
#ifndef LOGICANALYZER_H #define LOGICANALYZER_H #include "../commands.h" /** * @brief Capture logic level changes on a single channel. * * @description * This routine will log timer values for the changes occurred in a pin defined * by the configuration byte. * * If a trigger is enabled, this will use an ex...
fossasia/pslab-firmware
https://github.com/fossasia/pslab-firmware
null
null
null
null
1,574
null
null
apache-2.0
null
null
null
null
null
null
null
src/instruments/multimeter.c
null
null
null
null
null
null
C
2026-05-04T19:10:02.056740
#include "../commands.h" #include "../bus/uart/uart.h" #include "../helpers/delay.h" #include "../registers/converters/adc1.h" #include "../registers/converters/ctmu.h" #include "../registers/memory/dma.h" #include "../registers/system/pin_manager.h" #include "../registers/timers/tmr5.h" #include "multimeter.h" enum {...
fossasia/pslab-firmware
https://github.com/fossasia/pslab-firmware
null
null
null
null
1,574
null
null
apache-2.0
null
null
null
null
null
null
null
src/helpers/rtc.c
null
null
null
null
null
null
C
2026-05-04T19:10:02.057850
#include <stdint.h> #include <time.h> #include "../bus/i2c/i2c.h" #include "../bus/uart/uart.h" #include "../commands.h" #include "../registers/system/pin_manager.h" #include "delay.h" #include "light.h" #include "rtc.h" // This bit is used to enable the oscillator. When negated, the oscillator is disabled. static ui...
fossasia/pslab-firmware
https://github.com/fossasia/pslab-firmware
null
null
null
null
1,574
null
null
apache-2.0
null
null
null
null
null
null
null
src/instruments/powersource.h
null
null
null
null
null
null
C
2026-05-04T19:10:02.724155
#ifndef POWER_SOURCE_H #define POWER_SOURCE_H #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ /** * @brief Set the voltage output of the power source's individual channels. * * @param channel uint8_t * One of the DAC channels: * PSLab V6: * 0 (0b00) - PC...
fossasia/pslab-firmware
https://github.com/fossasia/pslab-firmware
null
null
null
null
1,574
null
null
apache-2.0
null
null
null
null
null
null
null
src/registers/comparators/cmp1.h
null
null
null
null
null
null
C
2026-05-04T19:10:03.163273
#ifndef _CMP1_H #define _CMP1_H #include <xc.h> #include <stdbool.h> #include <stdint.h> #include <stdlib.h> #ifdef __cplusplus // Provide C++ Compatibility extern "C" { #endif /** @Summary This function initializes Comparator instance : 1 @Description This routine initializes the C...
fossasia/pslab-firmware
https://github.com/fossasia/pslab-firmware
null
null
null
null
1,574
null
null
apache-2.0
null
null
null
null
null
null
null
src/main.c
null
null
null
null
null
null
C
2026-05-04T19:10:03.163821
#include "registers/system/system.h" #include "states.h" int main(void) { SYSTEM_Initialize(); state_t current_state = STATE_STANDBY; while (1) { current_state = STATES_RunState(current_state); } return 1; }
fossasia/pslab-firmware
https://github.com/fossasia/pslab-firmware
null
null
null
null
1,574
null
null
apache-2.0
null
null
null
null
null
null
null
src/instruments/wavegenerator.c
null
null
null
null
null
null
C
2026-05-04T19:10:03.166003
#include <xc.h> #include "../commands.h" #include "../bus/uart/uart.h" #include "../registers/timers/tmr1.h" #include "../registers/timers/tmr2.h" #include "../registers/timers/tmr3.h" #include "../registers/timers/tmr4.h" #include "../registers/memory/dma.h" #include "../registers/comparators/oc1.h" #include "../regis...
fossasia/pslab-firmware
https://github.com/fossasia/pslab-firmware
null
null
null
null
1,574
null
null
apache-2.0
null
null
null
null
null
null
null
src/registers/comparators/cmp1.c
null
null
null
null
null
null
C
2026-05-04T19:10:03.174407
#include "cmp1.h" void CMP1_Initialize(void) { // PSIDL disabled; CMSTAT = 0x00; // CON enabled; CPOL Not Inverted; OPMODE Comparator; EVPOL Disabled; COE disabled; CCH C1IN1-; CREF C1IN1+; CEVT disabled; CM1CON = 0x8000 & ~(0x8000); //disabling Comparator CON bit // SELSRCC PWM1L; SELSRCB PWM1L;...
fossasia/pslab-firmware
https://github.com/fossasia/pslab-firmware
null
null
null
null
1,574
null
null
apache-2.0
null
null
null
null
null
null
null
src/instruments/wavegenerator.h
null
null
null
null
null
null
C
2026-05-04T19:10:03.175348
#ifndef WAVEGENERATOR_H #define WAVEGENERATOR_H #ifdef __cplusplus extern "C" { #endif /** * @brief Replace default wave table pattern 1 with a user defined sequence * @return SUCCESS */ response_t WAVEGENERATOR_LoadWaveForm1(void); /** * @brief Reads the content of wave table pat...
fossasia/pslab-firmware
https://github.com/fossasia/pslab-firmware
null
null
null
null
1,574
null
null
apache-2.0
null
null
null
null
null
null
null
src/instruments/sensors.h
null
null
null
null
null
null
C
2026-05-04T19:10:03.181365
#ifndef SENSORS_H #define SENSORS_H #include <xc.h> #include "../registers/comparators/ic_params.h" /** * @brief This method will configure all 4 Input Capture modules to listen * to state changes in pin1 and pin2. The state changes are defined in * IC_PARAMS_CAPTURE_MODE and each of the pin is fe...
fossasia/pslab-firmware
https://github.com/fossasia/pslab-firmware
null
null
null
null
1,574
null
null
apache-2.0
null
null
null
null
null
null
null
src/registers/comparators/cmp2.c
null
null
null
null
null
null
C
2026-05-04T19:10:03.182489
#include "cmp2.h" void CMP2_Initialize(void) { // PSIDL disabled; CMSTAT = 0x00; // CON enabled; CPOL Not Inverted; OPMODE Comparator; EVPOL Disabled; COE disabled; CCH C2IN1-; CREF C2IN1+; CEVT disabled; CM2CON = 0x8000 & ~(0x8000); //disabling Comparator CON bit // SELSRCC PWM1L; SELSRCB PWM1L;...
fossasia/pslab-firmware
https://github.com/fossasia/pslab-firmware
null
null
null
null
1,574
null
null
apache-2.0
null
null
null
null
null
null
null
src/registers/comparators/cmp2.h
null
null
null
null
null
null
C
2026-05-04T19:10:03.221652
#ifndef _CMP2_H #define _CMP2_H #include <xc.h> #include <stdbool.h> #include <stdint.h> #include <stdlib.h> #ifdef __cplusplus // Provide C++ Compatibility extern "C" { #endif /** @Summary This function initializes Comparator instance : 2 @Description This routine initializes the C...
fossasia/pslab-firmware
https://github.com/fossasia/pslab-firmware
null
null
null
null
1,574
null
null
apache-2.0
null
null
null
null
null
null
null
src/instruments/sensors.c
null
null
null
null
null
null
C
2026-05-04T19:10:03.252340
/******************************************************************************* * This file contains secondary measurements and configurations used by other * instruments ******************************************************************************/ #include "../registers/comparators/cmp4.h" #include "../register...
fossasia/pslab-firmware
https://github.com/fossasia/pslab-firmware
null
null
null
null
1,574
null
null
apache-2.0
null
null
null
null
null
null
null
src/registers/comparators/cmp3.c
null
null
null
null
null
null
C
2026-05-04T19:10:03.538988
#include "cmp3.h" void CMP3_Initialize(void) { // PSIDL disabled; CMSTAT = 0x00; // CON enabled; CPOL Not Inverted; OPMODE Comparator; EVPOL Disabled; COE disabled; CCH C3IN1-; CREF C3IN1+; CEVT disabled; CM3CON = 0x8000 & ~(0x8000); //disabling Comparator CON bit // SELSRCC PWM1L; SELSRCB PWM1L;...
fossasia/pslab-firmware
https://github.com/fossasia/pslab-firmware
null
null
null
null
1,574
null
null
apache-2.0
null
null
null
null
null
null
null
src/registers/comparators/cmp4.h
null
null
null
null
null
null
C
2026-05-04T19:10:03.789240
#ifndef _CMP4_H #define _CMP4_H #include <xc.h> #include <stdbool.h> #include <stdint.h> #include <stdlib.h> #ifdef __cplusplus // Provide C++ Compatibility extern "C" { #endif /** @Summary This function initializes Comparator instance : 4 @Description This routine initializes the C...
fossasia/pslab-firmware
https://github.com/fossasia/pslab-firmware
null
null
null
null
1,574
null
null
apache-2.0
null
null
null
null
null
null
null
src/registers/comparators/cmp4.c
null
null
null
null
null
null
C
2026-05-04T19:10:03.816833
#include "cmp4.h" #include "cmp_params.h" void CMP4_Initialize(void) { CMP4_InitializeStatus(); CMP4_InitializeControl(); CMP4_InitializeMaskSource(); CMP4_InitializeMaskGatingControl(); CMP4_InitializeFilterControl(); CMP4_ComparatorEnable(); } void CMP4_InitializeStatus(void) { // Cont...
fossasia/pslab-firmware
https://github.com/fossasia/pslab-firmware
null
null
null
null
1,574
null
null
apache-2.0
null
null
null
null
null
null
null
src/registers/comparators/cmp3.h
null
null
null
null
null
null
C
2026-05-04T19:10:03.850197
#ifndef _CMP3_H #define _CMP3_H #include <xc.h> #include <stdbool.h> #include <stdint.h> #include <stdlib.h> #ifdef __cplusplus // Provide C++ Compatibility extern "C" { #endif /** @Summary This function initializes Comparator instance : 3 @Description This routine initializes the C...
fossasia/pslab-firmware
https://github.com/fossasia/pslab-firmware
null
null
null
null
1,574
null
null
apache-2.0
null
null
null
null
null
null
null
src/registers/comparators/cmp_params.h
null
null
null
null
null
null
C
2026-05-04T19:10:03.867673
#ifndef CMP_PARAMS_H #define CMP_PARAMS_H #include <xc.h> #ifdef __cplusplus extern "C" { #endif typedef enum { CMP_MASK_PWM1L = 0b0000, CMP_MASK_PWM1H = 0b0001, CMP_MASK_PWM2L = 0b0010, CMP_MASK_PWM2H = 0b0011, CMP_MASK...
fossasia/pslab-firmware
https://github.com/fossasia/pslab-firmware
null
null
null
null
1,574
null
null
apache-2.0
null
null
null
null
null
null
null
src/registers/comparators/cvr.h
null
null
null
null
null
null
C
2026-05-04T19:10:03.898149
#ifndef _CVR_H #define _CVR_H #include <xc.h> #include <stdbool.h> #include <stdint.h> #include <stdlib.h> #ifdef __cplusplus // Provide C++ Compatibility extern "C" { #endif /** @Summary This function initializes CVR @Description This routine initializes the CVR driver index, maki...
fossasia/pslab-firmware
https://github.com/fossasia/pslab-firmware
null
null
null
null
1,574
null
null
apache-2.0
null
null
null
null
null
null
null
src/registers/comparators/ic1.c
null
null
null
null
null
null
C
2026-05-04T19:10:03.928905
#include "ic1.h" void IC1_Initialize(void) { IC1_InitializeCON1(); IC1_InitializeCON2(); } void IC1_InitializeCON1(void) { // Input capture continues to operate in CPU idle mode IC1CON1bits.ICSIDL = 0; // Input capture clock source is set to timer 3 IC1CON1bits.ICTSEL = IC_PARAMS_CAPTURE_TIMER...
fossasia/pslab-firmware
https://github.com/fossasia/pslab-firmware
null
null
null
null
1,574
null
null
apache-2.0
null
null
null
null
null
null
null
src/registers/comparators/ic1.h
null
null
null
null
null
null
C
2026-05-04T19:10:03.962167
#ifndef _IC1_H #define _IC1_H #include <xc.h> #include <stdint.h> #include <stdbool.h> #include "ic_params.h" #ifdef __cplusplus // Provide C++ Compatibility extern "C" { #endif void IC1_Initialize(void); void IC1_InitializeCON1(void); void IC1_InitializeCON2(void); /** @Summary Enab...
mytechnotalent/Hacking-Windows
https://github.com/mytechnotalent/Hacking-Windows
null
null
null
null
1,573
null
null
apache-2.0
null
null
null
null
null
null
null
0x0011-createfile/main.c
null
null
null
null
null
null
C
2026-05-04T19:10:11.486739
#include <stdio.h> #include <Windows.h> int main(void) { HANDLE hFile; hFile = CreateFile( L"C:\\temp\\test.txt", GENERIC_READ | GENERIC_WRITE, FILE_SHARE_READ, NULL, CREATE_NEW, FILE_ATTRIBUTE_NORMAL, NULL ); if (hFile == INVALID_HANDLE_VALUE) ...
mytechnotalent/Hacking-Windows
https://github.com/mytechnotalent/Hacking-Windows
null
null
null
null
1,573
null
null
apache-2.0
null
null
null
null
null
null
null
0x0006-directories/main.c
null
null
null
null
null
null
C
2026-05-04T19:10:11.491583
#include <stdio.h> #include <Windows.h> int main(void) { BOOL bDir; bDir = CreateDirectory( L"C:\\mydir", NULL ); if (bDir == FALSE) { printf("CreateDirectory failed & error no %ul\n", GetLastError()); } else { printf("CreateDirectory Success!\n"); }...
mytechnotalent/Hacking-Windows
https://github.com/mytechnotalent/Hacking-Windows
null
null
null
null
1,573
null
null
apache-2.0
null
null
null
null
null
null
null
0x0012-writefile/0x0012-writefile.c
null
null
null
null
null
null
C
2026-05-04T19:10:11.500499
#include <stdio.h> #include <Windows.h> int main(void) { HANDLE hFile; BOOL bFile; char lpBuffer[] = "Reversing is my life!"; DWORD nNumberOfBytesToWrite = strlen(lpBuffer); hFile = CreateFile( L"C:\\temp\\test.txt", GENERIC_READ | GENERIC_WRITE, FILE_SHARE_READ, NU...
mytechnotalent/Hacking-Windows
https://github.com/mytechnotalent/Hacking-Windows
null
null
null
null
1,573
null
null
apache-2.0
null
null
null
null
null
null
null
0x0007-copyfile/main.c
null
null
null
null
null
null
C
2026-05-04T19:10:11.592870
#include <stdio.h> #include <Windows.h> int main(void) { BOOL bFile; bFile = CopyFile( L"C:\\temp\\test1.txt", L"C:\\temp\\test2.txt", TRUE ); if (bFile == FALSE) { printf("CopyFile failed & error no %ul\n", GetLastError()); } else { printf("CopyFile Success!\n"); } return 0; }
mytechnotalent/Hacking-Windows
https://github.com/mytechnotalent/Hacking-Windows
null
null
null
null
1,573
null
null
apache-2.0
null
null
null
null
null
null
null
0x0010-movefile/main.c
null
null
null
null
null
null
C
2026-05-04T19:10:11.599043
#include <stdio.h> #include <Windows.h> int main(void) { BOOL bFile; bFile = MoveFile( L"C:\\temp\\test1.txt", L"C:\\temp\\test2.txt" ); if (bFile == FALSE) { printf("MoveFile failed and error no %ul\n", GetLastError()); } else { printf("MoveFile Success!"); } }
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
bindings/java/src/jni/vmware/javavmware.c
null
null
null
null
null
null
C
2026-05-04T19:10:14.291927
/* * Copyright (c) 2006-2007 Hyperic, 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 required by applicable law or...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
bindings/java/src/jni/vmware/vmcontrol_wrapper.h
null
null
null
null
null
null
C
2026-05-04T19:10:14.303757
/* * Copyright (c) 2006-2007 Hyperic, 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 required by applicable law or...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
bindings/java/src/jni/win32/win32bindings.h
null
null
null
null
null
null
C
2026-05-04T19:10:14.309260
/* * Copyright (c) 2004-2006 Hyperic, 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 required by applicable law or...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
bindings/java/src/jni/vmware/vmcontrol_wrapper.c
null
null
null
null
null
null
C
2026-05-04T19:10:14.310646
/* * Copyright (c) 2006 Hyperic, 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 required by applicable law or agre...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
bindings/erl/c_src/sigar_drv.c
null
null
null
null
null
null
C
2026-05-04T19:10:14.312039
/* * Copyright (c) 2009 SpringSource, Inc. * Copyright (c) 2010 VMware, 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 * * U...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
bindings/java/src/jni/win32/pdh.c
null
null
null
null
null
null
C
2026-05-04T19:10:14.315122
/* * Copyright (c) 2004-2007 Hyperic, Inc. * Copyright (c) 2010 VMware, 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 * * U...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
bindings/java/src/jni/javasigar.c
null
null
null
null
null
null
C
2026-05-04T19:10:14.318094
/* * Copyright (c) 2004-2008 Hyperic, Inc. * Copyright (c) 2009 SpringSource, Inc. * Copyright (c) 2010 VMware, 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://ww...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
bindings/java/src/jni/javasigar.h
null
null
null
null
null
null
C
2026-05-04T19:10:14.324306
/* * Copyright (c) 2004, 2006, 2008 Hyperic, Inc. * Copyright (c) 2010 VMware, 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 ...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
bindings/java/src/jni/win32/eventlog.c
null
null
null
null
null
null
C
2026-05-04T19:10:14.329524
/* * Copyright (c) 2004-2007, 2009 Hyperic, Inc. * Copyright (c) 2009-2010 VMware, 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-...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
bindings/java/src/jni/win32/util.c
null
null
null
null
null
null
C
2026-05-04T19:10:14.330377
/* * Copyright (c) 2004-2006, 2008 Hyperic, 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 required by applicable ...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
bindings/lua/sigar-swap.c
null
null
null
null
null
null
C
2026-05-04T19:10:14.987836
/** * Copyright (c) 2009, Sun Microsystems Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * - Redistributions of source code must retain the above copyright notice, * this list o...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
bindings/lua/lua-sigar.h
null
null
null
null
null
null
C
2026-05-04T19:10:14.988458
/** * Copyright (c) 2009, Sun Microsystems Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * - Redistributions of source code must retain the above copyright notice, * this list o...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
bindings/lua/sigar-proc.c
null
null
null
null
null
null
C
2026-05-04T19:10:15.000322
/** * Copyright (c) 2009, Sun Microsystems Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * - Redistributions of source code must retain the above copyright notice, * this list o...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
bindings/lua/sigar-netif.c
null
null
null
null
null
null
C
2026-05-04T19:10:15.001361
/** * Copyright (c) 2009, Sun Microsystems Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * - Redistributions of source code must retain the above copyright notice, * this list o...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
bindings/lua/sigar-sysinfo.c
null
null
null
null
null
null
C
2026-05-04T19:10:15.005920
/** * Copyright (c) 2009, Sun Microsystems Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * - Redistributions of source code must retain the above copyright notice, * this list o...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
bindings/lua/sigar-cpu.c
null
null
null
null
null
null
C
2026-05-04T19:10:15.007434
/** * Copyright (c) 2009, Sun Microsystems Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * - Redistributions of source code must retain the above copyright notice, * this list o...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
bindings/lua/sigar-disk.c
null
null
null
null
null
null
C
2026-05-04T19:10:15.019519
/** * Copyright (c) 2009, Sun Microsystems Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * - Redistributions of source code must retain the above copyright notice, * this list o...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
bindings/lua/sigar-version.c
null
null
null
null
null
null
C
2026-05-04T19:10:15.028572
/** * Copyright (c) 2009, Sun Microsystems Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * - Redistributions of source code must retain the above copyright notice, * this list o...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
bindings/lua/sigar-mem.c
null
null
null
null
null
null
C
2026-05-04T19:10:15.041151
/** * Copyright (c) 2009, Sun Microsystems Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * - Redistributions of source code must retain the above copyright notice, * this list o...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
bindings/lua/sigar-fs.c
null
null
null
null
null
null
C
2026-05-04T19:10:15.041703
/** * Copyright (c) 2009, Sun Microsystems Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * - Redistributions of source code must retain the above copyright notice, * this list o...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
examples/cpuinfo.c
null
null
null
null
null
null
C
2026-05-04T19:10:16.264768
/* * Copyright (c) 2008 Hyperic, 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 required by applicable law or agre...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
bindings/php/php_sigar.h
null
null
null
null
null
null
C
2026-05-04T19:10:16.267130
/* * Copyright (c) 2007 Hyperic, 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 required by applicable law or agre...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
bindings/lua/sigar.c
null
null
null
null
null
null
C
2026-05-04T19:10:16.268208
/** * Copyright (c) 2009, Sun Microsystems Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * - Redistributions of source code must retain the above copyright notice, * this list o...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
bindings/lua/sigar-who.c
null
null
null
null
null
null
C
2026-05-04T19:10:16.269074
/** * Copyright (c) 2009, Sun Microsystems Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * - Redistributions of source code must retain the above copyright notice, * this list o...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
bindings/python/_sigar.c
null
null
null
null
null
null
C
2026-05-04T19:10:16.270632
/* * Copyright (c) 2007 Hyperic, Inc. * Copyright (c) 2010-2011 VMware, 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 * * U...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
bindings/php/php_sigar.c
null
null
null
null
null
null
C
2026-05-04T19:10:16.271505
/* * Copyright (c) 2007 Hyperic, 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 required by applicable law or agre...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
examples/sigar_ps.c
null
null
null
null
null
null
C
2026-05-04T19:10:17.063993
/* * Copyright (c) 2006 Hyperic, 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 required by applicable law or agre...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
go_bindings/Sigar/include/sigar_getline.h
null
null
null
null
null
null
C
2026-05-04T19:10:17.291567
#ifndef SIGAR_GETLINE_H #define SIGAR_GETLINE_H #include "sigar.h" typedef int (*sigar_getline_completer_t)(char *, int, int *); SIGAR_DECLARE(char *) sigar_getline(char *prompt); SIGAR_DECLARE(void) sigar_getline_setwidth(int width); SIGAR_DECLARE(void) sigar_getline_redraw(void); SIGAR_DECLARE(void) sigar_getline_...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
bindings/ruby/rbsigar.c
null
null
null
null
null
null
C
2026-05-04T19:10:17.292877
/* * Copyright (c) 2007-2009 Hyperic, Inc. * Copyright (c) 2009 SpringSource, Inc. * Copyright (c) 2009-2010 VMware, 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...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
go_bindings/Sigar/include/sigar_fileinfo.h
null
null
null
null
null
null
C
2026-05-04T19:10:17.304539
/* * Copyright (c) 2004-2005 Hyperic, 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 required by applicable law or...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
go_bindings/Sigar/Sigar/sigar_version.c
null
null
null
null
null
null
C
2026-05-04T19:10:17.404522
#include "sigar.h" static sigar_version_t sigar_version = { "2004-2011", "1", "7", "0", "0", "sigar", "1.66", 2, 17122014, 1, 6 }; SIGAR_DECLARE(sigar_version_t *) sigar_version_get(void) { return &sigar_version; }
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
go_bindings/Sigar/include/sigar.h
null
null
null
null
null
null
C
2026-05-04T19:10:17.607356
/* * Copyright (c) 2004-2008 Hyperic, Inc. * Copyright (c) 2009 SpringSource, Inc. * Copyright (c) 2009-2010 VMware, 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...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
go_bindings/Sigar/include/sigar_private.h
null
null
null
null
null
null
C
2026-05-04T19:10:17.713782
/* * Copyright (c) 2004-2008 Hyperic, Inc. * Copyright (c) 2009 SpringSource, Inc. * Copyright (c) 2009-2010 VMware, 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...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
go_bindings/Sigar/include/sigar_log.h
null
null
null
null
null
null
C
2026-05-04T19:10:18.091979
/* * Copyright (c) 2004, 2006 Hyperic, 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 required by applicable law o...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
go_bindings/Sigar/include/sigar_format.h
null
null
null
null
null
null
C
2026-05-04T19:10:18.093613
/* * Copyright (c) 2007-2008 Hyperic, Inc. * Copyright (c) 2009 SpringSource, 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 ...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
go_bindings/Sigar/include/sigar_util.h
null
null
null
null
null
null
C
2026-05-04T19:10:18.146165
/* * Copyright (c) 2004-2008 Hyperic, Inc. * Copyright (c) 2009 SpringSource, 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 ...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
go_bindings/Sigar/src/os/win32/peb.c
null
null
null
null
null
null
C
2026-05-04T19:10:18.147236
/* * Copyright (c) 2004, 2006-2008 Hyperic, Inc. * Copyright (c) 2009 SpringSource, Inc. * Copyright (c) 2009 VMware, 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 * * htt...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
go_bindings/Sigar/include/sigar_ptql.h
null
null
null
null
null
null
C
2026-05-04T19:10:19.019989
/* * Copyright (c) 2006-2007 Hyperic, 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 required by applicable law or...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
go_bindings/Sigar/src/sigar.c
null
null
null
null
null
null
C
2026-05-04T19:10:19.021586
/* * Copyright (c) 2004-2009 Hyperic, Inc. * Copyright (c) 2009 SpringSource, Inc. * Copyright (c) 2009-2010 VMware, 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...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
go_bindings/Sigar/src/peb.c
null
null
null
null
null
null
C
2026-05-04T19:10:19.380688
/* * Copyright (c) 2004, 2006-2008 Hyperic, Inc. * Copyright (c) 2009 SpringSource, Inc. * Copyright (c) 2009 VMware, 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 * * htt...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
go_bindings/Sigar/src/sigar_ptql.c
null
null
null
null
null
null
C
2026-05-04T19:10:19.447993
/* * Copyright (c) 2006-2008 Hyperic, Inc. * Copyright (c) 2009 SpringSource, Inc. * Copyright (c) 2010 VMware, 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://ww...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
go_bindings/Sigar/src/sigar_fileinfo.c
null
null
null
null
null
null
C
2026-05-04T19:10:19.456427
/* * Copyright (c) 2004-2005, 2007-2008 Hyperic, Inc. * Copyright (c) 2009 SpringSource, Inc. * Copyright (c) 2010 VMware, 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 * * ...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
go_bindings/Sigar/src/sigar_getline.c
null
null
null
null
null
null
C
2026-05-04T19:10:19.614060
/* * Copyright (C) 1991, 1992 by Chris Thewalt (thewalt@ce.berkeley.edu) * * Permission to use, copy, modify, and distribute this software * for any purpose and without fee is hereby granted, provided * that the above copyright notices appear in all copies and that both the * copyright notice and this permission ...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
go_bindings/Sigar/src/sigar_signal.c
null
null
null
null
null
null
C
2026-05-04T19:10:19.723407
/* * Copyright (c) 2007 Hyperic, 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 required by applicable law or agre...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
go_bindings/Sigar/src/sigar_util.c
null
null
null
null
null
null
C
2026-05-04T19:10:19.730798
/* * Copyright (c) 2004-2009 Hyperic, Inc. * Copyright (c) 2009 SpringSource, 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 ...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
go_bindings/Sigar/src/sigar_format.c
null
null
null
null
null
null
C
2026-05-04T19:10:20.046128
/* * Copyright (c) 2007-2008 Hyperic, Inc. * Copyright (c) 2009 SpringSource, Inc. * Copyright (c) 2010 VMware, 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://ww...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
include/sigar.h
null
null
null
null
null
null
C
2026-05-04T19:10:20.163402
/* * Copyright (c) 2004-2008 Hyperic, Inc. * Copyright (c) 2009 SpringSource, Inc. * Copyright (c) 2009-2010 VMware, 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...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
go_bindings/Sigar/src/sigar_cache.c
null
null
null
null
null
null
C
2026-05-04T19:10:25.885670
/* * Copyright (c) 2004-2006 Hyperic, 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 required by applicable law or...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
go_bindings/Sigar/include/sigar_pdh.h
null
null
null
null
null
null
C
2026-05-04T19:10:25.886153
/* * Copyright (c) 2004, 2006 Hyperic, 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 required by applicable law o...
hyperic/sigar
https://github.com/hyperic/sigar
null
null
null
null
1,547
null
null
apache-2.0
null
null
null
null
null
null
null
go_bindings/Sigar/include/sigar_os.h
null
null
null
null
null
null
C
2026-05-04T19:10:25.897092
/* * Copyright (c) 2004-2009 Hyperic, Inc. * Copyright (c) 2009 SpringSource, Inc. * Copyright (c) 2009-2010 VMware, 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...
FDio/vpp
https://github.com/FDio/vpp
null
null
null
null
1,529
null
null
apache-2.0
null
null
null
null
null
null
null
extras/deprecated/dev_ena/ena.c
null
null
null
null
null
null
C
2026-05-04T19:10:34.962357
/* SPDX-License-Identifier: Apache-2.0 * Copyright (c) 2023 Cisco Systems, Inc. */ #include <vnet/vnet.h> #include <vnet/dev/dev.h> #include <vnet/dev/bus/pci.h> #include <dev_ena/ena.h> #include <dev_ena/ena_inlines.h> #include <vnet/ethernet/ethernet.h> #include <vnet/plugin/plugin.h> #include <vpp/app/version.h> ...
FDio/vpp
https://github.com/FDio/vpp
null
null
null
null
1,529
null
null
apache-2.0
null
null
null
null
null
null
null
extras/deprecated/dev_ena/ena_admin_defs.h
null
null
null
null
null
null
C
2026-05-04T19:10:34.962927
/* SPDX-License-Identifier: Apache-2.0 * Copyright(c) 2023 Cisco Systems, Inc. */ #ifndef _ENA_ADMIN_DEFS_H_ #define _ENA_ADMIN_DEFS_H_ #include <vppinfra/clib.h> #include <vppinfra/error_bootstrap.h> #define foreach_ena_aq_opcode \ _ (1, CREATE_SQ) ...
FDio/vpp
https://github.com/FDio/vpp
null
null
null
null
1,529
null
null
apache-2.0
null
null
null
null
null
null
null
extras/dad_client/dad_client.c
null
null
null
null
null
null
C
2026-05-04T19:10:34.971925
/* * SPDX-License-Identifier: Apache-2.0 * Copyright (c) 2026 Cisco and/or its affiliates. */ /** * @file dad_client.c * @brief IPv6 DAD Client Example using VAPI * * This is a structural example demonstrating how to integrate with * VPP's IPv6 DAD event notification system using VAPI. * * Note: This example...
FDio/vpp
https://github.com/FDio/vpp
null
null
null
null
1,529
null
null
apache-2.0
null
null
null
null
null
null
null
extras/deprecated/dev_ena/aq.c
null
null
null
null
null
null
C
2026-05-04T19:10:34.980994
/* SPDX-License-Identifier: Apache-2.0 * Copyright(c) 2023 Cisco Systems, Inc. */ #include <vlib/vlib.h> #include <vnet/dev/dev.h> #include <dev_ena/ena.h> #include <dev_ena/ena_inlines.h> #include <vnet/ethernet/ethernet.h> VLIB_REGISTER_LOG_CLASS (ena_log, static) = { .class_name = "ena", .subclass_name = "a...
FDio/vpp
https://github.com/FDio/vpp
null
null
null
null
1,529
null
null
apache-2.0
null
null
null
null
null
null
null
extras/apps/src/socket_echo_server.c
null
null
null
null
null
null
C
2026-05-04T19:10:34.985483
/* * Copyright (c) 2017 Cisco and/or its affiliates. * 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 required by applicabl...