id
int64
1
722k
file_path
stringlengths
8
177
funcs
stringlengths
1
35.8M
301
./android_firewall/external/iptables/extensions/libipt_ECN.c
/* Shared library add-on to iptables for ECN, $Version$ * * (C) 2002 by Harald Welte <laforge@gnumonks.org> * * This program is distributed under the terms of GNU GPL v2, 1991 * * libipt_ECN.c borrowed heavily from libipt_DSCP.c */ #include <stdio.h> #include <xtables.h> #include <linux/netfilter_ipv4/ipt_ECN.h>...
302
./android_firewall/external/iptables/extensions/libxt_cluster.c
/* * (C) 2009 by Pablo Neira Ayuso <pablo@netfilter.org> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ #include <stdio.h> #include <xtables.h> #include <linux/netfilter/xt...
303
./android_firewall/external/iptables/extensions/libxt_ipvs.c
/* * Shared library add-on to iptables to add IPVS matching. * * Detailed doc is in the kernel module source net/netfilter/xt_ipvs.c * * Author: Hannes Eder <heder@google.com> */ #include <stdbool.h> #include <stdio.h> #include <string.h> #include <xtables.h> #include <linux/ip_vs.h> #include <linux/netfilter/xt_...
304
./android_firewall/external/iptables/extensions/libxt_CONNSECMARK.c
/* * Shared library add-on to iptables to add CONNSECMARK target support. * * Based on the MARK and CONNMARK targets. * * Copyright (C) 2006 Red Hat, Inc., James Morris <jmorris@redhat.com> */ #include <stdio.h> #include <xtables.h> #include <linux/netfilter/xt_CONNSECMARK.h> #define PFX "CONNSECMARK target: " ...
305
./android_firewall/external/iptables/extensions/libipt_realm.c
#include <stdio.h> #include <string.h> #include <stdlib.h> #include <errno.h> #if defined(__GLIBC__) && __GLIBC__ == 2 #include <net/ethernet.h> #else #include <linux/if_ether.h> #endif #include <xtables.h> #include <linux/netfilter_ipv4/ipt_realm.h> enum { O_REALM = 0, }; static void realm_help(void) { printf( "re...
306
./android_firewall/external/iptables/extensions/libxt_CONNMARK.c
/* Shared library add-on to iptables to add CONNMARK target support. * * (C) 2002,2004 MARA Systems AB <http://www.marasystems.com> * by Henrik Nordstrom <hno@marasystems.com> * * Version 1.1 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public ...
307
./android_firewall/external/iptables/extensions/libip6t_ah.c
#include <stdio.h> #include <xtables.h> #include <linux/netfilter_ipv6/ip6t_ah.h> enum { O_AHSPI = 0, O_AHLEN, O_AHRES, }; static void ah_help(void) { printf( "ah match options:\n" "[!] --ahspi spi[:spi] match spi (range)\n" "[!] --ahlen length total length of this header\n" " --ahres ...
308
./android_firewall/external/iptables/extensions/libxt_iprange.c
#include <stdint.h> #include <stdio.h> #include <string.h> #include <stdlib.h> #include <xtables.h> #include <linux/netfilter.h> #include <linux/netfilter/xt_iprange.h> struct ipt_iprange { /* Inclusive: network order. */ __be32 min_ip, max_ip; }; struct ipt_iprange_info { struct ipt_iprange src; struct ipt_ipran...
309
./android_firewall/external/iptables/extensions/libxt_socket.c
/* * Shared library add-on to iptables to add early socket matching support. * * Copyright (C) 2007 BalaBit IT Ltd. */ #include <stdio.h> #include <xtables.h> #include <linux/netfilter/xt_socket.h> enum { O_TRANSPARENT = 0, }; static const struct xt_option_entry socket_mt_opts[] = { {.name = "transparent", .id ...
310
./android_firewall/external/iptables/extensions/libxt_CHECKSUM.c
/* Shared library add-on to xtables for CHECKSUM * * (C) 2002 by Harald Welte <laforge@gnumonks.org> * (C) 2010 by Red Hat, Inc * Author: Michael S. Tsirkin <mst@redhat.com> * * This program is distributed under the terms of GNU GPL v2, 1991 * * libxt_CHECKSUM.c borrowed some bits from libipt_ECN.c */ #include...
311
./android_firewall/external/iptables/extensions/libxt_connbytes.c
#include <stdio.h> #include <string.h> #include <xtables.h> #include <linux/netfilter/xt_connbytes.h> enum { O_CONNBYTES = 0, O_CONNBYTES_DIR, O_CONNBYTES_MODE, }; static void connbytes_help(void) { printf( "connbytes match options:\n" " [!] --connbytes from:[to]\n" " --connbytes-dir [original, reply, both]\n...
312
./android_firewall/external/iptables/extensions/tos_values.c
#include <stdbool.h> #include <stdint.h> #include <stdio.h> #include <linux/ip.h> #ifndef IPTOS_NORMALSVC # define IPTOS_NORMALSVC 0 #endif struct tos_value_mask { uint8_t value, mask; }; static const struct tos_symbol_info { unsigned char value; const char *name; } tos_symbol_names[] = { {IPTOS_LOWDELAY, "Mi...
313
./android_firewall/external/iptables/extensions/libxt_multiport.c
#include <stdio.h> #include <netdb.h> #include <string.h> #include <stdlib.h> #include <xtables.h> #include <limits.h> /* INT_MAX in ip_tables.h/ip6_tables.h */ #include <linux/netfilter_ipv4/ip_tables.h> #include <linux/netfilter_ipv6/ip6_tables.h> #include <linux/netfilter/xt_multiport.h> enum { O_SOURCE_PORTS = 0,...
314
./android_firewall/external/iptables/extensions/libxt_conntrack.c
/* * libxt_conntrack * Shared library add-on to iptables for conntrack matching support. * * GPL (C) 2001 Marc Boucher (marc@mbsi.ca). * Copyright © CC Computer Consultants GmbH, 2007 - 2008 * Jan Engelhardt <jengelh@computergmbh.de> */ #include <stdbool.h> #include <stdint.h> #include <stdio.h> #include <stdl...
315
./android_firewall/external/iptables/extensions/libip6t_rt.c
#include <stdio.h> #include <string.h> #include <stdlib.h> #include <xtables.h> #include <linux/netfilter_ipv6/ip6t_rt.h> #include <arpa/inet.h> enum { O_RT_TYPE = 0, O_RT_SEGSLEFT, O_RT_LEN, O_RT0RES, O_RT0ADDRS, O_RT0NSTRICT, F_RT_TYPE = 1 << O_RT_TYPE, F_RT0ADDRS = 1 << O_RT0ADDRS, }; static void rt_help(...
316
./android_firewall/external/iptables/extensions/libxt_string.c
/* Shared library add-on to iptables to add string matching support. * * Copyright (C) 2000 Emmanuel Roger <winfield@freegates.be> * * 2005-08-05 Pablo Neira Ayuso <pablo@eurodev.net> * - reimplemented to use new string matching iptables match * - add functionality to match packets by using window offsets *...
317
./android_firewall/external/iptables/extensions/libipt_ttl.c
/* Shared library add-on to iptables to add TTL matching support * (C) 2000 by Harald Welte <laforge@gnumonks.org> * * This program is released under the terms of GNU GPL */ #include <stdio.h> #include <xtables.h> #include <linux/netfilter_ipv4/ipt_ttl.h> enum { O_TTL_EQ = 0, O_TTL_LT, O_TTL_GT, F_TTL_EQ = 1 <...
318
./android_firewall/external/iptables/extensions/libxt_SECMARK.c
/* * Shared library add-on to iptables to add SECMARK target support. * * Based on the MARK target. * * Copyright (C) 2006 Red Hat, Inc., James Morris <jmorris@redhat.com> */ #include <stdio.h> #include <xtables.h> #include <linux/netfilter/xt_SECMARK.h> #define PFX "SECMARK target: " enum { O_SELCTX = 0, }; ...
319
./android_firewall/external/iptables/extensions/libipt_SAME.c
#include <stdio.h> #include <string.h> #include <stdlib.h> #include <xtables.h> #include <net/netfilter/nf_nat.h> #include <linux/netfilter_ipv4/ipt_SAME.h> enum { O_TO_ADDR = 0, O_NODST, O_RANDOM, F_TO_ADDR = 1 << O_TO_ADDR, F_RANDOM = 1 << O_RANDOM, }; static void SAME_help(void) { printf( "SAME target optio...
320
./android_firewall/external/iptables/extensions/libxt_tos.c
/* * Shared library add-on to iptables to add tos match support * * Copyright © CC Computer Consultants GmbH, 2007 * Contact: Jan Engelhardt <jengelh@computergmbh.de> */ #include <getopt.h> #include <netdb.h> #include <stdbool.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <xtables.h> #in...
321
./android_firewall/external/iptables/extensions/libxt_tcp.c
/* Shared library add-on to iptables to add TCP support. */ #include <stdbool.h> #include <stdio.h> #include <netdb.h> #include <string.h> #include <stdlib.h> #include <getopt.h> #include <netinet/in.h> #include <xtables.h> #include <linux/netfilter/xt_tcpudp.h> static void tcp_help(void) { printf( "tcp match options...
322
./android_firewall/external/iptables/extensions/libxt_tcpmss.c
#include <stdio.h> #include <xtables.h> #include <linux/netfilter/xt_tcpmss.h> enum { O_TCPMSS = 0, }; static void tcpmss_help(void) { printf( "tcpmss match options:\n" "[!] --mss value[:value] Match TCP MSS range.\n" " (only valid for TCP SYN or SYN/ACK packets)\n"); } static const struct xt_option_entry tcpms...
323
./android_firewall/external/iptables/extensions/libip6t_ipv6header.c
/* ipv6header match - matches IPv6 packets based on whether they contain certain headers */ /* Original idea: Brad Chapman * Rewritten by: Andras Kis-Szabo <kisza@sch.bme.hu> */ #include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <netdb.h> #include <xtables.h> #include <linux/netf...
324
./android_firewall/external/iptables/extensions/libipt_ah.c
#include <stdio.h> #include <xtables.h> #include <linux/netfilter_ipv4/ipt_ah.h> enum { O_AHSPI = 0, }; static void ah_help(void) { printf( "ah match options:\n" "[!] --ahspi spi[:spi]\n" " match spi (range)\n"); } static const struct xt_option_entry ah_opts[] = { {.name = "ahspi", .id = O_AHSPI, .type = XTTYP...
325
./android_firewall/external/iptables/extensions/libxt_TRACE.c
/* Shared library add-on to iptables to add TRACE target support. */ #include <stdio.h> #include <string.h> #include <stdlib.h> #include <getopt.h> #include <xtables.h> #include <linux/netfilter/x_tables.h> static struct xtables_target trace_target = { .family = NFPROTO_UNSPEC, .name = "TRACE", .version = XTABLE...
326
./android_firewall/external/iptables/extensions/libxt_mac.c
#include <stdio.h> #if defined(__GLIBC__) && __GLIBC__ == 2 #include <net/ethernet.h> #else #include <linux/if_ether.h> #endif #include <xtables.h> #include <linux/netfilter/xt_mac.h> enum { O_MAC = 0, }; static void mac_help(void) { printf( "mac match options:\n" "[!] --mac-source XX:XX:XX:XX:XX:XX\n" " Match s...
327
./newsblur/vendor/cjson/cjson.c
/* * Copyright (C) 2006-2007 Dan Pascu * Author: Dan Pascu <dan@ag-projects.com> * * Fast JSON encoder/decoder implementation for Python * * Original version: Dan Pascu <dan@ag-projects.com> * * 2007-03-16: Viktor Ferenczi <cx@cx.hu> * * Added extension keyword arguments to encode and decode functions. * The...
328
./cinnamon-control-center/panels/common/list-languages.c
#include "config.h" #include <glib.h> #include <glib/gi18n-lib.h> #include <locale.h> #include <glib-object.h> #include "gdm-languages.h" int main (int argc, char **argv) { char **langs; guint i; setlocale (LC_ALL, NULL); bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); g_type_init (); if (argc > 1) { g...
329
./cinnamon-control-center/panels/common/cc-common-language.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright 2009-2010 Red Hat, Inc, * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the ...
330
./cinnamon-control-center/panels/common/gdm-languages.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright 2008 Red Hat, Inc, * 2007 William Jon McCann <mccann@jhu.edu> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the ...
331
./cinnamon-control-center/panels/common/cc-language-chooser.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright 2009-2010 Red Hat, Inc, * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the ...
332
./cinnamon-control-center/panels/universal-access/cc-ua-panel.c
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- * * Copyright (C) 2010 Intel, Inc * Copyright (C) 2008 William Jon McCann <jmccann@redhat.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free...
333
./cinnamon-control-center/panels/universal-access/zoom-options.c
/* * Copyright 2011 Inclusive Design Research Centre, OCAD University. * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2.1 of the License, or (at your * option) any later ...
334
./cinnamon-control-center/panels/universal-access/universal-access-module.c
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- * * Copyright (C) 2010 Intel, Inc * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (...
335
./cinnamon-control-center/panels/universal-access/cc-marshal.c
#include <glib.h> #include <glib-object.h> #include "cc-marshal.h" /* VOID:STRING,POINTER (peditor-marshal.list:25) */ void cc_marshal_VOID__STRING_POINTER (GClosure *closure, GValue *return_value, guint n_param_values, const GValue *param_values, gpointer invocation_hint, ...
336
./cinnamon-control-center/panels/user-accounts/um-fingerprint-dialog.c
/* cinnamon-about-me-fingerprint.h * Copyright (C) 2008 Bastien Nocera <hadess@hadess.net> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any lat...
337
./cinnamon-control-center/panels/user-accounts/um-photo-dialog.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright 2009-2010 Red Hat, Inc, * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the ...
338
./cinnamon-control-center/panels/user-accounts/um-realm-manager.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright 2009-2012 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the ...
339
./cinnamon-control-center/panels/user-accounts/um-account-type.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright 2009-2010 Red Hat, Inc, * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the ...
340
./cinnamon-control-center/panels/user-accounts/um-utils.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright 2009-2010 Red Hat, Inc, * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the ...
341
./cinnamon-control-center/panels/user-accounts/um-crop-area.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright 2009 Red Hat, Inc, * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the Licen...
342
./cinnamon-control-center/panels/user-accounts/um-user-manager.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2009-2010 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of t...
343
./cinnamon-control-center/panels/user-accounts/um-user-module.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright 2009-2010 Red Hat, Inc, * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the ...
344
./cinnamon-control-center/panels/user-accounts/um-password-dialog.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright 2009-2010 Red Hat, Inc, * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the ...
345
./cinnamon-control-center/panels/user-accounts/um-editable-combo.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright 2009-2010 Red Hat, Inc, * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the ...
346
./cinnamon-control-center/panels/user-accounts/pw-utils.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright 2012 Red Hat, Inc, * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the Licen...
347
./cinnamon-control-center/panels/user-accounts/run-passwd.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ /* run-passwd.c: this file is part of users-admin, a cinnamon-system-tools frontend * for user administration. * * Copyright (C) 2002 Diego Gonzalez * Copyright (C) 2006 Johannes H. Jensen * Copyright (C) 2010 Milan Bouchet-Valat * * Wri...
348
./cinnamon-control-center/panels/user-accounts/frob-account-dialog.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2012 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of ...
349
./cinnamon-control-center/panels/user-accounts/um-editable-button.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright 2009-2010 Red Hat, Inc, * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the ...
350
./cinnamon-control-center/panels/user-accounts/um-account-dialog.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright 2009-2010 Red Hat, Inc, * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the ...
351
./cinnamon-control-center/panels/user-accounts/um-user-panel.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright 2009-2010 Red Hat, Inc, * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the ...
352
./cinnamon-control-center/panels/user-accounts/um-user.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2004-2005 James M. Cape <jcape@ignore-your.tv>. * Copyright (C) 2007-2008 William Jon McCann <mccann@jhu.edu> * Copyright (C) 2009 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modi...
353
./cinnamon-control-center/panels/sound/gvc-mixer-stream.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2008 William Jon McCann * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of t...
354
./cinnamon-control-center/panels/sound/gvc-combo-box.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2009 Bastien Nocera * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the L...
355
./cinnamon-control-center/panels/sound/gvc-log.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2009 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the Li...
356
./cinnamon-control-center/panels/sound/gvc-mixer-card.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2008 William Jon McCann * Copyright (C) 2009 Bastien Nocera * Copyright (C) Conor Curran 2011 <conor.curran@canonical.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of ...
357
./cinnamon-control-center/panels/sound/gvc-mixer-event-role.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2008 William Jon McCann * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of t...
358
./cinnamon-control-center/panels/sound/cc-sound-panel.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2008 Red Hat, Inc. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of the *...
359
./cinnamon-control-center/panels/sound/gvc-mixer-ui-device.c
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */ /* * gvc-mixer-ui-device.c * Copyright (C) Conor Curran 2011 <conor.curran@canonical.com> * Copyright (C) 2012 David Henningsson, Canonical Ltd. <david.henningsson@canonical.com> * * gvc-mixer-ui-device.c is free software: you can redistri...
360
./cinnamon-control-center/panels/sound/gvc-mixer-source-output.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2008 William Jon McCann * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of t...
361
./cinnamon-control-center/panels/sound/applet-main.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2008 Red Hat, Inc. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of the *...
362
./cinnamon-control-center/panels/sound/gvc-mixer-sink-input.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2008 William Jon McCann * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of t...
363
./cinnamon-control-center/panels/sound/gvc-channel-map.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2008 William Jon McCann * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of t...
364
./cinnamon-control-center/panels/sound/sound-theme-file-utils.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * Copyright (C) 2008 Bastien Nocera <hadess@hadess.net> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either v...
365
./cinnamon-control-center/panels/sound/gvc-mixer-control.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2006-2008 Lennart Poettering * Copyright (C) 2008 Sjoerd Simons <sjoerd@luon.net> * Copyright (C) 2008 William Jon McCann * Copyright (C) 2012 Conor Curran * * This program is free software; you can redistribute it and/o...
366
./cinnamon-control-center/panels/sound/gvc-channel-bar.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2008 William Jon McCann * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of t...
367
./cinnamon-control-center/panels/sound/gvc-applet.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2008 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the Li...
368
./cinnamon-control-center/panels/sound/gvc-stream-status-icon.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2008 William Jon McCann * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of t...
369
./cinnamon-control-center/panels/sound/gvc-level-bar.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2008 William Jon McCann <william.jon.mccann@gmail.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Fo...
370
./cinnamon-control-center/panels/sound/gvc-sound-theme-chooser.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2008 Bastien Nocera <hadess@hadess.net> * Copyright (C) 2008 William Jon McCann * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published ...
371
./cinnamon-control-center/panels/sound/gvc-mixer-source.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2008 William Jon McCann * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of t...
372
./cinnamon-control-center/panels/sound/gvc-speaker-test.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2009 Bastien Nocera * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the L...
373
./cinnamon-control-center/panels/sound/gvc-balance-bar.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2008 William Jon McCann * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of t...
374
./cinnamon-control-center/panels/sound/gvc-mixer-sink.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2008 William Jon McCann * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of t...
375
./cinnamon-control-center/panels/sound/gvc-mixer-dialog.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2008 William Jon McCann * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of t...
376
./cinnamon-control-center/panels/unused/info/gsd-disk-space-helper.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * vim: set et sw=8 ts=8: * * Copyright (c) 2008, Novell, Inc. * Copyright (c) 2012, Red Hat, Inc. * * Authors: Vincent Untz <vuntz@gnome.org> * Bastien Nocera <hadess@hadess.net> * * This program is free software; you can redistribute i...
377
./cinnamon-control-center/panels/unused/info/test-hostname.c
#include "config.h" #include <glib.h> #include <glib/gi18n.h> #include <locale.h> #include "hostname-helper.h" int main (int argc, char **argv) { char *result; guint i; char *contents; char **lines; char *locale; /* Running in some locales will * break the tests as "├╝" will be transliterated to * "ue" in...
378
./cinnamon-control-center/panels/unused/info/info-module.c
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- * * Copyright (C) 2010 Red Hat, Inc * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or *...
379
./cinnamon-control-center/panels/unused/info/hostname-helper.c
/* * Copyright (C) 2011 Red Hat, Inc * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distr...
380
./cinnamon-control-center/panels/unused/info/cc-info-panel.c
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- * * Copyright (C) 2010 Red Hat, Inc * Copyright (C) 2008 William Jon McCann <jmccann@redhat.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Fr...
381
./cinnamon-control-center/panels/unused/keyboard/keyboard-module.c
/* * Copyright (C) 2010 Intel, Inc * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distrib...
382
./cinnamon-control-center/panels/unused/online-accounts/cc-online-accounts-add-account-dialog.c
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- * * Copyright (C) 2012 Red Hat, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the Lic...
383
./cinnamon-control-center/panels/unused/online-accounts/cc-online-accounts-model.c
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- * * Copyright (C) 2008-2011 Red Hat, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of th...
384
./cinnamon-control-center/panels/unused/online-accounts/cc-online-accounts-panel.c
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */ /* * Copyright (C) 2011, 2012 Red Hat, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 o...
385
./cinnamon-control-center/panels/unused/wacom/cc-wacom-nav-button.c
/* * Copyright © 2011 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distr...
386
./cinnamon-control-center/panels/unused/wacom/cc-wacom-mapping-panel.c
/* * Copyright © 2012 Wacom. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed ...
387
./cinnamon-control-center/panels/unused/wacom/wacom-module.c
/* * Copyright © Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distribute...
388
./cinnamon-control-center/panels/unused/wacom/test-wacom.c
#include "config.h" #include <glib/gi18n.h> #include "cc-wacom-page.h" #include "gsd-wacom-device.h" #define FIXED_WIDTH 675 void cc_wacom_panel_switch_to_panel (CcWacomPanel *self, const char *panel) { g_message ("Should launch display preferences here"); } static void add_page (GList *devices, GtkWidget *no...
389
./cinnamon-control-center/panels/unused/wacom/gsd-wacom-device.c
/* * Copyright (C) 2011 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is dist...
390
./cinnamon-control-center/panels/unused/wacom/cc-wacom-panel.c
/* * Copyright © 2011 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distr...
391
./cinnamon-control-center/panels/unused/wacom/gsd-input-helper.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2010 Bastien Nocera <hadess@hadess.net> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; eithe...
392
./cinnamon-control-center/panels/unused/wacom/cc-wacom-page.c
/* * Copyright © 2011 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distr...
393
./cinnamon-control-center/panels/unused/wacom/cc-wacom-stylus-page.c
/* * Copyright © 2011 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distr...
394
./cinnamon-control-center/panels/unused/wacom/calibrator/main.c
/* * Copyright (c) 2009 Tias Guns * Copyright (c) 2009 Soren Hauberg * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to...
395
./cinnamon-control-center/panels/unused/wacom/calibrator/calibrator.c
/* * Copyright (c) 2009 Tias Guns * Copyright (c) 2009 Soren Hauberg * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to...
396
./cinnamon-control-center/panels/unused/wacom/calibrator/gui_gtk.c
/* * Copyright (c) 2009 Tias Guns * Copyright (c) 2009 Soren Hauberg * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to...
397
./cinnamon-control-center/panels/unused/mouse/cinnamon-mouse-test.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- * * Copyright (C) 2012 Red Hat, Inc. * * Written by: Ondrej Holy <oholy@redhat.com>, * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free...
398
./cinnamon-control-center/panels/unused/mouse/cinnamon-mouse-properties.c
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- * * Copyright (C) 2001, 2012 Red Hat, Inc. * Copyright (C) 2001 Ximian, Inc. * * Written by: Jonathon Blandford <jrb@redhat.com>, * Bradford Hovinen <hovinen@ximian.com>, * Ondrej Holy <oholy@redhat.com>, * * This ...
399
./cinnamon-control-center/panels/unused/mouse/mouse-module.c
/* * Copyright (C) 2010 Intel, Inc * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distrib...
400
./cinnamon-control-center/panels/unused/mouse/cc-mouse-panel.c
/* * Copyright (C) 2010 Intel, Inc * Copyright (C) 2012 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later ve...