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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
saminiir/level-ip | https://github.com/saminiir/level-ip | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | src/socket.c | null | null | null | null | null | null | C | 2026-05-04T18:34:45.445439 | #include "syshead.h"
#include "utils.h"
#include "socket.h"
#include "inet.h"
#include "wait.h"
#include "timer.h"
static int sock_amount = 0;
static LIST_HEAD(sockets);
static pthread_rwlock_t slock = PTHREAD_RWLOCK_INITIALIZER;
extern struct net_family inet;
static struct net_family *families[128] = {
[AF_INET... |
saminiir/level-ip | https://github.com/saminiir/level-ip | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | src/tcp_data.c | null | null | null | null | null | null | C | 2026-05-04T18:34:45.484537 | #include "syshead.h"
#include "tcp.h"
#include "list.h"
/* Routine for inserting skbs ordered by seq into queue */
static void tcp_data_insert_ordered(struct sk_buff_head *queue, struct sk_buff *skb)
{
struct sk_buff *next;
struct list_head *item, *tmp;
list_for_each_safe(item, tmp, &queue->head) {
... |
saminiir/level-ip | https://github.com/saminiir/level-ip | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | src/tcp_input.c | null | null | null | null | null | null | C | 2026-05-04T18:34:45.493985 | #include "syshead.h"
#include "tcp.h"
#include "tcp_data.h"
#include "skbuff.h"
#include "sock.h"
static int tcp_parse_opts(struct tcp_sock *tsk, struct tcphdr *th)
{
uint8_t *ptr = th->data;
uint8_t optlen = tcp_hlen(th) - 20;
struct tcp_opt_mss *opt_mss = NULL;
uint8_t sack_seen = 0;
uint8_t tsop... |
saminiir/level-ip | https://github.com/saminiir/level-ip | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | src/tcp.c | null | null | null | null | null | null | C | 2026-05-04T18:34:45.511846 | #include "syshead.h"
#include "inet.h"
#include "tcp.h"
#include "ip.h"
#include "sock.h"
#include "utils.h"
#include "timer.h"
#include "wait.h"
#ifdef DEBUG_TCP
const char *tcp_dbg_states[] = {
"TCP_LISTEN", "TCP_SYNSENT", "TCP_SYN_RECEIVED", "TCP_ESTABLISHED", "TCP_FIN_WAIT_1",
"TCP_FIN_WAIT_2", "TCP_CLOSE"... |
saminiir/level-ip | https://github.com/saminiir/level-ip | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | src/tuntap_if.c | null | null | null | null | null | null | C | 2026-05-04T18:34:45.528289 | #include "syshead.h"
#include "utils.h"
#include "basic.h"
static int tun_fd;
static char* dev;
char *tapaddr = "10.0.0.5";
char *taproute = "10.0.0.0/24";
static int set_if_route(char *dev, char *cidr)
{
return run_cmd("ip route add dev %s %s", dev, cidr);
}
static int set_if_address(char *dev, char *cidr)
{
... |
saminiir/level-ip | https://github.com/saminiir/level-ip | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | src/timer.c | null | null | null | null | null | null | C | 2026-05-04T18:34:45.547248 | #include "syshead.h"
#include "timer.h"
#include "socket.h"
static LIST_HEAD(timers);
static int tick = 0;
static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
static pthread_rwlock_t rwlock = PTHREAD_RWLOCK_INITIALIZER;
#ifdef DEBUG_TIMER
static void timer_debug()
{
struct list_head *item;
int cnt = 0;
... |
saminiir/level-ip | https://github.com/saminiir/level-ip | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | src/tcp_output.c | null | null | null | null | null | null | C | 2026-05-04T18:34:45.547909 | #include "syshead.h"
#include "utils.h"
#include "tcp.h"
#include "ip.h"
#include "skbuff.h"
#include "timer.h"
static void *tcp_retransmission_timeout(void *arg);
static struct sk_buff *tcp_alloc_skb(int optlen, int size)
{
int reserved = ETH_HDR_LEN + IP_HDR_LEN + TCP_HDR_LEN + optlen + size;
struct sk_buff... |
saminiir/level-ip | https://github.com/saminiir/level-ip | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | tools/liblevelip.c | null | null | null | null | null | null | C | 2026-05-04T18:34:45.558749 | #define _GNU_SOURCE
#include "syshead.h"
#include "liblevelip.h"
#include "ipc.h"
#include "list.h"
#include "utils.h"
#define RCBUF_LEN 512
static int (*__start_main)(int (*main) (int, char * *, char * *), int argc, \
char * * ubp_av, void (*init) (void), void (*fini) (void), \
... |
saminiir/level-ip | https://github.com/saminiir/level-ip | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | src/utils.c | null | null | null | null | null | null | C | 2026-05-04T18:34:45.641831 | #include "syshead.h"
#include "utils.h"
extern int debug;
int run_cmd(char *cmd, ...)
{
va_list ap;
char buf[CMDBUFLEN];
va_start(ap, cmd);
vsnprintf(buf, CMDBUFLEN, cmd, ap);
va_end(ap);
if (debug) {
printf("EXEC: %s\n", buf);
}
return system(buf);
}
uint32_t sum_every_16b... |
saminiir/level-ip | https://github.com/saminiir/level-ip | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | tools/liblevelip.h | null | null | null | null | null | null | C | 2026-05-04T18:34:45.755538 | #ifndef LIBLEVELIP_H_
#define LIBLEVELIP_H_
#include <poll.h>
#include <dlfcn.h>
#include "list.h"
#include "utils.h"
#ifdef DEBUG_API
#define lvl_dbg(msg, ...) \
do { \
print_debug("lvlip ttid %lu... |
emersion/mako | https://github.com/emersion/mako | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | cairo-pixbuf.c | null | null | null | null | null | null | C | 2026-05-04T18:34:48.285934 | #include "cairo-pixbuf.h"
cairo_surface_t *create_cairo_surface_from_gdk_pixbuf(const GdkPixbuf *gdkbuf) {
int chan = gdk_pixbuf_get_n_channels(gdkbuf);
if (chan < 3) {
return NULL;
}
const guint8* gdkpix = gdk_pixbuf_read_pixels(gdkbuf);
if (!gdkpix) {
return NULL;
}
gint w = gdk_pixbuf_get_width(gdkbuf);... |
emersion/mako | https://github.com/emersion/mako | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | include/config.h | null | null | null | null | null | null | C | 2026-05-04T18:34:48.287023 | #ifndef MAKO_CONFIG_H
#define MAKO_CONFIG_H
#include <stdbool.h>
#include <stdint.h>
#include <wayland-client.h>
#include <pango/pango.h>
#include "types.h"
enum mako_binding_action {
MAKO_BINDING_NONE,
MAKO_BINDING_DISMISS,
MAKO_BINDING_DISMISS_NO_HISTORY,
MAKO_BINDING_DISMISS_GROUP,
MAKO_BINDING_DISMISS_ALL,
... |
emersion/mako | https://github.com/emersion/mako | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | dbus/dbus.c | null | null | null | null | null | null | C | 2026-05-04T18:34:48.289370 | #include <errno.h>
#include <stdio.h>
#include "dbus.h"
#include "mako.h"
static const char service_name[] = "org.freedesktop.Notifications";
bool init_dbus(struct mako_state *state) {
int ret = 0;
state->bus = NULL;
state->xdg_slot = state->mako_slot = NULL;
ret = sd_bus_open_user(&state->bus);
if (ret < 0) {... |
emersion/mako | https://github.com/emersion/mako | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | event-loop.c | null | null | null | null | null | null | C | 2026-05-04T18:34:48.290252 | #include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/timerfd.h>
#include <signal.h>
#include <sys/signalfd.h>
#include <time.h>
#include <unistd.h>
#include "event-loop.h"
static int init_signalfd() {
sigset_t mask;
int sfd;
sigemptyset(&mask);
sigaddset(&mask, SIGINT);
sigaddset(&mask, SIGTE... |
emersion/mako | https://github.com/emersion/mako | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | criteria.c | null | null | null | null | null | null | C | 2026-05-04T18:34:48.291329 | #include <assert.h>
#include <regex.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <string.h>
#include <wayland-client.h>
#include "enum.h"
#include "mako.h"
#include "config.h"
#include "criteria.h"
#include "mode.h"
#include "notification.h"
#include "surface.h"
#include "wayland.h"
struct ... |
emersion/mako | https://github.com/emersion/mako | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | dbus/xdg.c | null | null | null | null | null | null | C | 2026-05-04T18:34:48.293898 | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "config.h"
#include "criteria.h"
#include "dbus.h"
#include "mako.h"
#include "notification.h"
#include "wayland.h"
#include "icon.h"
static const char *service_path = "/org/freedesktop/Notifications";
static const char *service_interface = "org.fre... |
emersion/mako | https://github.com/emersion/mako | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | dbus/mako.c | null | null | null | null | null | null | C | 2026-05-04T18:34:48.294853 | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "config.h"
#include "criteria.h"
#include "surface.h"
#include "dbus.h"
#include "mako.h"
#include "mode.h"
#include "notification.h"
#include "wayland.h"
static const char *service_path = "/fr/emersion/Mako";
static const char *service_interface = "... |
emersion/mako | https://github.com/emersion/mako | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | include/cairo-pixbuf.h | null | null | null | null | null | null | C | 2026-05-04T18:34:48.297042 | #ifndef MAKO_CAIRO_PIXBUF_H
#define MAKO_CAIRO_PIXBUF_H
#ifndef HAVE_ICONS
#error "gdk_pixbuf is required"
#endif
#include <cairo/cairo.h>
#include <gdk-pixbuf/gdk-pixbuf.h>
cairo_surface_t *create_cairo_surface_from_gdk_pixbuf(const GdkPixbuf *pixbuf);
#endif
|
emersion/mako | https://github.com/emersion/mako | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | config.c | null | null | null | null | null | null | C | 2026-05-04T18:34:48.298256 | #include <getopt.h>
#include <libgen.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <wordexp.h>
#include <unistd.h>
#include "config.h"
#include "criteria.h"
#include "string-util.h"
#include "types.h"
static int32_t max(int32_t a, int32_t b) {
return (a > b) ? a : b;
}
void init_default_con... |
emersion/mako | https://github.com/emersion/mako | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | icon.c | null | null | null | null | null | null | C | 2026-05-04T18:34:48.315744 | #include <assert.h>
#include <errno.h>
#include <fnmatch.h>
#include <glob.h>
#include <libgen.h>
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <ctype.h>
#include <cairo/cairo.h>
#include "mako.h"
#include "icon.h"
#include "string-util.h"
#include "wayland.h"
#ifdef HAVE_ICONS
#include <gdk-pi... |
emersion/mako | https://github.com/emersion/mako | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | include/mako.h | null | null | null | null | null | null | C | 2026-05-04T18:34:49.106616 | #ifndef MAKO_H
#define MAKO_H
#include <stdbool.h>
#include <wayland-client.h>
#include <wayland-cursor.h>
#if defined(HAVE_LIBSYSTEMD)
#include <systemd/sd-bus.h>
#elif defined(HAVE_LIBELOGIND)
#include <elogind/sd-bus.h>
#elif defined(HAVE_BASU)
#include <basu/sd-bus.h>
#endif
#include "config.h"
#include "event-lo... |
emersion/mako | https://github.com/emersion/mako | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | include/criteria.h | null | null | null | null | null | null | C | 2026-05-04T18:34:49.108868 | #ifndef MAKO_CRITERIA_H
#define MAKO_CRITERIA_H
#include <regex.h>
#include <stdbool.h>
#include <stdint.h>
#include <wayland-client.h>
#include "config.h"
#include "types.h"
struct mako_config;
struct mako_notification;
struct mako_criteria {
struct mako_criteria_spec spec;
struct wl_list link; // mako_config::cr... |
emersion/mako | https://github.com/emersion/mako | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | include/notification.h | null | null | null | null | null | null | C | 2026-05-04T18:34:49.109768 | #ifndef MAKO_NOTIFICATION_H
#define MAKO_NOTIFICATION_H
#include <stdbool.h>
#include <stdint.h>
#include <wayland-client.h>
#include "config.h"
#include "types.h"
struct mako_state;
struct mako_surface;
struct mako_timer;
struct mako_criteria;
struct mako_icon;
struct mako_hotspot {
int32_t x, y;
int32_t width, ... |
emersion/mako | https://github.com/emersion/mako | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | include/pool-buffer.h | null | null | null | null | null | null | C | 2026-05-04T18:34:49.111585 | #ifndef MAKO_POOL_BUFFER_H
#define MAKO_POOL_BUFFER_H
#include <cairo/cairo.h>
#include <pango/pangocairo.h>
#include <stdbool.h>
#include <stdint.h>
#include <wayland-client.h>
struct pool_buffer {
struct wl_buffer *buffer;
cairo_surface_t *surface;
cairo_t *cairo;
PangoContext *pango;
uint32_t width, height;
... |
emersion/mako | https://github.com/emersion/mako | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | include/dbus.h | null | null | null | null | null | null | C | 2026-05-04T18:34:49.113072 | #ifndef MAKO_DBUS_H
#define MAKO_DBUS_H
#include <stdbool.h>
#if defined(HAVE_LIBSYSTEMD)
#include <systemd/sd-bus.h>
#elif defined(HAVE_LIBELOGIND)
#include <elogind/sd-bus.h>
#elif defined(HAVE_BASU)
#include <basu/sd-bus.h>
#endif
struct mako_state;
struct mako_notification;
struct mako_action;
enum mako_notificat... |
emersion/mako | https://github.com/emersion/mako | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | include/enum.h | null | null | null | null | null | null | C | 2026-05-04T18:34:49.114024 | #ifndef MAKO_ENUM_H_
#define MAKO_ENUM_H_
// State is intended to work as a bitmask, so if more need to be added in the
// future, this should be taken into account.
enum mako_parse_state {
MAKO_PARSE_STATE_NORMAL = 0,
MAKO_PARSE_STATE_ESCAPE = 1,
MAKO_PARSE_STATE_QUOTE = 2,
MAKO_PARSE_STATE_QUOTE_ESCAPE = 3,
MAK... |
emersion/mako | https://github.com/emersion/mako | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | include/icon.h | null | null | null | null | null | null | C | 2026-05-04T18:34:49.115118 | #ifndef MAKO_ICON_H
#define MAKO_ICON_H
#include <cairo/cairo.h>
#include "notification.h"
struct mako_icon {
double width;
double height;
double scale;
int32_t border_radius;
cairo_surface_t *image;
};
struct mako_image_data {
int32_t width;
int32_t height;
int32_t rowstride;
uint32_t has_alpha;
int32_t b... |
emersion/mako | https://github.com/emersion/mako | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | include/event-loop.h | null | null | null | null | null | null | C | 2026-05-04T18:34:49.116372 | #ifndef MAKO_EVENT_LOOP_H
#define MAKO_EVENT_LOOP_H
#include <poll.h>
#include <stdbool.h>
#include <time.h>
#include <wayland-client.h>
#if defined(HAVE_LIBSYSTEMD)
#include <systemd/sd-bus.h>
#elif defined(HAVE_LIBELOGIND)
#include <elogind/sd-bus.h>
#elif defined(HAVE_BASU)
#include <basu/sd-bus.h>
#endif
enum mak... |
emersion/mako | https://github.com/emersion/mako | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | include/mode.h | null | null | null | null | null | null | C | 2026-05-04T18:34:49.117322 | #ifndef MODE_H
#define MODE_H
#include <stdbool.h>
struct mako_state;
bool has_mode(struct mako_state *state, const char *mode);
void set_modes(struct mako_state *state, const char **modes, size_t modes_len);
#endif
|
emersion/mako | https://github.com/emersion/mako | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | include/render.h | null | null | null | null | null | null | C | 2026-05-04T18:34:49.177751 | #ifndef MAKO_RENDER_H
#define MAKO_RENDER_H
struct mako_state;
struct mako_surface;
void render(struct mako_surface *surface, struct pool_buffer *buffer, int scale,
int *width, int *height);
#endif
|
emersion/mako | https://github.com/emersion/mako | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | include/wayland.h | null | null | null | null | null | null | C | 2026-05-04T18:34:50.575727 | #ifndef MAKO_WAYLAND_H
#define MAKO_WAYLAND_H
#include <stdbool.h>
#include <wayland-client-protocol.h>
#define MAX_TOUCHPOINTS 10
struct mako_state;
struct mako_surface;
struct mako_output {
struct mako_state *state;
uint32_t global_name;
struct wl_output *wl_output;
struct wl_list link; // mako_state::outputs... |
emersion/mako | https://github.com/emersion/mako | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | mode.c | null | null | null | null | null | null | C | 2026-05-04T18:34:50.576801 | #include <stdlib.h>
#include <string.h>
#include <wayland-util.h>
#include "mako.h"
#include "mode.h"
#include "dbus.h"
bool has_mode(struct mako_state *state, const char *mode) {
const char **mode_ptr;
wl_array_for_each(mode_ptr, &state->current_modes) {
if (strcmp(*mode_ptr, mode) == 0) {
return true;
}
}... |
emersion/mako | https://github.com/emersion/mako | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | main.c | null | null | null | null | null | null | C | 2026-05-04T18:34:50.588191 | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "config.h"
#include "dbus.h"
#include "mako.h"
#include "mode.h"
#include "notification.h"
#include "render.h"
#include "surface.h"
#include "wayland.h"
static const char usage[] =
"Usage: mako [options...]\n"
"\n"
" -h, --help ... |
emersion/mako | https://github.com/emersion/mako | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | include/types.h | null | null | null | null | null | null | C | 2026-05-04T18:34:50.589951 | #ifndef MAKO_TYPES_H
#define MAKO_TYPES_H
#include <stdbool.h>
#include <stdint.h>
#include <cairo.h>
#include "wlr-layer-shell-unstable-v1-client-protocol.h"
struct mako_color {
uint32_t value;
cairo_operator_t operator;
};
bool parse_boolean(const char *string, bool *out);
bool parse_int(const char *string, int ... |
emersion/mako | https://github.com/emersion/mako | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | include/surface.h | null | null | null | null | null | null | C | 2026-05-04T18:34:50.604868 | #ifndef MAKO_SURFACE_H
#define MAKO_SURFACE_H
#include "config.h"
struct mako_state;
struct mako_surface;
void destroy_surface(struct mako_surface *surface);
struct mako_surface *create_surface(struct mako_state *state, const char *output,
enum zwlr_layer_shell_v1_layer layer, uint32_t anchor);
#endif
|
emersion/mako | https://github.com/emersion/mako | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | makoctl.c | null | null | null | null | null | null | C | 2026-05-04T18:34:50.617349 | #include <errno.h>
#include <getopt.h>
#include <inttypes.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/wait.h>
#include <unistd.h>
#if defined(HAVE_LIBSYSTEMD)
#include <systemd/sd-bus.h>
#elif defined(HAVE_LIBELOGIND)
#include <elogind/sd-bus.h>
#elif defined(HAVE_BASU)
#include <basu/... |
emersion/mako | https://github.com/emersion/mako | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | render.c | null | null | null | null | null | null | C | 2026-05-04T18:34:50.629037 | #include <stdlib.h>
#include <cairo/cairo.h>
#include <pango/pangocairo.h>
#include "config.h"
#include "criteria.h"
#include "mako.h"
#include "notification.h"
#include "render.h"
#include "wayland.h"
#include "wlr-layer-shell-unstable-v1-client-protocol.h"
#include "icon.h"
#define M_PI 3.14159265358979323846
// H... |
emersion/mako | https://github.com/emersion/mako | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | notification.c | null | null | null | null | null | null | C | 2026-05-04T18:34:50.631031 | #include <assert.h>
#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/wait.h>
#include <unistd.h>
#include <pango/pangocairo.h>
#include <wayland-client.h>
#include <linux/input-event-codes.h>
#include "config.h"
#include "criteria.h"
#include "dbus.h"
#include "event-loop.h"... |
emersion/mako | https://github.com/emersion/mako | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | pool-buffer.c | null | null | null | null | null | null | C | 2026-05-04T18:34:50.820244 | #include <cairo/cairo.h>
#include <errno.h>
#include <fcntl.h>
#include <sys/mman.h>
#include <time.h>
#include <unistd.h>
#include <wayland-client.h>
#include <string.h>
#include "pool-buffer.h"
static void randname(char *buf) {
struct timespec ts;
clock_gettime(CLOCK_REALTIME, &ts);
long r = ts.tv_nsec;
for (in... |
emersion/mako | https://github.com/emersion/mako | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | string-util.c | null | null | null | null | null | null | C | 2026-05-04T18:34:51.681149 | #include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
char *mako_asprintf(const char *fmt, ...) {
char *text;
va_list args;
va_start(args, fmt);
int size = vsnprintf(NULL, 0, fmt, args);
va_end(args);
if (size < 0) {
return NULL;
}
text = malloc(size + 1);
if (text == NULL) {
return NULL;
}
va_... |
emersion/mako | https://github.com/emersion/mako | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | types.c | null | null | null | null | null | null | C | 2026-05-04T18:34:52.302307 | #include <errno.h>
#include <getopt.h>
#include <libgen.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <strings.h>
#include <wayland-client.h>
#include <wordexp.h>
#include <unistd.h>
#include "enum.h"
#include "types.h"
const char VALID_FORMAT_SPECIFIERS[] = "%asbhtgi";
bool parse_boolean(... |
emersion/mako | https://github.com/emersion/mako | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | surface.c | null | null | null | null | null | null | C | 2026-05-04T18:34:52.471448 | #include <string.h>
#include <stdlib.h>
#include "mako.h"
#include "surface.h"
void destroy_surface(struct mako_surface *surface) {
if (surface->layer_surface != NULL) {
zwlr_layer_surface_v1_destroy(surface->layer_surface);
}
if (surface->surface != NULL) {
wl_surface_destroy(surface->surface);
}
if (surfac... |
emersion/mako | https://github.com/emersion/mako | null | null | null | null | 3,100 | null | null | mit | null | null | null | null | null | null | null | wayland.c | null | null | null | null | null | null | C | 2026-05-04T18:34:52.585136 | #include <assert.h>
#include <errno.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "criteria.h"
#include "mako.h"
#include "notification.h"
#include "render.h"
#include "surface.h"
#include "wayland.h"
static void noop() {
// This space intentionally left blank
}
static void output_handle_g... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | include/Events.h | null | null | null | null | null | null | C | 2026-05-04T18:34:55.422458 | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License
//--------------------------------------------------------------------
//
// Quick events implementation
//
//--------------------------------------------------------------------
#ifndef EVENTS_H
#define EVENTS_H
#include ... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | include/CoreDumpWriter.h | null | null | null | null | null | null | C | 2026-05-04T18:34:55.423002 | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
//--------------------------------------------------------------------
//
// Core dump orchestrator
//
//--------------------------------------------------------------------
#ifndef CORE_DUMP_WRITER_H
#define CORE_DUMP_WRI... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | ebpf/vmlinux.h | null | null | null | null | null | null | C | 2026-05-04T18:34:55.425290 | #if defined(__TARGET_ARCH_x86)
#include "vmlinux-x86.h"
#elif defined(__TARGET_ARCH_arm64)
#include "vmlinux-arm64.h"
#else
#error "Unknown architecture"
#endif |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | include/DotnetHelpers.h | null | null | null | null | null | null | C | 2026-05-04T18:34:55.426352 | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License
//--------------------------------------------------------------------
//
// .NET helpers
//
//--------------------------------------------------------------------
#ifndef DOTNETHELPERS_H
#define DOTNETHELPERS_H
#include <... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | ebpf/procdump_ebpf.h | null | null | null | null | null | null | C | 2026-05-04T18:34:55.427456 | /*
ProcDump for Linux
Copyright (c) Microsoft Corporation
All rights reserved.
MIT License
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 w... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | ebpf/procdump_ebpf_common.h | null | null | null | null | null | null | C | 2026-05-04T18:34:55.428353 | /*
ProcDump for Linux
Copyright (c) Microsoft Corporation
All rights reserved.
MIT License
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 w... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | ebpf/procdump_ebpf.c | null | null | null | null | null | null | C | 2026-05-04T18:34:55.429916 | /*
ProcDump for Linux
Copyright (c) Microsoft Corporation
All rights reserved.
MIT License
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 w... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | include/Includes.h | null | null | null | null | null | null | C | 2026-05-04T18:34:55.431152 | #include "ProfilerCommon.h"
#include "CoreDumpWriter.h"
#include "Events.h"
#include "GenHelpers.h"
#include "Handle.h"
#include "Logging.h"
#include "Monitor.h"
#include "Procdump.h"
#include "ProcDumpConfiguration.h"
#include "Process.h"
#include "DotnetHelpers.h"
#include "ProfilerHelpers.h"
#include "Restrack.h"
#i... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | include/GenHelpers.h | null | null | null | null | null | null | C | 2026-05-04T18:34:55.432503 | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License
//--------------------------------------------------------------------
//
// General purpose helpers
//
//--------------------------------------------------------------------
#ifndef GENHELPERS_H
#define GENHELPERS_H
#ifde... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | include/Handle.h | null | null | null | null | null | null | C | 2026-05-04T18:34:57.524156 | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License
//--------------------------------------------------------------------
//
// Generalization of Events and Semaphores (Critical Sections)
//
//--------------------------------------------------------------------
#ifndef HAND... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | include/ProfilerHelpers.h | null | null | null | null | null | null | C | 2026-05-04T18:34:57.950808 | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License
//--------------------------------------------------------------------
//
// Profiler helpers
//
//--------------------------------------------------------------------
#ifndef PROFILERHELPERS_H
#define PROFILERHELPERS_H
#d... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | profiler/inc/ClassFactory.h | null | null | null | null | null | null | C | 2026-05-04T18:34:58.318500 | // Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
#pragma once
#include "unknwn.h"
#include <atomic>
class ClassFactory : public IClassFactory
{
private:
std::atomic<int> refCount;
public:
... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | profiler/inc/ProcDumpProfiler.h | null | null | null | null | null | null | C | 2026-05-04T18:34:58.537734 | // Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
#pragma once
#include <atomic>
#include <syslog.h>
#include <iostream>
#include <string>
#include <string>
#include <vector>
#include <sstream>
... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | profiler/inc/corhdr.h | null | null | null | null | null | null | C | 2026-05-04T18:34:59.135113 | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
/*****************************************************************************
** **
** CorHdr.h - contains ... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | profiler/inc/corhlpr.h | null | null | null | null | null | null | C | 2026-05-04T18:34:59.571981 | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
/*****************************************************************************
** **
** Corhlpr.h - ... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | profiler/inc/debugmacrosext.h | null | null | null | null | null | null | C | 2026-05-04T18:34:59.989549 | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
//*****************************************************************************
// DebugMacrosExt.h
//
// Simple debugging macros that take no dependencies on CLR headers.
// This hea... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | profiler/inc/no_sal2.h | null | null | null | null | null | null | C | 2026-05-04T18:35:00.270599 | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
/***
* no_sal2.h - renders the SAL annotations for documenting APIs harmless.
*
*
*Purpose:
* sal.h provides a set of SAL2 annotations to describe how a function uses i... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | profiler/inc/ntimage.h | null | null | null | null | null | null | C | 2026-05-04T18:35:00.742345 | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
//
//
// ===========================================================================
// File: ntimage.h
//
// ========================================================================... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | profiler/inc/oaidl.h | null | null | null | null | null | null | C | 2026-05-04T18:35:00.900511 | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
//
//
// ===========================================================================
// File: oaidl.h
//
// ==========================================================================... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | profiler/inc/CComPtr.h | null | null | null | null | null | null | C | 2026-05-04T18:35:01.077523 | // Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
#pragma once
template<class TInterface>
class CComPtr
{
private:
TInterface* pointer;
public:
CComPtr(const CComPtr&) = delete; // Copy ... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | include/Monitor.h | null | null | null | null | null | null | C | 2026-05-04T18:35:01.085531 | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License
//--------------------------------------------------------------------
//
// Monitor functions
//
//--------------------------------------------------------------------
#ifndef MONITOR_H
#define MONITOR_H
#include <signal.... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | include/Logging.h | null | null | null | null | null | null | C | 2026-05-04T18:35:01.086715 | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License
//--------------------------------------------------------------------
//
// A simple logging library for log generation and debugging
//
//--------------------------------------------------------------------
#ifndef LOGGIN... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | include/Process.h | null | null | null | null | null | null | C | 2026-05-04T18:35:01.089045 | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License
//--------------------------------------------------------------------
//
// This library reads from the /procfs pseudo filesystem
//
//--------------------------------------------------------------------
#ifndef PROCFSLIB_... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | include/ProcDumpConfiguration.h | null | null | null | null | null | null | C | 2026-05-04T18:35:01.090631 | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License
//--------------------------------------------------------------------
//
// The global configuration structure and utilities header
//
//--------------------------------------------------------------------
#ifndef PROCDUMP... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | include/Procdump.h | null | null | null | null | null | null | C | 2026-05-04T18:35:01.118879 | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License
//--------------------------------------------------------------------
//
// This program monitors a process and generates core dumps in
// in response to various triggers
//
//-----------------------------------------------... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | include/Restrack.h | null | null | null | null | null | null | C | 2026-05-04T18:35:01.180708 | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License
//--------------------------------------------------------------------
//
// Restrack.h
//
//--------------------------------------------------------------------
#ifndef RESTRACK_H
#define RESTRACK_H
#define MAX_CALL_STACK... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | include/ProfilerCommon.h | null | null | null | null | null | null | C | 2026-05-04T18:35:01.203728 | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License
//--------------------------------------------------------------------
//
// Profiler Common
//
//--------------------------------------------------------------------
#ifndef PROFILERCOMMON_H
#define PROFILERCOMMON_H
#defin... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | profiler/inc/objidl.h | null | null | null | null | null | null | C | 2026-05-04T18:35:01.334677 | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
//
//
// ===========================================================================
// File: objidl.h
//
// =========================================================================... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | profiler/inc/ole2.h | null | null | null | null | null | null | C | 2026-05-04T18:35:01.533767 | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
//
//
// dummy ole2.h for PAL
#include "objidl.h"
#include "servprov.h"
#include "oaidl.h"
|
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | profiler/inc/pal_assert.h | null | null | null | null | null | null | C | 2026-05-04T18:35:01.685794 | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
/*++
--*/
#ifndef __PAL_ASSERT_H__
#define __PAL_ASSERT_H__
#ifdef __cplusplus
extern "C" {
#endif
#ifdef __cplusplus
//
// C_ASSERT() can be used to perform many compile-ti... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | profiler/inc/pal_mstypes.h | null | null | null | null | null | null | C | 2026-05-04T18:35:01.698611 | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
/*++
--*/
////////////////////////////////////////////////////////////////////////
// Extensions to the usual posix header files
///////////////////////////////////////////////... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | profiler/inc/pal_error.h | null | null | null | null | null | null | C | 2026-05-04T18:35:01.709031 | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
/*++
--*/
#ifndef __PAL_ERROR_H__
#define __PAL_ERROR_H__
/******************* error codes *****************************************/
/* STARTERRORCODES - do not remove this m... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | profiler/inc/palrt.h | null | null | null | null | null | null | C | 2026-05-04T18:35:01.735457 | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
//
//
// ===========================================================================
// File: palrt.h
//
// ==========================================================================... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | profiler/inc/pal_endian.h | null | null | null | null | null | null | C | 2026-05-04T18:35:01.754143 | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
/*++
--*/
#ifndef __PAL_ENDIAN_H__
#define __PAL_ENDIAN_H__
#ifdef __cplusplus
extern "C++" {
inline UINT16 SWAP16(UINT16 x)
{
return (UINT16)((x >> 8) | (x << 8));
}
inl... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | profiler/inc/poppack.h | null | null | null | null | null | null | C | 2026-05-04T18:35:01.786735 | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
//
//
// ===========================================================================
// File: poppack.h
//
// =======================================================================... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | profiler/inc/pshpack1.h | null | null | null | null | null | null | C | 2026-05-04T18:35:01.942332 | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
//
//
// ===========================================================================
// File: pshpack1.h
//
// =======================================================================... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | profiler/inc/profilerstring.h | null | null | null | null | null | null | C | 2026-05-04T18:35:01.943135 | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
#pragma once
#include <iostream>
#include <assert.h>
#include <cstring>
#include <string>
#include <algorithm>
#ifdef _WIN32
#define WCHAR(str) L##str
#define CAST_CHAR(ch) ch
#el... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | profiler/inc/pshpack2.h | null | null | null | null | null | null | C | 2026-05-04T18:35:02.155080 | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
//
//
// ===========================================================================
// File: pshpack2.h
//
// =======================================================================... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | profiler/inc/pshpack4.h | null | null | null | null | null | null | C | 2026-05-04T18:35:02.305990 | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
//
//
// ===========================================================================
// File: pshpack4.h
//
// =======================================================================... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | profiler/inc/pshpack8.h | null | null | null | null | null | null | C | 2026-05-04T18:35:02.326586 | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
//
//
// ===========================================================================
// File: pshpack8.h
//
// =======================================================================... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | profiler/inc/rpc.h | null | null | null | null | null | null | C | 2026-05-04T18:35:02.375018 | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
//
//
// ===========================================================================
// File: rpc.h
//
// ===========================================================================
... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | profiler/inc/rpcndr.h | null | null | null | null | null | null | C | 2026-05-04T18:35:02.384486 | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
//
//
// ===========================================================================
// File: rpcndr.h
//
// =========================================================================... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | profiler/inc/safecrt.h | null | null | null | null | null | null | C | 2026-05-04T18:35:02.394751 | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
//
//
/***
*safecrt.h - secure crt downlevel for windows build
*
*Purpose:
* This file contains a subset of the Secure CRT. It is meant to
* be used in the Windows source... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | profiler/inc/servprov.h | null | null | null | null | null | null | C | 2026-05-04T18:35:02.717063 | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
//
//
// ===========================================================================
// File: servprov.h
//
// =======================================================================... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | profiler/inc/profiler_pal.h | null | null | null | null | null | null | C | 2026-05-04T18:35:02.717922 | // Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
#pragma once
#ifndef WIN32
#include <cstdlib>
#include "pal_mstypes.h"
#include "pal.h"
#include "ntimage.h"
#include "corhdr.h"
#define CoTask... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | profiler/inc/safemath.h | null | null | null | null | null | null | C | 2026-05-04T18:35:02.718590 | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// ---------------------------------------------------------------------------
// safemath.h
//
// overflow checking infrastructure
// ------------------------------------------------... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | profiler/inc/specstrings.h | null | null | null | null | null | null | C | 2026-05-04T18:35:02.921820 | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
//
#ifndef SPECSTRINGS_H
#define SPECSTRINGS_H
/***
*specstrings.h - support for markers for documenting the semantics of APIs
*
*
* [Public]
****/
/***********************... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | profiler/inc/static_assert.h | null | null | null | null | null | null | C | 2026-05-04T18:35:03.317908 | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// ---------------------------------------------------------------------------
// static_assert.h
//
// Static assertion infrastructure
// --------------------------------------------... |
microsoft/ProcDump-for-Linux | https://github.com/microsoft/ProcDump-for-Linux | null | null | null | null | 3,070 | null | null | mit | null | null | null | null | null | null | null | profiler/inc/specstrings_strict.h | null | null | null | null | null | null | C | 2026-05-04T18:35:03.947914 | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
/*************************************************************************
* This file documents all the macros approved for use in windows source
* code. It includes some experime... |
saghul/txiki.js | https://github.com/saghul/txiki.js | null | null | null | null | 3,028 | null | null | mit | null | null | null | null | null | null | null | src/builtins.c | null | null | null | null | null | null | C | 2026-05-04T18:35:06.533915 | /*
* txiki.js
*
* Copyright (c) 2023-present Saúl Ibarra Corretgé <s@saghul.net>
*
* 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... |
saghul/txiki.js | https://github.com/saghul/txiki.js | null | null | null | null | 3,028 | null | null | mit | null | null | null | null | null | null | null | src/bundles/c/stdlib/getopts.c | null | null | null | null | null | null | C | 2026-05-04T18:35:06.539626 | /* File generated automatically by the QuickJS compiler. */
#include <inttypes.h>
const uint32_t tjs__getopts_size = 3176;
const uint8_t tjs__getopts[3176] = {
0x19, 0x85, 0xc8, 0x05, 0x70, 0x2f, 0x01, 0x16,
0x74, 0x6a, 0x73, 0x3a, 0x67, 0x65, 0x74, 0x6f,
0x70, 0x74, 0x73, 0x01, 0x02, 0x53, 0x01, 0x02,
0x6b, 0x0... |
saghul/txiki.js | https://github.com/saghul/txiki.js | null | null | null | null | 3,028 | null | null | mit | null | null | null | null | null | null | null | deps/sqlite3/sqlite3ext.h | null | null | null | null | null | null | C | 2026-05-04T18:35:06.543452 | /*
** 2006 June 7
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
*************************... |
saghul/txiki.js | https://github.com/saghul/txiki.js | null | null | null | null | 3,028 | null | null | mit | null | null | null | null | null | null | null | src/bundles/c/core/worker-bootstrap.c | null | null | null | null | null | null | C | 2026-05-04T18:35:06.547814 | /* File generated automatically by the QuickJS compiler. */
#include <inttypes.h>
const uint32_t tjs__worker_bootstrap_size = 666;
const uint8_t tjs__worker_bootstrap[666] = {
0x19, 0x5c, 0x46, 0x8e, 0x67, 0x10, 0x01, 0x26,
0x77, 0x6f, 0x72, 0x6b, 0x65, 0x72, 0x2d, 0x62,
0x6f, 0x6f, 0x74, 0x73, 0x74, 0x72, 0x61, ... |
saghul/txiki.js | https://github.com/saghul/txiki.js | null | null | null | null | 3,028 | null | null | mit | null | null | null | null | null | null | null | deps/tweetnacl/tweetnacl.h | null | null | null | null | null | null | C | 2026-05-04T18:35:06.554306 | #ifndef TWEETNACL_H
#define TWEETNACL_H
#define crypto_auth_PRIMITIVE "hmacsha512256"
#define crypto_auth crypto_auth_hmacsha512256
#define crypto_auth_verify crypto_auth_hmacsha512256_verify
#define crypto_auth_BYTES crypto_auth_hmacsha512256_BYTES
#define crypto_auth_KEYBYTES crypto_auth_hmacsha512256_KEYBYTES
#defin... |
saghul/txiki.js | https://github.com/saghul/txiki.js | null | null | null | null | 3,028 | null | null | mit | null | null | null | null | null | null | null | deps/miniz/miniz.h | null | null | null | null | null | null | C | 2026-05-04T18:35:06.560750 | #ifndef MINIZ_EXPORT
#define MINIZ_EXPORT
#endif
/* miniz.c 3.1.0 - public domain deflate/inflate, zlib-subset, ZIP reading/writing/appending, PNG writing
See "unlicense" statement at the end of this file.
Rich Geldreich <richgel99@gmail.com>, last updated Oct. 13, 2013
Implements RFC 1950: http://www.ietf.org... |
saghul/txiki.js | https://github.com/saghul/txiki.js | null | null | null | null | 3,028 | null | null | mit | null | null | null | null | null | null | null | deps/ada/ada_c.h | null | null | null | null | null | null | C | 2026-05-04T18:35:06.564281 | /**
* @file ada_c.h
* @brief Includes the C definitions for Ada. This is a C file, not C++.
*/
#ifndef ADA_C_H
#define ADA_C_H
#include <stdbool.h>
#include <stdint.h>
#include <stddef.h>
// This is a reference to ada::url_components::omitted
// It represents "uint32_t(-1)"
#define ada_url_omitted 0xffffffff
// s... |
saghul/txiki.js | https://github.com/saghul/txiki.js | null | null | null | null | 3,028 | null | null | mit | null | null | null | null | null | null | null | src/bundles/c/stdlib/assert.c | null | null | null | null | null | null | C | 2026-05-04T18:35:06.572427 | /* File generated automatically by the QuickJS compiler. */
#include <inttypes.h>
const uint32_t tjs__assert_size = 3862;
const uint8_t tjs__assert[3862] = {
0x19, 0xf8, 0x17, 0x6e, 0x1d, 0x46, 0x01, 0x14,
0x74, 0x6a, 0x73, 0x3a, 0x61, 0x73, 0x73, 0x65,
0x72, 0x74, 0x01, 0x02, 0x70, 0x01, 0x02, 0x6c,
0x01, 0x02,... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.