PATH:
usr
/
bin
#! /usr/bin/python3 # pylint: disable=too-many-lines, missing-docstring, invalid-name # This file is part of GLib # # 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.1 of the License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, see <http://www.gnu.org/licenses/>. import argparse import os import re import sys VERSION_STR = '''glib-genmarshal version 2.64.6 glib-genmarshal comes with ABSOLUTELY NO WARRANTY. You may redistribute copies of glib-genmarshal under the terms of the GNU General Public License which can be found in the GLib source package. Sources, examples and contact information are available at http://www.gtk.org''' GETTERS_STR = '''#ifdef G_ENABLE_DEBUG #define g_marshal_value_peek_boolean(v) g_value_get_boolean (v) #define g_marshal_value_peek_char(v) g_value_get_schar (v) #define g_marshal_value_peek_uchar(v) g_value_get_uchar (v) #define g_marshal_value_peek_int(v) g_value_get_int (v) #define g_marshal_value_peek_uint(v) g_value_get_uint (v) #define g_marshal_value_peek_long(v) g_value_get_long (v) #define g_marshal_value_peek_ulong(v) g_value_get_ulong (v) #define g_marshal_value_peek_int64(v) g_value_get_int64 (v) #define g_marshal_value_peek_uint64(v) g_value_get_uint64 (v) #define g_marshal_value_peek_enum(v) g_value_get_enum (v) #define g_marshal_value_peek_flags(v) g_value_get_flags (v) #define g_marshal_value_peek_float(v) g_value_get_float (v) #define g_marshal_value_peek_double(v) g_value_get_double (v) #define g_marshal_value_peek_string(v) (char*) g_value_get_string (v) #define g_marshal_value_peek_param(v) g_value_get_param (v) #define g_marshal_value_peek_boxed(v) g_value_get_boxed (v) #define g_marshal_value_peek_pointer(v) g_value_get_pointer (v) #define g_marshal_value_peek_object(v) g_value_get_object (v) #define g_marshal_value_peek_variant(v) g_value_get_variant (v) #else /* !G_ENABLE_DEBUG */ /* WARNING: This code accesses GValues directly, which is UNSUPPORTED API. * Do not access GValues directly in your code. Instead, use the * g_value_get_*() functions */ #define g_marshal_value_peek_boolean(v) (v)->data[0].v_int #define g_marshal_value_peek_char(v) (v)->data[0].v_int #define g_marshal_value_peek_uchar(v) (v)->data[0].v_uint #define g_marshal_value_peek_int(v) (v)->data[0].v_int #define g_marshal_value_peek_uint(v) (v)->data[0].v_uint #define g_marshal_value_peek_long(v) (v)->data[0].v_long #define g_marshal_value_peek_ulong(v) (v)->data[0].v_ulong #define g_marshal_value_peek_int64(v) (v)->data[0].v_int64 #define g_marshal_value_peek_uint64(v) (v)->data[0].v_uint64 #define g_marshal_value_peek_enum(v) (v)->data[0].v_long #define g_marshal_value_peek_flags(v) (v)->data[0].v_ulong #define g_marshal_value_peek_float(v) (v)->data[0].v_float #define g_marshal_value_peek_double(v) (v)->data[0].v_double #define g_marshal_value_peek_string(v) (v)->data[0].v_pointer #define g_marshal_value_peek_param(v) (v)->data[0].v_pointer #define g_marshal_value_peek_boxed(v) (v)->data[0].v_pointer #define g_marshal_value_peek_pointer(v) (v)->data[0].v_pointer #define g_marshal_value_peek_object(v) (v)->data[0].v_pointer #define g_marshal_value_peek_variant(v) (v)->data[0].v_pointer #endif /* !G_ENABLE_DEBUG */''' DEPRECATED_MSG_STR = 'The token "{}" is deprecated; use "{}" instead' VA_ARG_STR = \ ' arg{:d} = ({:s}) va_arg (args_copy, {:s});' STATIC_CHECK_STR = \ '(param_types[{:d}] & G_SIGNAL_TYPE_STATIC_SCOPE) == 0 && ' BOX_TYPED_STR = \ ' arg{idx:d} = {box_func} (param_types[{idx:d}] & ~G_SIGNAL_TYPE_STATIC_SCOPE, arg{idx:d});' BOX_UNTYPED_STR = \ ' arg{idx:d} = {box_func} (arg{idx:d});' UNBOX_TYPED_STR = \ ' {unbox_func} (param_types[{idx:d}] & ~G_SIGNAL_TYPE_STATIC_SCOPE, arg{idx:d});' UNBOX_UNTYPED_STR = \ ' {unbox_func} (arg{idx:d});' STD_PREFIX = 'g_cclosure_marshal' # These are part of our ABI; keep this in sync with gmarshal.h GOBJECT_MARSHALLERS = { 'g_cclosure_marshal_VOID__VOID', 'g_cclosure_marshal_VOID__BOOLEAN', 'g_cclosure_marshal_VOID__CHAR', 'g_cclosure_marshal_VOID__UCHAR', 'g_cclosure_marshal_VOID__INT', 'g_cclosure_marshal_VOID__UINT', 'g_cclosure_marshal_VOID__LONG', 'g_cclosure_marshal_VOID__ULONG', 'g_cclosure_marshal_VOID__ENUM', 'g_cclosure_marshal_VOID__FLAGS', 'g_cclosure_marshal_VOID__FLOAT', 'g_cclosure_marshal_VOID__DOUBLE', 'g_cclosure_marshal_VOID__STRING', 'g_cclosure_marshal_VOID__PARAM', 'g_cclosure_marshal_VOID__BOXED', 'g_cclosure_marshal_VOID__POINTER', 'g_cclosure_marshal_VOID__OBJECT', 'g_cclosure_marshal_VOID__VARIANT', 'g_cclosure_marshal_VOID__UINT_POINTER', 'g_cclosure_marshal_BOOLEAN__FLAGS', 'g_cclosure_marshal_STRING__OBJECT_POINTER', 'g_cclosure_marshal_BOOLEAN__BOXED_BOXED', } # pylint: disable=too-few-public-methods class Color: '''ANSI Terminal colors''' GREEN = '\033[1;32m' BLUE = '\033[1;34m' YELLOW = '\033[1;33m' RED = '\033[1;31m' END = '\033[0m' def print_color(msg, color=Color.END, prefix='MESSAGE'): '''Print a string with a color prefix''' if os.isatty(sys.stderr.fileno()): real_prefix = '{start}{prefix}{end}'.format(start=color, prefix=prefix, end=Color.END) else: real_prefix = prefix sys.stderr.write('{prefix}: {msg}\n'.format(prefix=real_prefix, msg=msg)) def print_error(msg): '''Print an error, and terminate''' print_color(msg, color=Color.RED, prefix='ERROR') sys.exit(1) def print_warning(msg, fatal=False): '''Print a warning, and optionally terminate''' if fatal: color = Color.RED prefix = 'ERROR' else: color = Color.YELLOW prefix = 'WARNING' print_color(msg, color, prefix) if fatal: sys.exit(1) def print_info(msg): '''Print a message''' print_color(msg, color=Color.GREEN, prefix='INFO') def generate_licensing_comment(outfile): outfile.write('/* This file is generated by glib-genmarshal, do not ' 'modify it. This code is licensed under the same license as ' 'the containing project. Note that it links to GLib, so ' 'must comply with the LGPL linking clauses. */\n') def generate_header_preamble(outfile, prefix='', std_includes=True, use_pragma=False): '''Generate the preamble for the marshallers header file''' generate_licensing_comment(outfile) if use_pragma: outfile.write('#pragma once\n') outfile.write('\n') else: outfile.write('#ifndef __{}_MARSHAL_H__\n'.format(prefix.upper())) outfile.write('#define __{}_MARSHAL_H__\n'.format(prefix.upper())) outfile.write('\n') # Maintain compatibility with the old C-based tool if std_includes: outfile.write('#include <glib-object.h>\n') outfile.write('\n') outfile.write('G_BEGIN_DECLS\n') outfile.write('\n') def generate_header_postamble(outfile, prefix='', use_pragma=False): '''Generate the postamble for the marshallers header file''' outfile.write('\n') outfile.write('G_END_DECLS\n') if not use_pragma: outfile.write('\n') outfile.write('#endif /* __{}_MARSHAL_H__ */\n'.format(prefix.upper())) def generate_body_preamble(outfile, std_includes=True, include_headers=None, cpp_defines=None, cpp_undefines=None): '''Generate the preamble for the marshallers source file''' generate_licensing_comment(outfile) for header in (include_headers or []): outfile.write('#include "{}"\n'.format(header)) if include_headers: outfile.write('\n') for define in (cpp_defines or []): s = define.split('=') symbol = s[0] value = s[1] if len(s) > 1 else '1' outfile.write('#define {} {}\n'.format(symbol, value)) if cpp_defines: outfile.write('\n') for undefine in (cpp_undefines or []): outfile.write('#undef {}\n'.format(undefine)) if cpp_undefines: outfile.write('\n') if std_includes: outfile.write('#include <glib-object.h>\n') outfile.write('\n') outfile.write(GETTERS_STR) outfile.write('\n\n') # Marshaller arguments, as a dictionary where the key is the token used in # the source file, and the value is another dictionary with the following # keys: # # - signal: the token used in the marshaller prototype (mandatory) # - ctype: the C type for the marshaller argument (mandatory) # - getter: the function used to retrieve the argument from the GValue # array when invoking the callback (optional) # - promoted: the C type used by va_arg() to retrieve the argument from # the va_list when invoking the callback (optional, only used when # generating va_list marshallers) # - box: an array of two elements, containing the boxing and unboxing # functions for the given type (optional, only used when generating # va_list marshallers) # - static-check: a boolean value, if the given type should perform # a static type check before boxing or unboxing the argument (optional, # only used when generating va_list marshallers) # - takes-type: a boolean value, if the boxing and unboxing functions # for the given type require the type (optional, only used when # generating va_list marshallers) # - deprecated: whether the token has been deprecated (optional) # - replaced-by: the token used to replace a deprecated token (optional, # only used if deprecated is True) IN_ARGS = { 'VOID': { 'signal': 'VOID', 'ctype': 'void', }, 'BOOLEAN': { 'signal': 'BOOLEAN', 'ctype': 'gboolean', 'getter': 'g_marshal_value_peek_boolean', }, 'CHAR': { 'signal': 'CHAR', 'ctype': 'gchar', 'promoted': 'gint', 'getter': 'g_marshal_value_peek_char', }, 'UCHAR': { 'signal': 'UCHAR', 'ctype': 'guchar', 'promoted': 'guint', 'getter': 'g_marshal_value_peek_uchar', }, 'INT': { 'signal': 'INT', 'ctype': 'gint', 'getter': 'g_marshal_value_peek_int', }, 'UINT': { 'signal': 'UINT', 'ctype': 'guint', 'getter': 'g_marshal_value_peek_uint', }, 'LONG': { 'signal': 'LONG', 'ctype': 'glong', 'getter': 'g_marshal_value_peek_long', }, 'ULONG': { 'signal': 'ULONG', 'ctype': 'gulong', 'getter': 'g_marshal_value_peek_ulong', }, 'INT64': { 'signal': 'INT64', 'ctype': 'gint64', 'getter': 'g_marshal_value_peek_int64', }, 'UINT64': { 'signal': 'UINT64', 'ctype': 'guint64', 'getter': 'g_marshal_value_peek_uint64', }, 'ENUM': { 'signal': 'ENUM', 'ctype': 'gint', 'getter': 'g_marshal_value_peek_enum', }, 'FLAGS': { 'signal': 'FLAGS', 'ctype': 'guint', 'getter': 'g_marshal_value_peek_flags', }, 'FLOAT': { 'signal': 'FLOAT', 'ctype': 'gfloat', 'promoted': 'gdouble', 'getter': 'g_marshal_value_peek_float', }, 'DOUBLE': { 'signal': 'DOUBLE', 'ctype': 'gdouble', 'getter': 'g_marshal_value_peek_double', }, 'STRING': { 'signal': 'STRING', 'ctype': 'gpointer', 'getter': 'g_marshal_value_peek_string', 'box': ['g_strdup', 'g_free'], 'static-check': True, }, 'PARAM': { 'signal': 'PARAM', 'ctype': 'gpointer', 'getter': 'g_marshal_value_peek_param', 'box': ['g_param_spec_ref', 'g_param_spec_unref'], 'static-check': True, }, 'BOXED': { 'signal': 'BOXED', 'ctype': 'gpointer', 'getter': 'g_marshal_value_peek_boxed', 'box': ['g_boxed_copy', 'g_boxed_free'], 'static-check': True, 'takes-type': True, }, 'POINTER': { 'signal': 'POINTER', 'ctype': 'gpointer', 'getter': 'g_marshal_value_peek_pointer', }, 'OBJECT': { 'signal': 'OBJECT', 'ctype': 'gpointer', 'getter': 'g_marshal_value_peek_object', 'box': ['g_object_ref', 'g_object_unref'], }, 'VARIANT': { 'signal': 'VARIANT', 'ctype': 'gpointer', 'getter': 'g_marshal_value_peek_variant', 'box': ['g_variant_ref_sink', 'g_variant_unref'], 'static-check': True, 'takes-type': False, }, # Deprecated tokens 'NONE': { 'signal': 'VOID', 'ctype': 'void', 'deprecated': True, 'replaced_by': 'VOID' }, 'BOOL': { 'signal': 'BOOLEAN', 'ctype': 'gboolean', 'getter': 'g_marshal_value_peek_boolean', 'deprecated': True, 'replaced_by': 'BOOLEAN' } } # Marshaller return values, as a dictionary where the key is the token used # in the source file, and the value is another dictionary with the following # keys: # # - signal: the token used in the marshaller prototype (mandatory) # - ctype: the C type for the marshaller argument (mandatory) # - setter: the function used to set the return value of the callback # into a GValue (optional) # - deprecated: whether the token has been deprecated (optional) # - replaced-by: the token used to replace a deprecated token (optional, # only used if deprecated is True) OUT_ARGS = { 'VOID': { 'signal': 'VOID', 'ctype': 'void', }, 'BOOLEAN': { 'signal': 'BOOLEAN', 'ctype': 'gboolean', 'setter': 'g_value_set_boolean', }, 'CHAR': { 'signal': 'CHAR', 'ctype': 'gchar', 'setter': 'g_value_set_char', }, 'UCHAR': { 'signal': 'UCHAR', 'ctype': 'guchar', 'setter': 'g_value_set_uchar', }, 'INT': { 'signal': 'INT', 'ctype': 'gint', 'setter': 'g_value_set_int', }, 'UINT': { 'signal': 'UINT', 'ctype': 'guint', 'setter': 'g_value_set_uint', }, 'LONG': { 'signal': 'LONG', 'ctype': 'glong', 'setter': 'g_value_set_long', }, 'ULONG': { 'signal': 'ULONG', 'ctype': 'gulong', 'setter': 'g_value_set_ulong', }, 'INT64': { 'signal': 'INT64', 'ctype': 'gint64', 'setter': 'g_value_set_int64', }, 'UINT64': { 'signal': 'UINT64', 'ctype': 'guint64', 'setter': 'g_value_set_uint64', }, 'ENUM': { 'signal': 'ENUM', 'ctype': 'gint', 'setter': 'g_value_set_enum', }, 'FLAGS': { 'signal': 'FLAGS', 'ctype': 'guint', 'setter': 'g_value_set_flags', }, 'FLOAT': { 'signal': 'FLOAT', 'ctype': 'gfloat', 'setter': 'g_value_set_float', }, 'DOUBLE': { 'signal': 'DOUBLE', 'ctype': 'gdouble', 'setter': 'g_value_set_double', }, 'STRING': { 'signal': 'STRING', 'ctype': 'gchar*', 'setter': 'g_value_take_string', }, 'PARAM': { 'signal': 'PARAM', 'ctype': 'GParamSpec*', 'setter': 'g_value_take_param', }, 'BOXED': { 'signal': 'BOXED', 'ctype': 'gpointer', 'setter': 'g_value_take_boxed', }, 'POINTER': { 'signal': 'POINTER', 'ctype': 'gpointer', 'setter': 'g_value_set_pointer', }, 'OBJECT': { 'signal': 'OBJECT', 'ctype': 'GObject*', 'setter': 'g_value_take_object', }, 'VARIANT': { 'signal': 'VARIANT', 'ctype': 'GVariant*', 'setter': 'g_value_take_variant', }, # Deprecated tokens 'NONE': { 'signal': 'VOID', 'ctype': 'void', 'setter': None, 'deprecated': True, 'replaced_by': 'VOID', }, 'BOOL': { 'signal': 'BOOLEAN', 'ctype': 'gboolean', 'setter': 'g_value_set_boolean', 'deprecated': True, 'replaced_by': 'BOOLEAN', }, } def check_args(retval, params, fatal_warnings=False): '''Check the @retval and @params tokens for invalid and deprecated symbols.''' if retval not in OUT_ARGS: print_error('Unknown return value type "{}"'.format(retval)) if OUT_ARGS[retval].get('deprecated', False): replaced_by = OUT_ARGS[retval]['replaced_by'] print_warning(DEPRECATED_MSG_STR.format(retval, replaced_by), fatal_warnings) for param in params: if param not in IN_ARGS: print_error('Unknown parameter type "{}"'.format(param)) else: if IN_ARGS[param].get('deprecated', False): replaced_by = IN_ARGS[param]['replaced_by'] print_warning(DEPRECATED_MSG_STR.format(param, replaced_by), fatal_warnings) def indent(text, level=0, fill=' '): '''Indent @text by @level columns, using the @fill character''' return ''.join([fill for x in range(level)]) + text # pylint: disable=too-few-public-methods class Visibility: '''Symbol visibility options''' NONE = 0 INTERNAL = 1 EXTERN = 2 def generate_marshaller_name(prefix, retval, params, replace_deprecated=True): '''Generate a marshaller name for the given @prefix, @retval, and @params. If @replace_deprecated is True, the generated name will replace deprecated tokens.''' if replace_deprecated: real_retval = OUT_ARGS[retval]['signal'] real_params = [] for param in params: real_params.append(IN_ARGS[param]['signal']) else: real_retval = retval real_params = params return '{prefix}_{retval}__{args}'.format(prefix=prefix, retval=real_retval, args='_'.join(real_params)) def generate_prototype(retval, params, prefix='g_cclosure_user_marshal', visibility=Visibility.NONE, va_marshal=False): '''Generate a marshaller declaration with the given @visibility. If @va_marshal is True, the marshaller will use variadic arguments in place of a GValue array.''' signature = [] if visibility == Visibility.INTERNAL: signature += ['G_GNUC_INTERNAL'] elif visibility == Visibility.EXTERN: signature += ['extern'] function_name = generate_marshaller_name(prefix, retval, params) if not va_marshal: signature += ['void ' + function_name + ' (GClosure *closure,'] width = len('void ') + len(function_name) + 2 signature += [indent('GValue *return_value,', level=width, fill=' ')] signature += [indent('guint n_param_values,', level=width, fill=' ')] signature += [indent('const GValue *param_values,', level=width, fill=' ')] signature += [indent('gpointer invocation_hint,', level=width, fill=' ')] signature += [indent('gpointer marshal_data);', level=width, fill=' ')] else: signature += ['void ' + function_name + 'v (GClosure *closure,'] width = len('void ') + len(function_name) + 3 signature += [indent('GValue *return_value,', level=width, fill=' ')] signature += [indent('gpointer instance,', level=width, fill=' ')] signature += [indent('va_list args,', level=width, fill=' ')] signature += [indent('gpointer marshal_data,', level=width, fill=' ')] signature += [indent('int n_params,', level=width, fill=' ')] signature += [indent('GType *param_types);', level=width, fill=' ')] return signature # pylint: disable=too-many-statements, too-many-locals, too-many-branches def generate_body(retval, params, prefix, va_marshal=False): '''Generate a marshaller definition. If @va_marshal is True, the marshaller will use va_list and variadic arguments in place of a GValue array.''' retval_setter = OUT_ARGS[retval].get('setter', None) # If there's no return value then we can mark the retval argument as unused # and get a minor optimisation, as well as avoid a compiler warning if not retval_setter: unused = ' G_GNUC_UNUSED' else: unused = '' body = ['void'] function_name = generate_marshaller_name(prefix, retval, params) if not va_marshal: body += [function_name + ' (GClosure *closure,'] width = len(function_name) + 2 body += [indent('GValue *return_value{},'.format(unused), level=width, fill=' ')] body += [indent('guint n_param_values,', level=width, fill=' ')] body += [indent('const GValue *param_values,', level=width, fill=' ')] body += [indent('gpointer invocation_hint G_GNUC_UNUSED,', level=width, fill=' ')] body += [indent('gpointer marshal_data)', level=width, fill=' ')] else: body += [function_name + 'v (GClosure *closure,'] width = len(function_name) + 3 body += [indent('GValue *return_value{},'.format(unused), level=width, fill=' ')] body += [indent('gpointer instance,', level=width, fill=' ')] body += [indent('va_list args,', level=width, fill=' ')] body += [indent('gpointer marshal_data,', level=width, fill=' ')] body += [indent('int n_params,', level=width, fill=' ')] body += [indent('GType *param_types)', level=width, fill=' ')] # Filter the arguments that have a getter get_args = [x for x in params if IN_ARGS[x].get('getter', None) is not None] body += ['{'] # Generate the type of the marshaller function typedef_marshal = generate_marshaller_name('GMarshalFunc', retval, params) typedef = ' typedef {ctype} (*{func_name}) ('.format(ctype=OUT_ARGS[retval]['ctype'], func_name=typedef_marshal) pad = len(typedef) typedef += 'gpointer data1,' body += [typedef] for idx, in_arg in enumerate(get_args): body += [indent('{} arg{:d},'.format(IN_ARGS[in_arg]['ctype'], idx + 1), level=pad)] body += [indent('gpointer data2);', level=pad)] # Variable declarations body += [' GCClosure *cc = (GCClosure *) closure;'] body += [' gpointer data1, data2;'] body += [' {} callback;'.format(typedef_marshal)] if retval_setter: body += [' {} v_return;'.format(OUT_ARGS[retval]['ctype'])] if va_marshal: for idx, arg in enumerate(get_args): body += [' {} arg{:d};'.format(IN_ARGS[arg]['ctype'], idx)] if get_args: body += [' va_list args_copy;'] body += [''] body += [' G_VA_COPY (args_copy, args);'] for idx, arg in enumerate(get_args): ctype = IN_ARGS[arg]['ctype'] promoted_ctype = IN_ARGS[arg].get('promoted', ctype) body += [VA_ARG_STR.format(idx, ctype, promoted_ctype)] if IN_ARGS[arg].get('box', None): box_func = IN_ARGS[arg]['box'][0] if IN_ARGS[arg].get('static-check', False): static_check = STATIC_CHECK_STR.format(idx) else: static_check = '' arg_check = 'arg{:d} != NULL'.format(idx) body += [' if ({}{})'.format(static_check, arg_check)] if IN_ARGS[arg].get('takes-type', False): body += [BOX_TYPED_STR.format(idx=idx, box_func=box_func)] else: body += [BOX_UNTYPED_STR.format(idx=idx, box_func=box_func)] body += [' va_end (args_copy);'] body += [''] # Preconditions check if retval_setter: body += [' g_return_if_fail (return_value != NULL);'] if not va_marshal: body += [' g_return_if_fail (n_param_values == {:d});'.format(len(get_args) + 1)] body += [''] # Marshal instance, data, and callback set up body += [' if (G_CCLOSURE_SWAP_DATA (closure))'] body += [' {'] body += [' data1 = closure->data;'] if va_marshal: body += [' data2 = instance;'] else: body += [' data2 = g_value_peek_pointer (param_values + 0);'] body += [' }'] body += [' else'] body += [' {'] if va_marshal: body += [' data1 = instance;'] else: body += [' data1 = g_value_peek_pointer (param_values + 0);'] body += [' data2 = closure->data;'] body += [' }'] # pylint: disable=line-too-long body += [' callback = ({}) (marshal_data ? marshal_data : cc->callback);'.format(typedef_marshal)] body += [''] # Marshal callback action if retval_setter: callback = ' {} callback ('.format(' v_return =') else: callback = ' callback (' pad = len(callback) body += [callback + 'data1,'] if va_marshal: for idx, arg in enumerate(get_args): body += [indent('arg{:d},'.format(idx), level=pad)] else: for idx, arg in enumerate(get_args): arg_getter = IN_ARGS[arg]['getter'] body += [indent('{} (param_values + {:d}),'.format(arg_getter, idx + 1), level=pad)] body += [indent('data2);', level=pad)] if va_marshal: boxed_args = [x for x in get_args if IN_ARGS[x].get('box', None) is not None] if not boxed_args: body += [''] else: for idx, arg in enumerate(get_args): if not IN_ARGS[arg].get('box', None): continue unbox_func = IN_ARGS[arg]['box'][1] if IN_ARGS[arg].get('static-check', False): static_check = STATIC_CHECK_STR.format(idx) else: static_check = '' arg_check = 'arg{:d} != NULL'.format(idx) body += [' if ({}{})'.format(static_check, arg_check)] if IN_ARGS[arg].get('takes-type', False): body += [UNBOX_TYPED_STR.format(idx=idx, unbox_func=unbox_func)] else: body += [UNBOX_UNTYPED_STR.format(idx=idx, unbox_func=unbox_func)] if retval_setter: body += [''] body += [' {} (return_value, v_return);'.format(retval_setter)] body += ['}'] return body def generate_marshaller_alias(outfile, marshaller, real_marshaller, include_va=False, source_location=None): '''Generate an alias between @marshaller and @real_marshaller, including an optional alias for va_list marshallers''' if source_location: outfile.write('/* {} */\n'.format(source_location)) outfile.write('#define {}\t{}\n'.format(marshaller, real_marshaller)) if include_va: outfile.write('#define {}v\t{}v\n'.format(marshaller, real_marshaller)) outfile.write('\n') def generate_marshallers_header(outfile, retval, params, prefix='g_cclosure_user_marshal', internal=False, include_va=False, source_location=None): '''Generate a declaration for a marshaller function, to be used in the header, with the given @retval, @params, and @prefix. An optional va_list marshaller for the same arguments is also generated. The generated buffer is written to the @outfile stream object.''' if source_location: outfile.write('/* {} */\n'.format(source_location)) if internal: visibility = Visibility.INTERNAL else: visibility = Visibility.EXTERN signature = generate_prototype(retval, params, prefix, visibility, False) if include_va: signature += generate_prototype(retval, params, prefix, visibility, True) signature += [''] outfile.write('\n'.join(signature)) outfile.write('\n') def generate_marshallers_body(outfile, retval, params, prefix='g_cclosure_user_marshal', include_prototype=True, internal=False, include_va=False, source_location=None): '''Generate a definition for a marshaller function, to be used in the source, with the given @retval, @params, and @prefix. An optional va_list marshaller for the same arguments is also generated. The generated buffer is written to the @outfile stream object.''' if source_location: outfile.write('/* {} */\n'.format(source_location)) if include_prototype: # Declaration visibility if internal: decl_visibility = Visibility.INTERNAL else: decl_visibility = Visibility.EXTERN proto = ['/* Prototype for -Wmissing-prototypes */'] # Add C++ guards in case somebody compiles the generated code # with a C++ compiler proto += ['G_BEGIN_DECLS'] proto += generate_prototype(retval, params, prefix, decl_visibility, False) proto += ['G_END_DECLS'] outfile.write('\n'.join(proto)) outfile.write('\n') body = generate_body(retval, params, prefix, False) outfile.write('\n'.join(body)) outfile.write('\n\n') if include_va: if include_prototype: # Declaration visibility if internal: decl_visibility = Visibility.INTERNAL else: decl_visibility = Visibility.EXTERN proto = ['/* Prototype for -Wmissing-prototypes */'] # Add C++ guards here as well proto += ['G_BEGIN_DECLS'] proto += generate_prototype(retval, params, prefix, decl_visibility, True) proto += ['G_END_DECLS'] outfile.write('\n'.join(proto)) outfile.write('\n') body = generate_body(retval, params, prefix, True) outfile.write('\n'.join(body)) outfile.write('\n\n') if __name__ == '__main__': arg_parser = argparse.ArgumentParser(description='Generate signal marshallers for GObject') arg_parser.add_argument('--prefix', metavar='STRING', default='g_cclosure_user_marshal', help='Specify marshaller prefix') arg_parser.add_argument('--output', metavar='FILE', type=argparse.FileType('w'), default=sys.stdout, help='Write output into the specified file') arg_parser.add_argument('--skip-source', action='store_true', help='Skip source location comments') arg_parser.add_argument('--internal', action='store_true', help='Mark generated functions as internal') arg_parser.add_argument('--valist-marshallers', action='store_true', help='Generate va_list marshallers') arg_parser.add_argument('-v', '--version', action='store_true', dest='show_version', help='Print version information, and exit') arg_parser.add_argument('--g-fatal-warnings', action='store_true', dest='fatal_warnings', help='Make warnings fatal') arg_parser.add_argument('--include-header', metavar='HEADER', nargs='?', action='append', dest='include_headers', help='Include the specified header in the body') arg_parser.add_argument('--pragma-once', action='store_true', help='Use "pragma once" as the inclusion guard') arg_parser.add_argument('-D', action='append', dest='cpp_defines', default=[], help='Pre-processor define') arg_parser.add_argument('-U', action='append', dest='cpp_undefines', default=[], help='Pre-processor undefine') arg_parser.add_argument('files', metavar='FILE', nargs='*', type=argparse.FileType('r'), help='Files with lists of marshallers to generate, ' + 'or "-" for standard input') arg_parser.add_argument('--prototypes', action='store_true', help='Generate the marshallers prototype in the C code') arg_parser.add_argument('--header', action='store_true', help='Generate C headers') arg_parser.add_argument('--body', action='store_true', help='Generate C code') group = arg_parser.add_mutually_exclusive_group() group.add_argument('--stdinc', action='store_true', dest='stdinc', default=True, help='Include standard marshallers') group.add_argument('--nostdinc', action='store_false', dest='stdinc', default=True, help='Use standard marshallers') group = arg_parser.add_mutually_exclusive_group() group.add_argument('--quiet', action='store_true', help='Only print warnings and errors') group.add_argument('--verbose', action='store_true', help='Be verbose, and include debugging information') args = arg_parser.parse_args() if args.show_version: print(VERSION_STR) sys.exit(0) # Backward compatibility hack; some projects use both arguments to # generate the marshallers prototype in the C source, even though # it's not really a supported use case. We keep this behaviour by # forcing the --prototypes and --body arguments instead. We make this # warning non-fatal even with --g-fatal-warnings, as it's a deprecation compatibility_mode = False if args.header and args.body: print_warning('Using --header and --body at the same time is deprecated; ' + 'use --body --prototypes instead', False) args.prototypes = True args.header = False compatibility_mode = True if args.header: generate_header_preamble(args.output, prefix=args.prefix, std_includes=args.stdinc, use_pragma=args.pragma_once) elif args.body: generate_body_preamble(args.output, std_includes=args.stdinc, include_headers=args.include_headers, cpp_defines=args.cpp_defines, cpp_undefines=args.cpp_undefines) seen_marshallers = set() for infile in args.files: if not args.quiet: print_info('Reading {}...'.format(infile.name)) line_count = 0 for line in infile: line_count += 1 if line == '\n' or line.startswith('#'): continue matches = re.match(r'^([A-Z0-9]+)\s?:\s?([A-Z0-9,\s]+)$', line.strip()) if not matches or len(matches.groups()) != 2: print_warning('Invalid entry: "{}"'.format(line.strip()), args.fatal_warnings) continue if not args.skip_source: location = '{} ({}:{:d})'.format(line.strip(), infile.name, line_count) else: location = None retval = matches.group(1).strip() params = [x.strip() for x in matches.group(2).split(',')] check_args(retval, params, args.fatal_warnings) raw_marshaller = generate_marshaller_name(args.prefix, retval, params, False) if raw_marshaller in seen_marshallers: if args.verbose: print_info('Skipping repeated marshaller {}'.format(line.strip())) continue if args.header: if args.verbose: print_info('Generating declaration for {}'.format(line.strip())) generate_std_alias = False if args.stdinc: std_marshaller = generate_marshaller_name(STD_PREFIX, retval, params) if std_marshaller in GOBJECT_MARSHALLERS: if args.verbose: print_info('Skipping default marshaller {}'.format(line.strip())) generate_std_alias = True marshaller = generate_marshaller_name(args.prefix, retval, params) if generate_std_alias: generate_marshaller_alias(args.output, marshaller, std_marshaller, source_location=location, include_va=args.valist_marshallers) else: generate_marshallers_header(args.output, retval, params, prefix=args.prefix, internal=args.internal, include_va=args.valist_marshallers, source_location=location) # If the marshaller is defined using a deprecated token, we want to maintain # compatibility and generate an alias for the old name pointing to the new # one if marshaller != raw_marshaller: if args.verbose: print_info('Generating alias for deprecated tokens') generate_marshaller_alias(args.output, raw_marshaller, marshaller, include_va=args.valist_marshallers) elif args.body: if args.verbose: print_info('Generating definition for {}'.format(line.strip())) generate_std_alias = False if args.stdinc: std_marshaller = generate_marshaller_name(STD_PREFIX, retval, params) if std_marshaller in GOBJECT_MARSHALLERS: if args.verbose: print_info('Skipping default marshaller {}'.format(line.strip())) generate_std_alias = True marshaller = generate_marshaller_name(args.prefix, retval, params) if generate_std_alias: # We need to generate the alias if we are in compatibility mode if compatibility_mode: generate_marshaller_alias(args.output, marshaller, std_marshaller, source_location=location, include_va=args.valist_marshallers) else: generate_marshallers_body(args.output, retval, params, prefix=args.prefix, internal=args.internal, include_prototype=args.prototypes, include_va=args.valist_marshallers, source_location=location) if compatibility_mode and marshaller != raw_marshaller: if args.verbose: print_info('Generating alias for deprecated tokens') generate_marshaller_alias(args.output, raw_marshaller, marshaller, include_va=args.valist_marshallers) seen_marshallers.add(raw_marshaller) if args.header: generate_header_postamble(args.output, prefix=args.prefix, use_pragma=args.pragma_once)
[+]
..
[-] chfn
[edit]
[-] find
[edit]
[-] zdiff
[edit]
[-] linux-boot-prober
[edit]
[-] snapfuse
[edit]
[-] paperconf
[edit]
[-] dsync
[edit]
[-] paste
[edit]
[-] msgmerge
[edit]
[-] ntfsusermap
[edit]
[-] ckbcomp
[edit]
[-] sg_ident
[edit]
[-] pidof
[edit]
[-] perlbug
[edit]
[-] NF
[edit]
[-] lsns
[edit]
[-] dircolors
[edit]
[-] dbilogstrip
[edit]
[-] g++
[edit]
[-] pmap
[edit]
[-] unsquashfs
[edit]
[-] wall
[edit]
[-] slogin
[edit]
[-] ssh-import-id
[edit]
[-] sbsiglist
[edit]
[-] lzmainfo
[edit]
[-] do-release-upgrade
[edit]
[-] fc-validate
[edit]
[-] x86_64-linux-gnu-ar
[edit]
[-] fgrep
[edit]
[-] sg_map
[edit]
[-] dh_perl_dbi
[edit]
[-] systemd-mount
[edit]
[-] dglob
[edit]
[-] x86_64-linux-gnu-addr2line
[edit]
[-] sg_persist
[edit]
[-] vmtoolsd
[edit]
[-] gprof
[edit]
[-] perl
[edit]
[-] mysql_tzinfo_to_sql
[edit]
[-] ua
[edit]
[-] splain
[edit]
[-] ssh-agent
[edit]
[-] python3.8-config
[edit]
[-] gtk-launch
[edit]
[-] cpapi3
[edit]
[-] ps
[edit]
[-] pkttyagent
[edit]
[-] zdump
[edit]
[-] btrfs-convert
[edit]
[-] pod2readme
[edit]
[-] c_rehash
[edit]
[-] conch3
[edit]
[-] pinky
[edit]
[-] tic
[edit]
[-] eu-ar
[edit]
[-] byobu-disable-prompt
[edit]
[-] systemd-notify
[edit]
[-] eu-ranlib
[edit]
[-] eqn
[edit]
[-] trial3
[edit]
[-] msgfmt
[edit]
[-] sg_reset_wp
[edit]
[-] kernel-install
[edit]
[-] dnssec-settime
[edit]
[-] apropos
[edit]
[-] apport-bug
[edit]
[-] pyjwt3
[edit]
[-] x86_64-linux-gnu-ranlib
[edit]
[-] dpkg-checkbuilddeps
[edit]
[-] pr
[edit]
[-] dpkg-statoverride
[edit]
[-] ncursesw6-config
[edit]
[-] unattended-upgrades
[edit]
[-] view
[edit]
[-] strace
[edit]
[-] tabs
[edit]
[-] partx
[edit]
[-] ntfssecaudit
[edit]
[-] pathchk
[edit]
[-] ldd
[edit]
[-] x86_64
[edit]
[-] recode-sr-latin
[edit]
[-] login
[edit]
[-] gpgcompose
[edit]
[-] fallocate
[edit]
[-] byobu-launcher
[edit]
[-] dh_perl_openssl
[edit]
[-] vimdiff
[edit]
[-] grep-status
[edit]
[-] jsonschema
[edit]
[-] xzcat
[edit]
[-] logname
[edit]
[-] htdbm
[edit]
[-] screendump
[edit]
[-] lcf
[edit]
[-] kill
[edit]
[-] c++
[edit]
[-] top
[edit]
[-] ranlib
[edit]
[-] aspell-import
[edit]
[-] readlink
[edit]
[-] gpgtar
[edit]
[-] cautious-launcher
[edit]
[-] apt-get
[edit]
[-] whoami
[edit]
[-] nm
[edit]
[-] msguniq
[edit]
[-] mknod
[edit]
[-] x86_64-linux-gnu-c++filt
[edit]
[-] tbl
[edit]
[-] ypdomainname
[edit]
[-] sg_dd
[edit]
[-] x86_64-linux-gnu-ld.gold
[edit]
[-] lzcmp
[edit]
[-] helpztags
[edit]
[-] lzmore
[edit]
[-] py3compile
[edit]
[-] pftp
[edit]
[-] dpkg-gensymbols
[edit]
[-] fc-list
[edit]
[-] check-language-support
[edit]
[-] dpkg-genbuildinfo
[edit]
[-] ftp
[edit]
[-] dwp
[edit]
[-] sg_zone
[edit]
[-] ntfs-3g.probe
[edit]
[-] pidstat
[edit]
[-] eps2eps
[edit]
[-] cat
[edit]
[-] ea-php81-pecl
[edit]
[-] run-mailcap
[edit]
[-] fc-query
[edit]
[-] tty
[edit]
[-] ssh-argv0
[edit]
[-] byobu-launcher-uninstall
[edit]
[-] grep-available
[edit]
[-] seq
[edit]
[-] lowntfs-3g
[edit]
[-] eject
[edit]
[-] nisdomainname
[edit]
[-] apt-sortpkgs
[edit]
[-] scsi_temperature
[edit]
[-] animate
[edit]
[-] lz4cat
[edit]
[-] setmetamode
[edit]
[-] apt-file
[edit]
[-] genrb
[edit]
[-] rsh
[edit]
[-] HEAD
[edit]
[-] gcc-nm
[edit]
[-] sha512sum
[edit]
[-] rrsync
[edit]
[-] unxz
[edit]
[-] systemd-path
[edit]
[-] libtool
[edit]
[-] gtk-update-icon-cache
[edit]
[-] prezip
[edit]
[-] dirmngr
[edit]
[-] byobu-config
[edit]
[-] xzgrep
[edit]
[-] fc-conflist
[edit]
[-] update-mime-database
[edit]
[-] sg_modes
[edit]
[-] ip
[edit]
[-] systemd-ask-password
[edit]
[-] strings
[edit]
[-] make-first-existing-target
[edit]
[-] btrfs
[edit]
[-] btrfs-select-super
[edit]
[-] dnssec-revoke
[edit]
[-] systemd-sysusers
[edit]
[-] nproc
[edit]
[-] run-one-until-success
[edit]
[-] conjure
[edit]
[-] mysqlbinlog
[edit]
[-] ntfstruncate
[edit]
[-] scsi_start
[edit]
[-] gpg-zip
[edit]
[-] nawk
[edit]
[-] fakeroot
[edit]
[-] bzless
[edit]
[-] dpkg-mergechangelogs
[edit]
[-] pod2html
[edit]
[-] gpg-wks-server
[edit]
[-] xargs
[edit]
[-] ea-php73
[edit]
[-] grub-mkrelpath
[edit]
[-] bashbug
[edit]
[-] iostat
[edit]
[-] zcmp
[edit]
[-] scsi_satl
[edit]
[-] pgrep
[edit]
[-] bzip2
[edit]
[-] dpkg-buildflags
[edit]
[-] nsenter
[edit]
[-] mono
[edit]
[-] my_print_defaults
[edit]
[-] chmod
[edit]
[-] ps2ps2
[edit]
[-] kbd_mode
[edit]
[-] gcc-ranlib-9
[edit]
[-] col8
[edit]
[-] sg_write_x
[edit]
[-] showkey
[edit]
[-] chvt
[edit]
[-] eu-elflint
[edit]
[-] cpp
[edit]
[-] sg_referrals
[edit]
[-] sort
[edit]
[-] dpkg-maintscript-helper
[edit]
[-] myisampack
[edit]
[-] ssh-import-id-gh
[edit]
[-] shred
[edit]
[-] scp
[edit]
[-] w.procps
[edit]
[-] bsd-from
[edit]
[-] gsdj500
[edit]
[-] git-upload-pack
[edit]
[-] btrfs-map-logical
[edit]
[-] ssh
[edit]
[-] gapplication
[edit]
[-] broadwayd
[edit]
[-] bzcmp
[edit]
[-] mysql_config_editor
[edit]
[-] pyclean
[edit]
[-] byobu-ugraph
[edit]
[-] upower
[edit]
[-] ntfs-3g
[edit]
[-] pinentry-curses
[edit]
[-] ps2ps
[edit]
[-] imunify-fgw-dump
[edit]
[-] stdbuf
[edit]
[-] pwdx
[edit]
[-] vcs-run
[edit]
[-] systemd-socket-activate
[edit]
[-] ea-php81
[edit]
[-] base64
[edit]
[-] scsi_stop
[edit]
[-] cp
[edit]
[-] nroff
[edit]
[-] tail
[edit]
[-] perl5.30-x86_64-linux-gnu
[edit]
[-] update-alternatives
[edit]
[-] faked-tcp
[edit]
[-] colrm
[edit]
[-] glib-mkenums
[edit]
[-] bzexe
[edit]
[-] python2
[edit]
[-] setpriv
[edit]
[-] byobu-export
[edit]
[-] pphs
[edit]
[-] which-pkg-broke
[edit]
[-] rpm2cpio
[edit]
[-] man-recode
[edit]
[-] timeout
[edit]
[-] dbus-monitor
[edit]
[-] gendiff
[edit]
[-] lscpu
[edit]
[-] rpmquery
[edit]
[-] getkeycodes
[edit]
[-] cc
[edit]
[-] gdk-pixbuf-thumbnailer
[edit]
[-] eu-elfcmp
[edit]
[-] rbash
[edit]
[-] ar
[edit]
[-] savelog
[edit]
[-] col4
[edit]
[-] sg_write_same
[edit]
[-] ptardiff
[edit]
[-] msgen
[edit]
[-] lsusb
[edit]
[-] chrt
[edit]
[-] x86_64-linux-gnu-gcov-tool
[edit]
[-] sg_get_config
[edit]
[-] snap
[edit]
[-] test
[edit]
[-] resolvectl
[edit]
[-] getopt
[edit]
[-] more
[edit]
[-] pydoc2.7
[edit]
[-] sg_copy_results
[edit]
[-] byobu-status
[edit]
[-] rpmbuild
[edit]
[-] import
[edit]
[-] systemd-cat
[edit]
[-] httxt2dbm
[edit]
[-] grub-mkfont
[edit]
[-] icuinfo
[edit]
[-] lz4_decompress
[edit]
[-] clear
[edit]
[-] myisam_ftdump
[edit]
[-] x86_64-linux-gnu-gcc-ar
[edit]
[-] setterm
[edit]
[-] ctstat
[edit]
[-] col9
[edit]
[-] vigpg
[edit]
[-] fusermount
[edit]
[-] htpasswd
[edit]
[-] gettext
[edit]
[-] automat-visualize3
[edit]
[-] ea-php80-pear
[edit]
[-] grub-syslinux2cfg
[edit]
[-] grep-aptavail
[edit]
[-] crontab
[edit]
[-] ps2pdf
[edit]
[-] neqn
[edit]
[-] numfmt
[edit]
[-] fakeroot-sysv
[edit]
[-] netstat
[edit]
[-] slabtop
[edit]
[-] chgrp
[edit]
[-] sg_bg_ctl
[edit]
[-] byobu-select-profile
[edit]
[-] soelim
[edit]
[-] gencnval
[edit]
[-] ipcmk
[edit]
[-] btrfs-find-root
[edit]
[-] popbugs
[edit]
[-] delpart
[edit]
[-] pyhtmlizer3
[edit]
[-] showconsolefont
[edit]
[-] lsattr
[edit]
[-] setfacl
[edit]
[-] mysql_secure_installation
[edit]
[-] ifnames
[edit]
[-] zgrep
[edit]
[-] dzgrep
[edit]
[-] scsi_readcap
[edit]
[-] ubuntu-advantage
[edit]
[-] hexdump
[edit]
[-] dirmngr-client
[edit]
[-] byobu-prompt
[edit]
[-] mysql_ssl_rsa_setup
[edit]
[-] lsphp
[edit]
[-] column
[edit]
[-] gdparttopng
[edit]
[-] gawk
[edit]
[-] flock
[edit]
[-] dash
[edit]
[-] grub-fstest
[edit]
[-] pkgdata
[edit]
[-] pro
[edit]
[-] pydoc3
[edit]
[-] faillog
[edit]
[-] ptargrep
[edit]
[-] cksum
[edit]
[-] debconf-show
[edit]
[-] debman
[edit]
[-] mysqlslap
[edit]
[-] snapctl
[edit]
[-] imunify-agent-proxy
[edit]
[-] imunify360-command-wrapper
[edit]
[-] traceroute6
[edit]
[-] getconf
[edit]
[-] mono-hang-watchdog
[edit]
[-] msgcomm
[edit]
[-] bdftogd
[edit]
[-] ntfsls
[edit]
[-] tzselect
[edit]
[-] apport-collect
[edit]
[-] readelf
[edit]
[-] gcov-9
[edit]
[-] prtstat
[edit]
[-] mtr
[edit]
[-] mv
[edit]
[-] g++-9
[edit]
[-] dovecot-sysreport
[edit]
[-] sginfo
[edit]
[-] rpm
[edit]
[-] nslookup
[edit]
[-] dpkg-architecture
[edit]
[-] byobu-launcher-install
[edit]
[-] dirname
[edit]
[-] pure-pwconvert
[edit]
[-] loadkeys
[edit]
[-] select-editor
[edit]
[-] file
[edit]
[-] dnssec-keygen
[edit]
[-] choom
[edit]
[-] pastebinit
[edit]
[-] pl2pm
[edit]
[-] sosreport
[edit]
[-] ssh-add
[edit]
[-] apt-cache
[edit]
[-] su
[edit]
[-] sos
[edit]
[-] xdg-user-dirs-update
[edit]
[-] c99
[edit]
[-] patch
[edit]
[-] gcov-dump
[edit]
[-] mtrace
[edit]
[-] run-one-until-failure
[edit]
[-] lwp-request
[edit]
[-] pdb3
[edit]
[-] gdbus
[edit]
[-] x86_64-linux-gnu-cpp
[edit]
[-] aa-enabled
[edit]
[-] timedatectl
[edit]
[-] dpkg-shlibdeps
[edit]
[-] lua
[edit]
[-] base32
[edit]
[-] mysqldumpslow
[edit]
[-] eu-readelf
[edit]
[-] twistd3
[edit]
[-] scsi_logging_level
[edit]
[-] byobu-shell
[edit]
[-] chown
[edit]
[-] cloud-init
[edit]
[-] pure-pw
[edit]
[-] ntfsfix
[edit]
[-] systemd
[edit]
[-] python3
[edit]
[-] ea-php74-pecl
[edit]
[-] grub-editenv
[edit]
[-] uconv
[edit]
[-] stat
[edit]
[-] scandeps
[edit]
[-] gettextize
[edit]
[-] lua5.3
[edit]
[-] gdbmtool
[edit]
[-] linux32
[edit]
[-] landscape-sysinfo
[edit]
[-] sort-dctrl
[edit]
[-] h2xs
[edit]
[-] ea-php80
[edit]
[-] btrfstune
[edit]
[-] ntfsinfo
[edit]
[-] giftogd2
[edit]
[-] manifest
[edit]
[-] expand
[edit]
[-] dgrep
[edit]
[-] ssh-import-id-lp
[edit]
[-] ea-php73-pecl
[edit]
[-] ubuntu-security-status
[edit]
[-] lz4
[edit]
[-] montage
[edit]
[-] cpan
[edit]
[-] aa-exec
[edit]
[-] vmware-vmblock-fuse
[edit]
[-] sar
[edit]
[-] x86_64-linux-gnu-cpp-9
[edit]
[-] psfxtable
[edit]
[-] autoconf
[edit]
[-] pslog
[edit]
[-] jsondiff
[edit]
[-] imunify-antivirus
[edit]
[-] setlogcons
[edit]
[-] podchecker
[edit]
[-] ghostscript
[edit]
[-] wget
[edit]
[-] pstree
[edit]
[-] sg_reset
[edit]
[-] mcookie
[edit]
[-] eu-size
[edit]
[-] getfacl
[edit]
[-] ptx
[edit]
[-] fwupdmgr
[edit]
[-] sg_start
[edit]
[-] unlzma
[edit]
[-] pbputs
[edit]
[-] htdigest
[edit]
[-] dir
[edit]
[-] ucfr
[edit]
[-] xzless
[edit]
[-] gdbmtool-nolfs
[edit]
[-] gresource
[edit]
[-] bootctl
[edit]
[-] pkg-config
[edit]
[-] vmware-namespace-cmd
[edit]
[-] newgrp
[edit]
[-] last
[edit]
[-] diff
[edit]
[-] lessfile
[edit]
[-] dpkg-gencontrol
[edit]
[-] xzmore
[edit]
[-] unattended-upgrade
[edit]
[-] x86_64-linux-gnu-objdump
[edit]
[-] gcc-9
[edit]
[-] myisamchk
[edit]
[-] dh_autotools-dev_restoreconfig
[edit]
[-] json_xs
[edit]
[-] dpkg-parsechangelog
[edit]
[-] time
[edit]
[-] fc-cache
[edit]
[-] dbus-update-activation-environment
[edit]
[-] x86_64-linux-gnu-size
[edit]
[-] findmnt
[edit]
[-] identify
[edit]
[-] lwp-download
[edit]
[-] iscsiadm
[edit]
[-] glib-compile-resources
[edit]
[-] col5
[edit]
[-] sg_logs
[edit]
[-] install
[edit]
[-] mlock
[edit]
[-] dpkg-vendor
[edit]
[-] rnano
[edit]
[-] makeconv
[edit]
[-] ntfscluster
[edit]
[-] pure-statsdecode
[edit]
[-] unicode_start
[edit]
[-] apt-config
[edit]
[-] zip
[edit]
[-] less
[edit]
[-] sg_requests
[edit]
[-] pinentry
[edit]
[-] mawk
[edit]
[-] dnssec-signzone
[edit]
[-] dman
[edit]
[-] run-this-one
[edit]
[-] gencat
[edit]
[-] links
[edit]
[-] ibd2sdi
[edit]
[-] dpkg-scanpackages
[edit]
[-] gpgconf
[edit]
[-] setupcon
[edit]
[-] sg_unmap
[edit]
[-] ntfswipe
[edit]
[-] pdb2
[edit]
[-] chage
[edit]
[-] debget
[edit]
[-] rsync
[edit]
[-] perlml
[edit]
[-] iptables-xml
[edit]
[-] pkexec
[edit]
[-] debconf-copydb
[edit]
[-] gobject-query
[edit]
[-] chattr
[edit]
[-] shuf
[edit]
[-] sg_rdac
[edit]
[-] grotty
[edit]
[-] byobu-keybindings
[edit]
[-] ea-php82-pecl
[edit]
[-] sgm_dd
[edit]
[-] man
[edit]
[-] glib-genmarshal
[edit]
[-] grep-debtags
[edit]
[-] lnstat
[edit]
[-] ea-php83
[edit]
[-] uname
[edit]
[-] strace-log-merge
[edit]
[-] mt-gnu
[edit]
[-] edit
[edit]
[-] webpng
[edit]
[-] sg_format
[edit]
[-] pager
[edit]
[-] printf
[edit]
[-] xgettext
[edit]
[-] setarch
[edit]
[-] tar
[edit]
[-] x86_64-linux-gnu-strip
[edit]
[-] awk
[edit]
[-] csplit
[edit]
[-] rtstat
[edit]
[-] c89
[edit]
[-] truncate
[edit]
[-] ntfsfallocate
[edit]
[-] x86_64-linux-gnu-ld.bfd
[edit]
[-] ntfscmp
[edit]
[-] mcdiff
[edit]
[-] ea-php80-pecl
[edit]
[-] sg_read_buffer
[edit]
[-] mcedit
[edit]
[-] pygettext2.7
[edit]
[-] dnsdomainname
[edit]
[-] sg_vpd
[edit]
[-] prlimit
[edit]
[-] sprof
[edit]
[-] x86_64-linux-gnu-gcc-nm-9
[edit]
[-] openvt
[edit]
[-] gtbl
[edit]
[-] lessecho
[edit]
[-] gm
[edit]
[-] bzcat
[edit]
[-] named-checkconf
[edit]
[-] sg_write_verify
[edit]
[-] vim.basic
[edit]
[-] systemd-tmpfiles
[edit]
[-] msgunfmt
[edit]
[-] sg_decode_sense
[edit]
[-] pkcheck
[edit]
[-] growpart
[edit]
[-] enchant-lsmod-2
[edit]
[-] ld.gold
[edit]
[-] linux-update-symlinks
[edit]
[-] pyversions
[edit]
[-] cut
[edit]
[-] infotocap
[edit]
[-] colcrt
[edit]
[-] luac
[edit]
[-] usbreset
[edit]
[-] lzless
[edit]
[-] ipcrm
[edit]
[-] fakeroot-tcp
[edit]
[-] sg_compare_and_write
[edit]
[-] debugedit
[edit]
[-] gcc
[edit]
[-] systemd-tty-ask-password-agent
[edit]
[-] curl
[edit]
[-] whatis
[edit]
[-] yes
[edit]
[-] printafm
[edit]
[-] dumpkeys
[edit]
[-] loginctl
[edit]
[-] rgrep
[edit]
[-] gpg
[edit]
[-] linux-version
[edit]
[-] chacl
[edit]
[-] pycompile
[edit]
[-] vi
[edit]
[-] systemd-hwdb
[edit]
[-] debconf-apt-progress
[edit]
[-] mesg
[edit]
[-] systemd-escape
[edit]
[-] kmodsign
[edit]
[-] chardetect3
[edit]
[-] nstat
[edit]
[-] dbus-cleanup-sockets
[edit]
[-] perldoc
[edit]
[-] automake
[edit]
[-] pic
[edit]
[-] sqlite3
[edit]
[-] rpmsign
[edit]
[-] c99-gcc
[edit]
[-] xxd
[edit]
[-] run-one
[edit]
[-] cvtsudoers
[edit]
[-] smistrip
[edit]
[-] sbkeysync
[edit]
[-] systemd-detect-virt
[edit]
[-] fmt
[edit]
[-] mt
[edit]
[-] sg_sat_set_features
[edit]
[-] gsbj
[edit]
[-] tkconch3
[edit]
[-] byobu-quiet
[edit]
[-] scsi_mandat
[edit]
[-] eatmydata
[edit]
[-] elinks
[edit]
[-] splitfont
[edit]
[-] migrate-pubring-from-classic-gpg
[edit]
[-] pldd
[edit]
[-] mysql
[edit]
[-] journalctl
[edit]
[-] sha1sum
[edit]
[-] mktemp
[edit]
[-] traceroute6.iputils
[edit]
[-] users
[edit]
[-] ps2epsi
[edit]
[-] lwp-dump
[edit]
[-] h2load
[edit]
[-] dmesg
[edit]
[-] procan
[edit]
[-] loadunimap
[edit]
[-] sg_rep_zones
[edit]
[-] dpkg-scansources
[edit]
[-] purge-old-kernels
[edit]
[-] vmware-alias-import
[edit]
[-] rpmkeys
[edit]
[-] gd2togif
[edit]
[-] dzfgrep
[edit]
[-] rpmspec
[edit]
[-] corelist
[edit]
[-] stty
[edit]
[-] setleds
[edit]
[-] uptime
[edit]
[-] pcre2test
[edit]
[-] netkit-ftp
[edit]
[-] apxs
[edit]
[-] ncursesw5-config
[edit]
[-] fc-match
[edit]
[-] hd
[edit]
[-] gunzip
[edit]
[-] lspci
[edit]
[-] nsupdate
[edit]
[-] dbus-run-session
[edit]
[-] volname
[edit]
[-] git
[edit]
[-] ea-php73-pear
[edit]
[-] ea-php83-pecl
[edit]
[-] touch
[edit]
[-] debconf
[edit]
[-] cli-gacutil
[edit]
[-] gcov
[edit]
[-] byobu-tmux
[edit]
[-] grub-mklayout
[edit]
[-] dbus-send
[edit]
[-] mysqlsh
[edit]
[-] apport-unpack
[edit]
[-] systemd-stdio-bridge
[edit]
[-] udisksctl
[edit]
[-] gtk-builder-tool
[edit]
[-] xml2-config
[edit]
[-] rm
[edit]
[-] gcc-nm-9
[edit]
[-] sg_ses
[edit]
[-] rdma
[edit]
[-] date
[edit]
[-] gsnd
[edit]
[-] gcov-dump-9
[edit]
[-] mysqld_safe
[edit]
[-] sg_stpg
[edit]
[-] pkcon
[edit]
[-] kmod
[edit]
[-] calendar
[edit]
[-] dpkg-name
[edit]
[-] msgattrib
[edit]
[-] dh_autotools-dev_updateconfig
[edit]
[-] tac
[edit]
[-] enc2xs
[edit]
[-] x86_64-linux-gnu-pkg-config
[edit]
[-] x86_64-linux-gnu-g++-9
[edit]
[-] reset
[edit]
[-] pwd
[edit]
[-] bzegrep
[edit]
[-] fc-scan
[edit]
[-] named-nzd2nzf
[edit]
[-] watch
[edit]
[-] fincore
[edit]
[-] from
[edit]
[-] systemd-delta
[edit]
[-] lzdiff
[edit]
[-] sensible-browser
[edit]
[-] prove
[edit]
[-] preunzip
[edit]
[-] ea-php74
[edit]
[-] sg_prevent
[edit]
[-] autom4te
[edit]
[-] find-dbgsym-packages
[edit]
[-] busctl
[edit]
[-] sg_sat_phy_event
[edit]
[-] sqldiff
[edit]
[-] mysql_upgrade
[edit]
[-] x86_64-linux-gnu-python2.7-config
[edit]
[-] dpkg-divert
[edit]
[-] od
[edit]
[-] ntfsdecrypt
[edit]
[-] tput
[edit]
[-] wdctl
[edit]
[-] sensible-editor
[edit]
[-] ping
[edit]
[-] routef
[edit]
[-] dnssec-importkey
[edit]
[-] prezip-bin
[edit]
[-] dfu-tool
[edit]
[-] msginit
[edit]
[-] gettext.sh
[edit]
[-] os-prober
[edit]
[-] bzdiff
[edit]
[-] lastb
[edit]
[-] lesspipe
[edit]
[-] infobrowser
[edit]
[-] aspell
[edit]
[-] sg_test_rwbuf
[edit]
[-] resizepart
[edit]
[-] sadf
[edit]
[-] debconf-communicate
[edit]
[-] byobu-screen
[edit]
[-] sos-collector
[edit]
[-] xzcmp
[edit]
[-] apt
[edit]
[-] linux64
[edit]
[-] python3.8
[edit]
[-] toe
[edit]
[-] mysql-secret-store-login-path
[edit]
[-] tee
[edit]
[-] pydoc2
[edit]
[-] gpic
[edit]
[-] objcopy
[edit]
[-] mono-sgen
[edit]
[-] col
[edit]
[-] mksquashfs
[edit]
[-] add-apt-repository
[edit]
[-] msgfilter
[edit]
[-] fc-cat
[edit]
[-] mandb
[edit]
[-] ping6
[edit]
[-] fwupdtool
[edit]
[-] free
[edit]
[-] finalrd
[edit]
[-] whiptail
[edit]
[-] x86_64-linux-gnu-ld
[edit]
[-] mysqladmin
[edit]
[-] ispell-wrapper
[edit]
[-] b2sum
[edit]
[-] gcc-ar
[edit]
[-] debconf-set-selections
[edit]
[-] sg_read_block_limits
[edit]
[-] byobu-layout
[edit]
[-] dpkg
[edit]
[-] cpio
[edit]
[-] static-sh
[edit]
[-] zlib_decompress
[edit]
[-] pdb2.7
[edit]
[-] mysqlimport
[edit]
[-] xdg-user-dir
[edit]
[-] zipdetails
[edit]
[-] aclocal-1.16
[edit]
[-] byobu-enable
[edit]
[-] zipcloak
[edit]
[-] sudo
[edit]
[-] udevadm
[edit]
[-] socat
[edit]
[-] autoscan
[edit]
[-] link
[edit]
[-] xzfgrep
[edit]
[-] setfont
[edit]
[-] lsinitramfs
[edit]
[-] red
[edit]
[-] gslj
[edit]
[-] byobu-disable
[edit]
[-] eu-objdump
[edit]
[-] setpci
[edit]
[-] shasum
[edit]
[-] apt-add-repository
[edit]
[-] gtk-query-settings
[edit]
[-] sar.sysstat
[edit]
[-] sg_inq
[edit]
[-] lastlog
[edit]
[-] ntfsmove
[edit]
[-] cmp
[edit]
[-] keep-one-running
[edit]
[-] arpaname
[edit]
[-] gtester
[edit]
[-] logger
[edit]
[-] VGAuthService
[edit]
[-] mkfifo
[edit]
[-] systemd-inhibit
[edit]
[-] myisamlog
[edit]
[-] lchsh
[edit]
[-] uapi
[edit]
[-] keyctl
[edit]
[-] mcview
[edit]
[-] ncurses6-config
[edit]
[-] imunify360-agent
[edit]
[-] miniterm
[edit]
[-] oem-getlogs
[edit]
[-] msgcmp
[edit]
[-] cpp-9
[edit]
[-] grub-mknetdir
[edit]
[-] filan
[edit]
[-] luac5.3
[edit]
[-] python3-config
[edit]
[-] python2.7
[edit]
[-] x86_64-linux-gnu-gcc-nm
[edit]
[-] libpng-config
[edit]
[-] localectl
[edit]
[-] word-list-compress
[edit]
[-] gold
[edit]
[-] imunify-service
[edit]
[-] captoinfo
[edit]
[-] lsipc
[edit]
[-] pcre2-config
[edit]
[-] cal
[edit]
[-] ea-php82-pear
[edit]
[-] mkpasswd
[edit]
[-] who
[edit]
[-] sg_opcodes
[edit]
[-] btrfsck
[edit]
[-] passwd
[edit]
[-] xzegrep
[edit]
[-] basename
[edit]
[-] vmstat
[edit]
[-] x86_64-linux-gnu-gcc-9
[edit]
[-] cloud-init-per
[edit]
[-] cpan-mirrors
[edit]
[-] h2ph
[edit]
[-] pip
[edit]
[-] lz4c
[edit]
[-] grub-script-check
[edit]
[-] grub-menulst2cfg
[edit]
[-] sg_read_long
[edit]
[-] instmodsh
[edit]
[-] grub-mkrescue
[edit]
[-] findrule
[edit]
[-] eu-findtextrel
[edit]
[-] sg_xcopy
[edit]
[-] glib-gettextize
[edit]
[-] dbiproxy
[edit]
[-] pygettext3
[edit]
[-] dbus-daemon
[edit]
[-] md5sum
[edit]
[-] pdnsutil
[edit]
[-] rpmgraph
[edit]
[-] autoupdate
[edit]
[-] mount
[edit]
[-] byobu-ulevel
[edit]
[-] x86_64-linux-gnu-elfedit
[edit]
[-] mysqldump
[edit]
[-] unexpand
[edit]
[-] fgconsole
[edit]
[-] taskset
[edit]
[-] lesskey
[edit]
[-] tsort
[edit]
[-] wc
[edit]
[-] lsblk
[edit]
[-] at
[edit]
[-] debmany
[edit]
[-] cli
[edit]
[-] ps2txt
[edit]
[-] lwp-mirror
[edit]
[-] i386
[edit]
[-] zfgrep
[edit]
[-] tmux
[edit]
[-] col1
[edit]
[-] bzfgrep
[edit]
[-] x86_64-linux-gnu-dwp
[edit]
[-] gdbm_dump-nolfs
[edit]
[-] mysqlpump
[edit]
[-] nsec3hash
[edit]
[-] degrep
[edit]
[-] lslogins
[edit]
[-] nghttp
[edit]
[-] sg_seek
[edit]
[-] lexgrog
[edit]
[-] sg_luns
[edit]
[-] run-one-constantly
[edit]
[-] jsonpatch
[edit]
[-] byobu-enable-prompt
[edit]
[-] codepage
[edit]
[-] script
[edit]
[-] sg_write_buffer
[edit]
[-] rename.ul
[edit]
[-] pdf2dsc
[edit]
[-] zipinfo
[edit]
[-] vim
[edit]
[-] mmcli
[edit]
[-] dd
[edit]
[-] pygettext2
[edit]
[-] gpasswd
[edit]
[-] dnssec-dsfromkey
[edit]
[-] unlink
[edit]
[-] download-mibs
[edit]
[-] apt-ftparchive
[edit]
[-] head
[edit]
[-] getent
[edit]
[-] cpan5.30-x86_64-linux-gnu
[edit]
[-] sbattach
[edit]
[-] rlogin
[edit]
[-] telnet.netkit
[edit]
[-] df
[edit]
[-] dh_python2
[edit]
[-] gs
[edit]
[-] git-receive-pack
[edit]
[-] rpm2archive
[edit]
[-] rcp
[edit]
[-] zone2sql
[edit]
[-] fc-pattern
[edit]
[-] x86_64-pc-linux-gnu-pkg-config
[edit]
[-] json_reformat
[edit]
[-] rvim
[edit]
[-] pbget
[edit]
[-] POST
[edit]
[-] rmdir
[edit]
[-] dbxtool
[edit]
[-] png-fix-itxt
[edit]
[-] eu-nm
[edit]
[-] lsof
[edit]
[-] gcov-tool-9
[edit]
[-] cpansign
[edit]
[-] dpkg-genchanges
[edit]
[-] dpkg-source
[edit]
[-] setkeycodes
[edit]
[-] diff3
[edit]
[-] busybox
[edit]
[-] pngtogd
[edit]
[-] libpng16-config
[edit]
[-] zmore
[edit]
[-] json_pp
[edit]
[-] gdbm_dump
[edit]
[-] sh
[edit]
[-] bzgrep
[edit]
[-] join-dctrl
[edit]
[-] eu-elfcompress
[edit]
[-] json_verify
[edit]
[-] col7
[edit]
[-] usb-devices
[edit]
[-] sg_emc_trespass
[edit]
[-] uuidparse
[edit]
[-] sg_stream_ctl
[edit]
[-] vimtutor
[edit]
[-] lzgrep
[edit]
[-] ea-php82
[edit]
[-] sudoreplay
[edit]
[-] ckeygen3
[edit]
[-] strip
[edit]
[-] sotruss
[edit]
[-] genbrk
[edit]
[-] atrm
[edit]
[-] htop
[edit]
[-] sync
[edit]
[-] uuidgen
[edit]
[-] ld.bfd
[edit]
[-] dpkg-trigger
[edit]
[-] atq
[edit]
[-] named-checkzone
[edit]
[-] debconf-get-selections
[edit]
[-] m4
[edit]
[-] zless
[edit]
[-] install-info
[edit]
[-] col6
[edit]
[-] apt-mark
[edit]
[-] lsmem
[edit]
[-] perlivp
[edit]
[-] unzip
[edit]
[-] quotasync
[edit]
[-] cloud-id
[edit]
[-] snice
[edit]
[-] btrfs-image
[edit]
[-] jsonpatch-jsondiff
[edit]
[-] dpkg-distaddfile
[edit]
[-] vdir
[edit]
[-] split
[edit]
[-] rpcinfo
[edit]
[-] sg_rbuf
[edit]
[-] locale
[edit]
[-] grub-glue-efi
[edit]
[-] gacutil
[edit]
[-] gdcmpgif
[edit]
[-] ex
[edit]
[-] zipgrep
[edit]
[-] telnet
[edit]
[-] pdb3.8
[edit]
[-] rview
[edit]
[-] x86_64-linux-gnu-gold
[edit]
[-] sbsign
[edit]
[-] mogrify
[edit]
[-] pkmon
[edit]
[-] sbverify
[edit]
[-] dpigs
[edit]
[-] gpg-connect-agent
[edit]
[-] iconv
[edit]
[-] rpmdb
[edit]
[-] x86_64-linux-gnu-gcc
[edit]
[-] byobu
[edit]
[-] infocmp
[edit]
[-] sg_scan
[edit]
[-] rev
[edit]
[-] dpkg-deb
[edit]
[-] namei
[edit]
[-] grub-ntldr-img
[edit]
[-] ea-php81-pear
[edit]
[-] lua50
[edit]
[-] bash
[edit]
[-] psfgettable
[edit]
[-] ubuntu-bug
[edit]
[-] kbxutil
[edit]
[-] ucf
[edit]
[-] doveadm
[edit]
[-] logresolve
[edit]
[-] systemd-umount
[edit]
[-] sftp
[edit]
[-] dzegrep
[edit]
[-] scsi_ready
[edit]
[-] dbus-uuidgen
[edit]
[-] sg_rtpg
[edit]
[-] mountpoint
[edit]
[-] lzma
[edit]
[-] gtester-report
[edit]
[-] gsettings
[edit]
[-] gslp
[edit]
[-] networkctl
[edit]
[-] grub-mkstandalone
[edit]
[-] libnetcfg
[edit]
[-] gsdj
[edit]
[-] objdump
[edit]
[-] apt-key
[edit]
[-] dig
[edit]
[-] php
[edit]
[-] perror
[edit]
[-] pip3
[edit]
[-] gpg2
[edit]
[-] locale-check
[edit]
[-] autoreconf
[edit]
[-] tracepath
[edit]
[-] elfedit
[edit]
[-] sed
[edit]
[-] chcon
[edit]
[-] manpath
[edit]
[-] setsid
[edit]
[-] geqn
[edit]
[-] gpgsm
[edit]
[-] gdk-pixbuf-csource
[edit]
[-] tempfile
[edit]
[-] znew
[edit]
[-] size
[edit]
[-] zforce
[edit]
[-] 2to3-2.7
[edit]
[-] grub-file
[edit]
[-] scriptreplay
[edit]
[-] unzipsfx
[edit]
[-] sg_read_attr
[edit]
[-] host
[edit]
[-] eu-strings
[edit]
[-] systemd-machine-id-setup
[edit]
[-] vim.tiny
[edit]
[-] select-default-iwrap
[edit]
[-] tr
[edit]
[-] dvipdf
[edit]
[-] grub-mkimage
[edit]
[-] nice
[edit]
[-] gio-querymodules
[edit]
[-] utmpdump
[edit]
[-] gcc-ranlib
[edit]
[-] fwupdate
[edit]
[-] x86_64-linux-gnu-g++
[edit]
[-] derb
[edit]
[-] mysql_migrate_keyring
[edit]
[-] sg_rmsn
[edit]
[-] nohup
[edit]
[-] pcre2grep
[edit]
[-] info
[edit]
[-] dpkg-split
[edit]
[-] byobu-ctrl-a
[edit]
[-] catchsegv
[edit]
[-] vmware-toolbox-cmd
[edit]
[-] zabbix_sender
[edit]
[-] false
[edit]
[-] systemd-cgls
[edit]
[-] msggrep
[edit]
[-] sg_write_long
[edit]
[-] hostnamectl
[edit]
[-] vm-support
[edit]
[-] x86_64-linux-gnu-gprof
[edit]
[-] realpath
[edit]
[-] whois
[edit]
[-] nc
[edit]
[-] whereis
[edit]
[-] gio
[edit]
[-] ld
[edit]
[-] pdf2ps
[edit]
[-] pollinate
[edit]
[-] deb-systemd-invoke
[edit]
[-] ntfsrecover
[edit]
[-] vmhgfs-fuse
[edit]
[-] pydoc3.8
[edit]
[-] run-with-aspell
[edit]
[-] dnssec-keyfromlabel
[edit]
[-] c++filt
[edit]
[-] byobu-select-session
[edit]
[-] encguess
[edit]
[-] deb-systemd-helper
[edit]
[-] msgcat
[edit]
[-] write
[edit]
[-] gdbus-codegen
[edit]
[-] env
[edit]
[-] sbvarsign
[edit]
[-] sg_safte
[edit]
[-] dh_bash-completion
[edit]
[-] ps2ascii
[edit]
[-] arch
[edit]
[-] rpcgen
[edit]
[-] snmpkey
[edit]
[-] mc
[edit]
[-] pod2text
[edit]
[-] expiry
[edit]
[-] eu-unstrip
[edit]
[-] chsh
[edit]
[-] systemd-id128
[edit]
[-] debconf-escape
[edit]
[-] GET
[edit]
[-] msgconv
[edit]
[-] sg_wr_mode
[edit]
[-] lchfn
[edit]
[-] debconf-loadtemplate
[edit]
[-] hwe-support-status
[edit]
[-] sg_sync
[edit]
[-] cifsiostat
[edit]
[-] byobu-reconnect-sockets
[edit]
[-] as
[edit]
[-] ischroot
[edit]
[-] pdns_control
[edit]
[-] convert
[edit]
[-] dnssec-cds
[edit]
[-] sg_turs
[edit]
[+]
X11
[-] plymouth
[edit]
[-] vmware-checkvm
[edit]
[-] sg_map26
[edit]
[-] mapscrn
[edit]
[-] groff
[edit]
[-] ncal
[edit]
[-] named-compilezone
[edit]
[-] faked-sysv
[edit]
[-] grops
[edit]
[-] brotli
[edit]
[-] sg_get_lba_status
[edit]
[-] kbdinfo
[edit]
[-] sha256sum
[edit]
[-] ucfq
[edit]
[-] xmlwf
[edit]
[-] x86_64-linux-gnu-python3-config
[edit]
[-] pbput
[edit]
[-] gcc-ar-9
[edit]
[-] dpkg-buildpackage
[edit]
[-] dbiprof
[edit]
[-] lsb_release
[edit]
[-] expr
[edit]
[-] py3clean
[edit]
[-] pfbtopfa
[edit]
[-] x86_64-linux-gnu-objcopy
[edit]
[-] lzegrep
[edit]
[-] echo
[edit]
[-] pod2markdown
[edit]
[-] pod2man
[edit]
[-] domainname
[edit]
[-] ps2pdf14
[edit]
[-] on_ac_power
[edit]
[-] batch
[edit]
[-] vmware-vgauth-cmd
[edit]
[-] umount
[edit]
[-] which-pkg-broke-build
[edit]
[-] c89-gcc
[edit]
[-] xz
[edit]
[-] gpgsplit
[edit]
[-] ntfscat
[edit]
[-] display
[edit]
[-] ctail
[edit]
[-] doveconf
[edit]
[-] lzfgrep
[edit]
[-] symcryptrun
[edit]
[-] apport-cli
[edit]
[-] uniq
[edit]
[-] sg_sanitize
[edit]
[-] fuser
[edit]
[-] bc
[edit]
[-] usbhid-dump
[edit]
[-] gencfu
[edit]
[-] grog
[edit]
[-] automake-1.16
[edit]
[-] factor
[edit]
[-] pf2afm
[edit]
[-] tload
[edit]
[-] eu-addr2line
[edit]
[-] skill
[edit]
[-] innochecksum
[edit]
[-] systemd-run
[edit]
[-] psfaddtable
[edit]
[-] networkd-dispatcher
[edit]
[-] jsonpointer
[edit]
[-] sg_sat_identify
[edit]
[-] named-journalprint
[edit]
[-] pygettext3.8
[edit]
[-] ec2metadata
[edit]
[-] grub-mkpasswd-pbkdf2
[edit]
[-] systemd-cgtop
[edit]
[-] ionice
[edit]
[-] sha224sum
[edit]
[-] podselect
[edit]
[-] python2.7-config
[edit]
[-] sgp_dd
[edit]
[-] x86_64-linux-gnu-gcc-ranlib-9
[edit]
[-] enchant-2
[edit]
[-] chardet3
[edit]
[-] systemctl
[edit]
[-] ncurses5-config
[edit]
[-] x86_64-linux-gnu-gcov
[edit]
[-] ngettext
[edit]
[-] fold
[edit]
[-] mysqlshow
[edit]
[-] eu-strip
[edit]
[-] byobu-janitor
[edit]
[-] sg
[edit]
[-] addpart
[edit]
[-] ssh-copy-id
[edit]
[-] delv
[edit]
[-] glib-compile-schemas
[edit]
[-] cpapi1
[edit]
[-] groups
[edit]
[-] ea-php74-pear
[edit]
[-] gzip
[edit]
[-] zipsplit
[edit]
[-] hostid
[edit]
[-] twist3
[edit]
[-] ls
[edit]
[-] sg_timestamp
[edit]
[-] distro-info
[edit]
[-] clear_console
[edit]
[-] gzexe
[edit]
[-] tbl-dctrl
[edit]
[-] eu-make-debug-archive
[edit]
[-] funzip
[edit]
[-] autoheader
[edit]
[-] sum
[edit]
[-] lshw
[edit]
[-] sw-engine
[edit]
[-] renice
[edit]
[-] ps2pdf12
[edit]
[-] msgexec
[edit]
[-] x86_64-linux-gnu-gcc-ar-9
[edit]
[-] annotate
[edit]
[-] apt-cdrom
[edit]
[-] localedef
[edit]
[-] gdk-pixbuf-pixdata
[edit]
[-] boltctl
[edit]
[-] du
[edit]
[-] nano
[edit]
[-] piconv
[edit]
[-] mk_modmap
[edit]
[-] linux-check-removal
[edit]
[-] regexp-assemble
[edit]
[-] addr2line
[edit]
[-] killall
[edit]
[-] gpg-agent
[edit]
[-] systemd-analyze
[edit]
[-] egrep
[edit]
[-] ulockmgr_server
[edit]
[-] bunzip2
[edit]
[-] x86_64-linux-gnu-nm
[edit]
[-] ptar
[edit]
[-] ps2pdf13
[edit]
[-] debian-distro-info
[edit]
[-] nl
[edit]
[-] unmkinitramfs
[edit]
[-] sg_read
[edit]
[-] zegrep
[edit]
[-] pngtogd2
[edit]
[-] openssl
[edit]
[-] gdtopng
[edit]
[-] named-rrchecker
[edit]
[-] sha384sum
[edit]
[-] sg_readcap
[edit]
[-] netcat
[edit]
[-] aclocal
[edit]
[-] debconf-getlang
[edit]
[-] pico
[edit]
[-] x86_64-linux-gnu-as
[edit]
[-] perlthanks
[edit]
[-] gtk-encode-symbolic-svg
[edit]
[-] byobu-silent
[edit]
[-] x86_64-linux-gnu-gcov-dump-9
[edit]
[-] bsd-write
[edit]
[-] sg_sat_read_gplog
[edit]
[-] troff
[edit]
[-] ps2pdfwr
[edit]
[-] peekfd
[edit]
[-] lslocks
[edit]
[-] compose
[edit]
[-] gpgparsemail
[edit]
[-] nc.openbsd
[edit]
[-] tapestat
[edit]
[-] look
[edit]
[-] bzmore
[edit]
[-] ed
[edit]
[-] col2
[edit]
[-] pngfix
[edit]
[-] editor
[edit]
[-] ssh-keygen
[edit]
[-] byobu-select-backend
[edit]
[-] vmware-hgfsclient
[edit]
[-] x86_64-linux-gnu-gcc-ranlib
[edit]
[-] id
[edit]
[-] sleep
[edit]
[-] see
[edit]
[-] check-enhancements
[edit]
[-] unshare
[edit]
[-] resizecons
[edit]
[-] rescan-scsi-bus.sh
[edit]
[-] ss
[edit]
[-] grub-mount
[edit]
[-] x86_64-linux-gnu-readelf
[edit]
[-] gd2copypal
[edit]
[-] print
[edit]
[-] ea-php83-pear
[edit]
[-] x86_64-linux-gnu-gcov-9
[edit]
[-] zone2json
[edit]
[-] sensible-pager
[edit]
[-] lorder
[edit]
[-] gdbm_load
[edit]
[-] py3versions
[edit]
[-] config_data
[edit]
[-] envsubst
[edit]
[-] gpgv
[edit]
[-] cftp3
[edit]
[-] byobu-launch
[edit]
[-] ab
[edit]
[-] tidy_changelog
[edit]
[-] sdiff
[edit]
[-] x86_64-linux-gnu-strings
[edit]
[-] run-parts
[edit]
[-] preconv
[edit]
[-] runcon
[edit]
[-] sg_ses_microcode
[edit]
[-] sg_raw
[edit]
[-] w
[edit]
[-] hostname
[edit]
[-] cpapi2
[edit]
[-] join
[edit]
[-] xzdiff
[edit]
[-] sg_senddiag
[edit]
[-] quota
[edit]
[-] routel
[edit]
[-] dhomepage
[edit]
[-] xauth
[edit]
[-] mysqlcheck
[edit]
[-] ssh-keyscan
[edit]
[-] mtr-packet
[edit]
[-] watchgnupg
[edit]
[-] unicode_stop
[edit]
[-] dfgrep
[edit]
[-] pkaction
[edit]
[-] ln
[edit]
[-] apt-extracttemplates
[edit]
[-] vmware-rpctool
[edit]
[-] gdbm_load-nolfs
[edit]
[-] git-upload-archive
[edit]
[-] x86_64-linux-gnu-gcov-dump
[edit]
[-] gcov-tool
[edit]
[-] md5sum.textutils
[edit]
[-] grep-dctrl
[edit]
[-] lspgpot
[edit]
[-] composite
[edit]
[-] unlz4
[edit]
[-] grub-kbdcomp
[edit]
[-] gd2topng
[edit]
[-] dnssec-verify
[edit]
[-] true
[edit]
[-] byobu-status-detail
[edit]
[-] pod2usage
[edit]
[-] cert-sync
[edit]
[-] gendict
[edit]
[-] vmware-xferlogs
[edit]
[-] lsmod
[edit]
[-] screen
[edit]
[-] xsubpp
[edit]
[-] mysqld_multi
[edit]
[-] printerbanner
[edit]
[-] ipcs
[edit]
[-] ubuntu-distro-info
[edit]
[-] bzip2recover
[edit]
[-] make
[edit]
[-] mpstat
[edit]
[-] catman
[edit]
[-] comm
[edit]
[-] uncompress
[edit]
[-] www-browser
[edit]
[-] lzcat
[edit]
[-] tset
[edit]
[-] sg_verify
[edit]
[-] ping4
[edit]
[-] luac50
[edit]
[-] dpkg-query
[edit]
[-] which
[edit]
[-] pkill
[edit]
[-] precat
[edit]
[-] [
[edit]
[-] x86_64-linux-gnu-gcov-tool-9
[edit]
[-] git-shell
[edit]
[-] grep
[edit]
[-] ltrace
[edit]
[-] ginstall-info
[edit]
[-] psfstriptable
[edit]
[-] fwupdagent
[edit]
[-] col3
[edit]
[-] printenv
[edit]
[-] deallocvt
[edit]
[-] mailmail3
[edit]
[-] rpmverify
[edit]
[-] libtoolize
[edit]
[-] systemd-resolve
[edit]
[-] sg_reassign
[edit]
[-] ul
[edit]
[-] sudoedit
[edit]
[-] mkdir
[edit]
[-] keyring
[edit]
[-] eu-stack
[edit]
[-] wifi-status
[edit]
[-] pcre-config
[edit]
[-] zipnote
[edit]
[-] debconf-mergetemplate
[edit]
[-] zcat
[edit]
[-] x86_64-linux-gnu-python3.8-config
[edit]
[-] pstree.x11
[edit]
[-] mdig
[edit]
[-] perl5.30.0
[edit]
[-] grub-render-label
[edit]