PATH:
usr
/
bin
#!/usr/bin/env /usr/bin/python # 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.56.1 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'], }, 'PARAM': { 'signal': 'PARAM', 'ctype': 'gpointer', 'getter': 'g_marshal_value_peek_param', 'box': ['g_param_spec_ref', 'g_param_spec_unref'], }, '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', '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 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)
[+]
..
[-] pyzor-migrate
[edit]
[-] fgconsole
[edit]
[-] nl
[edit]
[-] pwd
[edit]
[-] libnetcfg
[edit]
[-] infokey
[edit]
[-] true
[edit]
[-] ps2ps
[edit]
[-] traceroute
[edit]
[-] atq
[edit]
[-] truncate
[edit]
[-] h2xs
[edit]
[-] pyzor
[edit]
[-] git-receive-pack
[edit]
[-] grub2-mkpasswd-pbkdf2
[edit]
[-] renice
[edit]
[-] js
[edit]
[-] xxd
[edit]
[-] dd
[edit]
[-] ea-php56-pear
[edit]
[-] nl-qdisc-add
[edit]
[-] splain
[edit]
[-] enchant
[edit]
[-] zlib_decompress
[edit]
[-] openal-info
[edit]
[-] fold
[edit]
[-] sftp
[edit]
[-] setterm
[edit]
[-] lchsh
[edit]
[-] tcumttest
[edit]
[-] nl-tctree-list
[edit]
[-] db_archive
[edit]
[-] awk
[edit]
[-] mkinitrd
[edit]
[-] gpgv2
[edit]
[-] nl-link-list
[edit]
[-] pathchk
[edit]
[-] ps2epsi
[edit]
[-] loginctl
[edit]
[-] netstat
[edit]
[-] psfstriptable
[edit]
[-] glib-genmarshal
[edit]
[-] db_checkpoint
[edit]
[-] ea-php74-pear
[edit]
[-] slabinfo
[edit]
[-] htpasswd
[edit]
[-] bunzip2
[edit]
[-] systemd-cat
[edit]
[-] systemd-sysv-convert
[edit]
[-] lsscsi
[edit]
[-] column
[edit]
[-] clear
[edit]
[-] instmodsh
[edit]
[-] mcdiff
[edit]
[-] dir
[edit]
[-] seq
[edit]
[-] systemd-ask-password
[edit]
[-] xsetpointer
[edit]
[-] c++filt
[edit]
[-] jetcli
[edit]
[-] node
[edit]
[-] memcached-tool
[edit]
[-] strings
[edit]
[-] chcon
[edit]
[-] dovecot-sysreport
[edit]
[-] xmodmap
[edit]
[-] krb5-config
[edit]
[-] sg_readcap
[edit]
[-] psfgettable
[edit]
[-] tty
[edit]
[-] zip
[edit]
[-] jetapi
[edit]
[-] unix-lpr.sh
[edit]
[-] tchmttest
[edit]
[-] strip
[edit]
[-] aserver
[edit]
[-] localedef
[edit]
[-] look
[edit]
[-] dracut
[edit]
[-] systemd-notify
[edit]
[-] dbus-uuidgen
[edit]
[-] mysql_tzinfo_to_sql
[edit]
[-] genl-ctrl-list
[edit]
[-] ipcs
[edit]
[-] db47_codegen
[edit]
[-] xsetroot
[edit]
[-] urlgrabber
[edit]
[-] newuidmap
[edit]
[-] xml2-config
[edit]
[-] basename
[edit]
[-] pod2man
[edit]
[-] nl-link-enslave
[edit]
[-] lz4_decompress
[edit]
[-] bdftruncate
[edit]
[-] newgrp
[edit]
[-] systemd-analyze
[edit]
[-] libpng-config
[edit]
[-] diff3
[edit]
[-] sg_inq
[edit]
[-] sprof
[edit]
[-] gml2gv
[edit]
[-] hexdump
[edit]
[-] switch_mod_lsapi
[edit]
[-] piconv
[edit]
[-] lesspipe.sh
[edit]
[-] taskset
[edit]
[-] machinectl
[edit]
[-] wmf2eps
[edit]
[-] su
[edit]
[-] view
[edit]
[-] whois
[edit]
[-] bdftogd
[edit]
[-] locale
[edit]
[-] npx
[edit]
[-] sandbox
[edit]
[-] cdda-player
[edit]
[-] ipcrm
[edit]
[-] preunzip
[edit]
[-] pwscore
[edit]
[-] ident
[edit]
[-] dpkg-divert
[edit]
[-] setmetamode
[edit]
[-] mailx
[edit]
[-] grub2-mkfont
[edit]
[-] myisampack
[edit]
[-] cpanp
[edit]
[-] repotrack
[edit]
[-] MagickCore-config
[edit]
[-] gd2copypal
[edit]
[-] printenv
[edit]
[-] cifsiostat
[edit]
[-] gtar
[edit]
[-] perlbug
[edit]
[-] glib-mkenums
[edit]
[-] bashbug-64
[edit]
[-] sg_read_long
[edit]
[-] mkfontdir
[edit]
[-] dumpkeys
[edit]
[-] ea-php72
[edit]
[-] ea-php70-pear
[edit]
[-] ispell
[edit]
[-] mysql_install_db
[edit]
[-] dotty
[edit]
[-] date
[edit]
[-] rvi
[edit]
[-] tracepath
[edit]
[-] infotocap
[edit]
[-] gs
[edit]
[-] pstruct
[edit]
[-] autotrace
[edit]
[-] co
[edit]
[-] MagickWand-config
[edit]
[-] gpgsplit
[edit]
[-] cpapi1
[edit]
[-] db_replicate
[edit]
[-] aulast
[edit]
[-] rm
[edit]
[-] xzfgrep
[edit]
[-] ps2pdf
[edit]
[-] bc
[edit]
[-] msgcat
[edit]
[-] odbc_config
[edit]
[-] sha256sum
[edit]
[-] db47_deadlock
[edit]
[-] autopoint
[edit]
[-] gsettings
[edit]
[-] zforce
[edit]
[-] vimdot
[edit]
[-] word-list-compress
[edit]
[-] chmem
[edit]
[-] mysqldumpslow
[edit]
[-] tcptraceroute
[edit]
[-] orc-bugreport
[edit]
[-] sg_reset
[edit]
[-] centrino-decode
[edit]
[-] dbus-monitor
[edit]
[-] wmf2svg
[edit]
[-] gcov
[edit]
[-] pldd
[edit]
[-] ndiff
[edit]
[-] watch
[edit]
[-] sg_unmap
[edit]
[-] nl-cls-list
[edit]
[-] setleds
[edit]
[-] mixartloader
[edit]
[-] replace
[edit]
[-] mysqlbinlog
[edit]
[-] cxpm
[edit]
[-] git-upload-pack
[edit]
[-] python2
[edit]
[-] giftogd2
[edit]
[-] ea-php56-pecl
[edit]
[-] auvirt
[edit]
[-] rpmkeys
[edit]
[-] stat
[edit]
[-] bzcmp
[edit]
[-] hb-ot-shape-closure
[edit]
[-] cpupower
[edit]
[-] h2ph
[edit]
[-] kill
[edit]
[-] prezip-bin
[edit]
[-] gdbus-codegen
[edit]
[-] nl-link-ifindex2name
[edit]
[-] sg_dd
[edit]
[-] nl-addr-delete
[edit]
[-] git
[edit]
[-] audit2why
[edit]
[-] hostnamectl
[edit]
[-] c2ph
[edit]
[-] vxloader
[edit]
[-] bzcat
[edit]
[-] msgconv
[edit]
[-] make
[edit]
[-] db47_archive
[edit]
[-] colrm
[edit]
[-] zless
[edit]
[-] glib-gettextize
[edit]
[-] ea-php56
[edit]
[-] sleep
[edit]
[-] xkill
[edit]
[-] zipcloak
[edit]
[-] jetapps
[edit]
[-] repoquery
[edit]
[-] imunify360-agent
[edit]
[-] pfbtopfa
[edit]
[-] nsupdate
[edit]
[-] ssh-copy-id
[edit]
[-] dbus-daemon
[edit]
[-] nl-list-caches
[edit]
[-] ea-php71-pear
[edit]
[-] xinput
[edit]
[-] secon
[edit]
[-] dbus-send
[edit]
[-] php
[edit]
[-] sg_write_buffer
[edit]
[-] pngtogd2
[edit]
[-] gcc-ranlib
[edit]
[-] tac
[edit]
[-] pk12util
[edit]
[-] myisam_ftdump
[edit]
[-] sed
[edit]
[-] chacl
[edit]
[-] fg
[edit]
[-] inotifywait
[edit]
[-] ccomps
[edit]
[-] gv2gml
[edit]
[-] yarn
[edit]
[-] tchtest
[edit]
[-] cairo-sphinx
[edit]
[-] mount
[edit]
[-] sg_raw
[edit]
[-] db_dump
[edit]
[-] HEAD
[edit]
[-] tcamgr
[edit]
[-] rlog
[edit]
[-] gsf-office-thumbnailer
[edit]
[-] echo
[edit]
[-] gpg-error-config
[edit]
[-] fipshmac
[edit]
[-] troff
[edit]
[-] ea-php74
[edit]
[-] tcatest
[edit]
[-] pango-list
[edit]
[-] myisamchk
[edit]
[-] grub2-editenv
[edit]
[-] lslogins
[edit]
[-] scsi_logging_level
[edit]
[-] atop
[edit]
[-] rview
[edit]
[-] xzcmp
[edit]
[-] sg_verify
[edit]
[-] gpg-agent
[edit]
[-] find2perl
[edit]
[-] cpio
[edit]
[-] whatis
[edit]
[-] bg
[edit]
[-] gpgv
[edit]
[-] dot2gxl
[edit]
[-] ipcmk
[edit]
[-] ifnames
[edit]
[-] podchecker
[edit]
[-] pod2html
[edit]
[-] nm-online
[edit]
[-] chmod
[edit]
[-] colcrt
[edit]
[-] yum-debug-dump
[edit]
[-] getopts
[edit]
[-] tcamttest
[edit]
[-] git-upload-archive
[edit]
[-] vlock
[edit]
[-] gvgen
[edit]
[-] db_tuner
[edit]
[-] envsubst
[edit]
[-] bison
[edit]
[-] unxz
[edit]
[-] openssl
[edit]
[-] mkfifo
[edit]
[-] sh
[edit]
[-] linux64
[edit]
[-] pkcs1-conv
[edit]
[-] tset
[edit]
[-] pygettext.py
[edit]
[-] ping6
[edit]
[-] gettext
[edit]
[-] cal
[edit]
[-] systemd-hwdb
[edit]
[-] mkfontscale
[edit]
[-] zegrep
[edit]
[-] net-snmp-create-v3-user
[edit]
[-] nano
[edit]
[-] gcc
[edit]
[-] lastb
[edit]
[-] xzdiff
[edit]
[-] lscpu
[edit]
[-] unzip
[edit]
[-] bzip2recover
[edit]
[-] nohup
[edit]
[-] yum-debug-restore
[edit]
[-] ea-php73-pecl
[edit]
[-] dbus-binding-tool
[edit]
[-] ssh
[edit]
[-] yum-config-manager
[edit]
[-] showkey
[edit]
[-] gneqn
[edit]
[-] sccmap
[edit]
[-] jobs
[edit]
[-] sg_rbuf
[edit]
[-] odbcinst
[edit]
[-] xzcat
[edit]
[-] h5perf_serial
[edit]
[-] dig
[edit]
[-] dwp
[edit]
[-] cd
[edit]
[-] rpmverify
[edit]
[-] scsi_readcap
[edit]
[-] post-grohtml
[edit]
[-] sg_turs
[edit]
[-] sg_emc_trespass
[edit]
[-] ranlib
[edit]
[-] funzip
[edit]
[-] memcached
[edit]
[-] teamdctl
[edit]
[-] xzgrep
[edit]
[-] cp
[edit]
[-] gzexe
[edit]
[-] compare
[edit]
[-] gdk-pixbuf-csource
[edit]
[-] msggrep
[edit]
[-] findmnt
[edit]
[-] ex
[edit]
[-] sendiso
[edit]
[-] last
[edit]
[-] xstdcmap
[edit]
[-] sort
[edit]
[-] alias
[edit]
[-] nl-fib-lookup
[edit]
[-] namei
[edit]
[-] unshare
[edit]
[-] usleep
[edit]
[-] gvmap
[edit]
[-] ld.gold
[edit]
[-] sasl2-sample-server
[edit]
[-] nmtui
[edit]
[-] grub2-kbdcomp
[edit]
[-] nail
[edit]
[-] dmesg
[edit]
[-] checkmodule
[edit]
[-] chrt
[edit]
[-] rpm2cpio
[edit]
[-] strace-log-merge
[edit]
[-] gxl2dot
[edit]
[-] trust
[edit]
[-] h5debug
[edit]
[-] mcookie
[edit]
[-] ul
[edit]
[-] gdtopng
[edit]
[-] tcucodec
[edit]
[-] db47_upgrade
[edit]
[-] easy_install
[edit]
[-] psfxtable
[edit]
[-] libtool
[edit]
[-] sum
[edit]
[-] cat
[edit]
[-] powernow-k8-decode
[edit]
[-] turbostat
[edit]
[-] pip-3
[edit]
[-] gdlib-config
[edit]
[-] run-parts
[edit]
[-] setfacl
[edit]
[-] bzmore
[edit]
[-] nslookup
[edit]
[-] gvpr
[edit]
[-] gobject-query
[edit]
[-] elfedit
[edit]
[-] sg_stpg
[edit]
[-] gprof
[edit]
[-] Mail
[edit]
[-] grub2-mkimage
[edit]
[-] od
[edit]
[-] sudoreplay
[edit]
[-] nl-link-release
[edit]
[-] mknod
[edit]
[-] pwdx
[edit]
[-] pngtogd
[edit]
[-] pr
[edit]
[-] unlink
[edit]
[-] whereis
[edit]
[-] more
[edit]
[-] imunify-service
[edit]
[-] gslp
[edit]
[-] sg_get_lba_status
[edit]
[-] db47_dump
[edit]
[-] peekfd
[edit]
[-] doveconf
[edit]
[-] nmcli
[edit]
[-] getconf
[edit]
[-] lastlog
[edit]
[-] zcmp
[edit]
[-] head
[edit]
[-] mandb
[edit]
[-] my_print_defaults
[edit]
[-] sfdp
[edit]
[-] users
[edit]
[-] msghack
[edit]
[-] xzegrep
[edit]
[-] imapsync
[edit]
[-] msgcomm
[edit]
[-] grub2-render-label
[edit]
[-] fc-cache
[edit]
[-] pynche
[edit]
[-] nl-neigh-add
[edit]
[-] gtbl
[edit]
[-] mkdir
[edit]
[-] dbilogstrip
[edit]
[-] tsort
[edit]
[-] db47_printlog
[edit]
[-] fc-pattern
[edit]
[-] ssh-add
[edit]
[-] icu-config
[edit]
[-] fallocate
[edit]
[-] false
[edit]
[-] xzdec
[edit]
[-] gd2togif
[edit]
[-] tmux
[edit]
[-] hunspell
[edit]
[-] make-dummy-cert
[edit]
[-] h5jam
[edit]
[-] sexp-conv
[edit]
[-] bzdiff
[edit]
[-] loadunimap
[edit]
[-] perl5.16.3
[edit]
[-] nf-ct-list
[edit]
[-] bashbug
[edit]
[-] mail
[edit]
[-] dbiproxy
[edit]
[-] nl-class-delete
[edit]
[-] ypdomainname
[edit]
[-] fc-conflist
[edit]
[-] nf-queue
[edit]
[-] pure-pwconvert
[edit]
[-] wmf2fig
[edit]
[-] gapplication
[edit]
[-] cpanp-run-perl
[edit]
[-] diff
[edit]
[-] cc
[edit]
[-] zfgrep
[edit]
[-] sg_copy_results
[edit]
[-] gr2fonttest
[edit]
[-] checkpolicy
[edit]
[-] db_hotbackup
[edit]
[-] batch
[edit]
[-] ps2pdf14
[edit]
[-] touch
[edit]
[-] tcfmttest
[edit]
[-] mysqladmin
[edit]
[-] setfont
[edit]
[-] pydoc3
[edit]
[-] mysql_plugin
[edit]
[-] wall
[edit]
[-] fc-list
[edit]
[-] db47_recover
[edit]
[-] md5sum
[edit]
[-] pstree.x11
[edit]
[-] systemd-delta
[edit]
[-] dbus-cleanup-sockets
[edit]
[-] soelim
[edit]
[-] nl-util-addr
[edit]
[-] hdsploader
[edit]
[-] montage
[edit]
[-] sg_vpd
[edit]
[-] catman
[edit]
[-] unflatten
[edit]
[-] tail
[edit]
[-] nl-class-add
[edit]
[-] tcbmttest
[edit]
[-] which
[edit]
[-] msgunfmt
[edit]
[-] ps2pdfwr
[edit]
[-] libgcrypt-config
[edit]
[-] pkaction
[edit]
[-] sg_map
[edit]
[-] comm
[edit]
[-] g++
[edit]
[-] autoupdate
[edit]
[-] tput
[edit]
[-] sim_client
[edit]
[-] firewall-cmd
[edit]
[-] mktemp
[edit]
[-] sha224sum
[edit]
[-] sgm_dd
[edit]
[-] libwmf-fontmap
[edit]
[-] tload
[edit]
[-] mv
[edit]
[-] msgen
[edit]
[-] pkla-check-authorization
[edit]
[-] elinks
[edit]
[-] lwp-request
[edit]
[-] qt-faststart
[edit]
[-] autotrace-config
[edit]
[-] mapscrn
[edit]
[-] crontab
[edit]
[-] sg_requests
[edit]
[-] sg_write_long
[edit]
[-] vimdiff
[edit]
[-] nproc
[edit]
[-] scl_source
[edit]
[-] audit2allow
[edit]
[-] xzmore
[edit]
[-] mm2gv
[edit]
[-] libpng15-config
[edit]
[-] lwp-download
[edit]
[-] pgawk
[edit]
[-] nroff
[edit]
[-] lsattr
[edit]
[-] ffprobe
[edit]
[-] gawk
[edit]
[-] xz
[edit]
[-] nsenter
[edit]
[-] sg_test_rwbuf
[edit]
[-] atopsar
[edit]
[-] ssh-keyscan
[edit]
[-] systemd-path
[edit]
[-] atrm
[edit]
[-] tclsh8.5
[edit]
[-] readelf
[edit]
[-] gsdj
[edit]
[-] tabs
[edit]
[-] mysqldump
[edit]
[-] fc-cache-64
[edit]
[-] snmpconf
[edit]
[-] pcre-config
[edit]
[-] pip-3.6
[edit]
[-] wait
[edit]
[-] timeout
[edit]
[-] lessecho
[edit]
[-] dvipdf
[edit]
[-] nl-link-stats
[edit]
[-] httxt2dbm
[edit]
[-] json_xs
[edit]
[-] gsbj
[edit]
[-] base64
[edit]
[-] ci
[edit]
[-] cd-read
[edit]
[-] cvtsudoers
[edit]
[-] ldd
[edit]
[-] paperconf
[edit]
[-] unshar
[edit]
[-] perlml
[edit]
[-] cl-linksafe-reconfigure
[edit]
[-] pinky
[edit]
[-] idle
[edit]
[-] firewall-offline-cmd
[edit]
[-] cd-paranoia
[edit]
[-] snice
[edit]
[-] flex
[edit]
[-] h5import
[edit]
[-] fc-query
[edit]
[-] autoconf
[edit]
[-] logresolve
[edit]
[-] alt-mysql-reconfigure
[edit]
[-] nl-neigh-delete
[edit]
[-] pf2afm
[edit]
[-] imunify-antivirus
[edit]
[-] ea-wappspector
[edit]
[-] gpg2
[edit]
[-] wmf2gd
[edit]
[-] setpriv
[edit]
[-] dijkstra
[edit]
[-] xsubpp
[edit]
[-] tred
[edit]
[-] ngettext
[edit]
[-] mysqlimport
[edit]
[-] uapi
[edit]
[-] mysql
[edit]
[-] nl-addr-add
[edit]
[-] groups
[edit]
[-] grub2-script-check
[edit]
[-] grub2-fstest
[edit]
[-] xrdb
[edit]
[-] gpg
[edit]
[-] scsi_temperature
[edit]
[-] iconv
[edit]
[-] domainname
[edit]
[-] corelist
[edit]
[-] numfmt
[edit]
[-] aspell
[edit]
[-] lslocks
[edit]
[-] setkeycodes
[edit]
[-] sg_reassign
[edit]
[-] cd-info
[edit]
[-] pinentry
[edit]
[-] systemd-inhibit
[edit]
[-] autom4te
[edit]
[-] jetmongo
[edit]
[-] nfsiostat-sysstat
[edit]
[-] patch
[edit]
[-] systemd-loginctl
[edit]
[-] imunify-agent-proxy
[edit]
[-] whoami
[edit]
[-] msgcmp
[edit]
[-] pkttyagent
[edit]
[-] m4
[edit]
[-] csslint-0.6
[edit]
[-] raw
[edit]
[-] cpp
[edit]
[-] grub2-mknetdir
[edit]
[-] sudoedit
[edit]
[-] link
[edit]
[-] cpan-mirrors
[edit]
[-] repo-graph
[edit]
[-] perlivp
[edit]
[-] pdf2ps
[edit]
[-] chattr
[edit]
[-] repoclosure
[edit]
[-] GET
[edit]
[-] dtrace
[edit]
[-] cksum
[edit]
[-] gcc-ar
[edit]
[-] gettextize
[edit]
[-] scl_enabled
[edit]
[-] quota
[edit]
[-] shred
[edit]
[-] sg_ident
[edit]
[-] import
[edit]
[-] lynx
[edit]
[-] wish8.5
[edit]
[-] reposync
[edit]
[-] expr
[edit]
[-] prtstat
[edit]
[-] ptaskset
[edit]
[-] at
[edit]
[-] resolve_stack_dump
[edit]
[-] nmtui-hostname
[edit]
[-] tbl
[edit]
[-] gdk-pixbuf-pixdata
[edit]
[-] mysqlcheck
[edit]
[-] ca-legacy
[edit]
[-] mysql_ssl_rsa_setup
[edit]
[-] alt-php-mysql-reconfigure.py
[edit]
[-] luac
[edit]
[-] autoscan
[edit]
[-] systemd-firstboot
[edit]
[-] nl-neigh-list
[edit]
[-] zipdetails
[edit]
[-] update-mime-database
[edit]
[-] scriptreplay
[edit]
[-] xsetmode
[edit]
[-] sudo
[edit]
[-] pphs
[edit]
[-] unzipsfx
[edit]
[-] x86_energy_perf_policy
[edit]
[-] fdp
[edit]
[-] whois.md
[edit]
[-] pod2text
[edit]
[-] glib-compile-schemas
[edit]
[-] chsh
[edit]
[-] tcbtest
[edit]
[-] h5repack
[edit]
[-] xgettext
[edit]
[-] chage
[edit]
[-] pmap
[edit]
[-] socat
[edit]
[-] sg_xcopy
[edit]
[-] teamd
[edit]
[-] pod2latex
[edit]
[-] c99
[edit]
[-] bind9-config
[edit]
[-] bzip2
[edit]
[-] zipnote
[edit]
[-] paste
[edit]
[-] ausyscall
[edit]
[-] signver
[edit]
[-] sg_get_config
[edit]
[-] podselect
[edit]
[-] ping
[edit]
[-] arpaname
[edit]
[-] getkeycodes
[edit]
[-] bond2team
[edit]
[-] x86_64
[edit]
[-] tapestat
[edit]
[-] wmf2x
[edit]
[-] xslt-config
[edit]
[-] composite
[edit]
[-] ptar
[edit]
[-] xgamma
[edit]
[-] display
[edit]
[-] pkg-config
[edit]
[-] join
[edit]
[-] sg_read_buffer
[edit]
[-] host
[edit]
[-] vi
[edit]
[-] x86_64-redhat-linux-g++
[edit]
[-] isql
[edit]
[-] neato
[edit]
[-] htop
[edit]
[-] pyvenv-3.6
[edit]
[-] db_verify
[edit]
[-] delv
[edit]
[-] ls
[edit]
[-] agentxtrap
[edit]
[-] uptime
[edit]
[-] c++
[edit]
[-] circo
[edit]
[-] gslj
[edit]
[-] readlink
[edit]
[-] filan
[edit]
[-] gc
[edit]
[-] rpcgen
[edit]
[-] h5ls
[edit]
[-] as
[edit]
[-] zipcmp
[edit]
[-] nf-exp-list
[edit]
[-] pidstat
[edit]
[-] twopi
[edit]
[-] linux-boot-prober
[edit]
[-] yes
[edit]
[-] igawk
[edit]
[-] vmstat
[edit]
[-] json_reformat
[edit]
[-] pydoc3.6
[edit]
[-] run-with-aspell
[edit]
[-] i386
[edit]
[-] makedb
[edit]
[-] setarch
[edit]
[-] prlimit
[edit]
[-] unexpand
[edit]
[-] s2p
[edit]
[-] mysql_config
[edit]
[-] dirname
[edit]
[-] objdump
[edit]
[-] gtester
[edit]
[-] atopconvert
[edit]
[-] tcttest
[edit]
[-] db_recover
[edit]
[-] sg_sync
[edit]
[-] pango-querymodules-64
[edit]
[-] dpkg-trigger
[edit]
[-] aulastlog
[edit]
[-] sha512sum
[edit]
[-] uname
[edit]
[-] kdumpctl
[edit]
[-] loadkeys
[edit]
[-] chfn
[edit]
[-] nping
[edit]
[-] ab
[edit]
[-] neqn
[edit]
[-] h5copy
[edit]
[-] sync
[edit]
[-] matdump
[edit]
[-] dgawk
[edit]
[-] killall
[edit]
[-] imunify360-command-wrapper
[edit]
[-] gtk-demo
[edit]
[-] nmtui-edit
[edit]
[-] sg_luns
[edit]
[-] page_owner_sort
[edit]
[-] manpath
[edit]
[-] cpapi2
[edit]
[-] mysql_upgrade
[edit]
[-] nl-pktloc-lookup
[edit]
[-] links
[edit]
[-] pinentry-curses
[edit]
[-] dnsdomainname
[edit]
[-] plesk_configure
[edit]
[-] sg_start
[edit]
[-] dpkg-deb
[edit]
[-] sg_map26
[edit]
[-] xrefresh
[edit]
[-] alt-php-mysql-reconfigure
[edit]
[-] pyzord
[edit]
[-] innochecksum
[edit]
[-] h5dump
[edit]
[-] glib-compile-resources
[edit]
[-] ea-php70-pecl
[edit]
[-] mesg
[edit]
[-] ziptorrent
[edit]
[-] lsns
[edit]
[-] sg_rmsn
[edit]
[-] setup-nsssysinit.sh
[edit]
[-] pdns_control
[edit]
[-] gunzip
[edit]
[-] verifytree
[edit]
[-] xmlcatalog
[edit]
[-] testgdbm
[edit]
[-] mmc-tool
[edit]
[-] grub2-mklayout
[edit]
[-] mysql_config_editor
[edit]
[-] hb-shape
[edit]
[-] db_load
[edit]
[-] pydoc
[edit]
[-] mysql_config-64
[edit]
[-] gpic
[edit]
[-] shuf
[edit]
[-] pip3
[edit]
[-] nl-qdisc-delete
[edit]
[-] gtester-report
[edit]
[-] ea-php73-pear
[edit]
[-] precat
[edit]
[-] nl-cls-add
[edit]
[-] ghostscript
[edit]
[-] printf
[edit]
[-] nf-monitor
[edit]
[-] atopd
[edit]
[-] sg_read_block_limits
[edit]
[-] grub2-mkrescue
[edit]
[-] sg_format
[edit]
[-] acyclic
[edit]
[-] pdf2dsc
[edit]
[-] certutil
[edit]
[-] msgexec
[edit]
[-] col
[edit]
[-] sgp_dd
[edit]
[-] objcopy
[edit]
[-] grub2-glue-efi
[edit]
[-] bcomps
[edit]
[-] sg_safte
[edit]
[-] ncurses5-config
[edit]
[-] x86_64-redhat-linux-gcc
[edit]
[-] sg
[edit]
[-] chgrp
[edit]
[-] expand
[edit]
[-] tctmttest
[edit]
[-] nmap
[edit]
[-] sg_sat_phy_event
[edit]
[-] dot
[edit]
[-] toe
[edit]
[-] scsi-rescan
[edit]
[-] iptables-xml
[edit]
[-] realpath
[edit]
[-] ea-php74-pecl
[edit]
[-] nl-list-sockets
[edit]
[-] perror
[edit]
[-] ptx
[edit]
[-] compile_et
[edit]
[-] ps2ascii
[edit]
[-] nc
[edit]
[-] nl-route-get
[edit]
[-] fipscheck
[edit]
[-] bzless
[edit]
[-] who
[edit]
[-] dbiprof
[edit]
[-] scsi_stop
[edit]
[-] nl-link-set
[edit]
[-] showrgb
[edit]
[-] sg_persist
[edit]
[-] db_stat
[edit]
[-] nl-monitor
[edit]
[-] dbus-run-session
[edit]
[-] update-ca-trust
[edit]
[-] eps2eps
[edit]
[-] wget
[edit]
[-] setup-nsssysinit
[edit]
[-] nl-addr-list
[edit]
[-] sg_compare_and_write
[edit]
[-] needs-restarting
[edit]
[-] gdparttopng
[edit]
[-] sessreg
[edit]
[-] scsi_mandat
[edit]
[-] a2p
[edit]
[-] json_verify
[edit]
[-] heif-thumbnailer
[edit]
[-] nss-policy-check
[edit]
[-] prezip
[edit]
[-] enchant-lsmod
[edit]
[-] mogrify
[edit]
[-] gtk-builder-convert
[edit]
[-] diffimg
[edit]
[-] flock
[edit]
[-] libwmf-config
[edit]
[-] zipgrep
[edit]
[-] idiag-socket-details
[edit]
[-] fc-validate
[edit]
[-] vim
[edit]
[-] gvmap.sh
[edit]
[-] unicode_start
[edit]
[-] mcedit
[edit]
[-] unalias
[edit]
[-] pkill
[edit]
[-] nm
[edit]
[-] geoipupdate
[edit]
[-] automake-1.13
[edit]
[-] os-prober
[edit]
[-] nisdomainname
[edit]
[-] nmtui-connect
[edit]
[-] convert
[edit]
[-] sg_rdac
[edit]
[-] uniq
[edit]
[-] yumdownloader
[edit]
[-] mc
[edit]
[-] POST
[edit]
[-] split
[edit]
[-] python2-config
[edit]
[-] grops
[edit]
[-] systemd-escape
[edit]
[-] icuinfo
[edit]
[-] config_data
[edit]
[-] sg_wr_mode
[edit]
[-] wc
[edit]
[-] identify
[edit]
[-] python3.6m
[edit]
[-] plymouth
[edit]
[-] mpstat
[edit]
[-] scsi_start
[edit]
[-] Wand-config
[edit]
[-] open
[edit]
[-] tic
[edit]
[-] sg_write_same
[edit]
[-] npm
[edit]
[-] grub2-syslinux2cfg
[edit]
[-] isc-config.sh
[edit]
[-] ncursesw5-config
[edit]
[-] lneato
[edit]
[-] sg_modes
[edit]
[-] sha1sum
[edit]
[-] dltest
[edit]
[-] unlz4
[edit]
[-] cmp
[edit]
[-] pstree
[edit]
[-] 2to3
[edit]
[-] pure-statsdecode
[edit]
[-] gpg-zip
[edit]
[-] h5stat
[edit]
[-] kernel-install
[edit]
[-] geoiplookup6
[edit]
[-] sg_logs
[edit]
[-] tailf
[edit]
[-] systemd-machine-id-setup
[edit]
[-] chardetect
[edit]
[-] umount
[edit]
[-] rvim
[edit]
[-] iostat
[edit]
[-] yarnpkg
[edit]
[-] geqn
[edit]
[-] python3.6
[edit]
[-] h5mkgrp
[edit]
[-] tcfmgr
[edit]
[-] ps
[edit]
[-] yum
[edit]
[-] uuclient
[edit]
[-] pchrt
[edit]
[-] zdiff
[edit]
[-] easy_install-2.7
[edit]
[-] kbdrate
[edit]
[-] groff
[edit]
[-] sg_sanitize
[edit]
[-] ffserver
[edit]
[-] systemd-tmpfiles
[edit]
[-] gtk-query-immodules-2.0-64
[edit]
[-] gvcolor
[edit]
[-] gpgparsemail
[edit]
[-] sg_referrals
[edit]
[-] gio
[edit]
[-] reset
[edit]
[-] write
[edit]
[-] scl
[edit]
[-] ndptool
[edit]
[-] ucs2any
[edit]
[-] gdk-pixbuf-query-loaders-64
[edit]
[-] ea-php70
[edit]
[-] lz4cat
[edit]
[-] c89
[edit]
[-] mdig
[edit]
[-] openvt
[edit]
[-] wish
[edit]
[-] dpkg-split
[edit]
[-] h5diff
[edit]
[-] sedismod
[edit]
[-] qemu-ga
[edit]
[-] ftp
[edit]
[-] heif-info
[edit]
[-] aec
[edit]
[-] lwp-dump
[edit]
[-] mysqlpump
[edit]
[-] gettext.sh
[edit]
[-] oldfind
[edit]
[-] lsipc
[edit]
[-] gif2h5
[edit]
[-] gdk-pixbuf-thumbnailer
[edit]
[-] nop
[edit]
[-] zipinfo
[edit]
[-] mysql_secure_installation
[edit]
[-] install
[edit]
[-] watchgnupg
[edit]
[-] factor
[edit]
[-] hostid
[edit]
[-] getopt
[edit]
[-] h52gif
[edit]
[-] busctl
[edit]
[-] info
[edit]
[-] libtoolize
[edit]
[-] stdbuf
[edit]
[-] systemd-coredumpctl
[edit]
[-] nf-exp-delete
[edit]
[-] newgidmap
[edit]
[-] strace
[edit]
[-] db_dump185
[edit]
[-] systemctl
[edit]
[-] id
[edit]
[-] sg_ses
[edit]
[-] grub2-menulst2cfg
[edit]
[-] xmllint
[edit]
[-] graphml2gv
[edit]
[-] uuidgen
[edit]
[-] update-gtk-immodules
[edit]
[-] pre-grohtml
[edit]
[-] sg_scan
[edit]
[-] tmpwatch
[edit]
[-] ncat
[edit]
[-] dircolors
[edit]
[-] zipmerge
[edit]
[-] freetype-config
[edit]
[-] gsoelim
[edit]
[-] gio-querymodules-64
[edit]
[-] recode-sr-latin
[edit]
[-] setvtrgb
[edit]
[-] top
[edit]
[-] rpm
[edit]
[-] scp
[edit]
[-] lesskey
[edit]
[-] rdate
[edit]
[-] sxpm
[edit]
[-] keyctl
[edit]
[-] fonttosfnt
[edit]
[-] prune
[edit]
[-] lwp-mirror
[edit]
[-] mcview
[edit]
[-] chvt
[edit]
[-] ptargrep
[edit]
[-] pflags
[edit]
[-] nl-link-name2ifindex
[edit]
[-] sar
[edit]
[-] pod2usage
[edit]
[-] semodule_package
[edit]
[-] cpapi3
[edit]
[-] grub2-file
[edit]
[-] cmsutil
[edit]
[-] git-shell
[edit]
[-] nettle-lfib-stream
[edit]
[-] gpg-error
[edit]
[-] gcc-nm
[edit]
[-] rpmquery
[edit]
[-] linux32
[edit]
[-] systemd-tty-ask-password-agent
[edit]
[-] nl-rule-list
[edit]
[-] scsi_satl
[edit]
[-] pftp
[edit]
[-] hostname
[edit]
[-] doveadm
[edit]
[-] vimtutor
[edit]
[-] sg_decode_sense
[edit]
[-] nf-log
[edit]
[-] ea-php72-pecl
[edit]
[-] python2.7
[edit]
[-] systemd-run
[edit]
[-] grub2-mkrelpath
[edit]
[-] captoinfo
[edit]
[-] deallocvt
[edit]
[-] x265
[edit]
[-] idn
[edit]
[-] skill
[edit]
[-] nl-route-delete
[edit]
[-] gpgconf
[edit]
[-] grep
[edit]
[-] isosize
[edit]
[-] udevadm
[edit]
[-] rcsmerge
[edit]
[-] python-config
[edit]
[-] curl
[edit]
[-] nf-exp-add
[edit]
[-] tee
[edit]
[-] aclocal-1.13
[edit]
[-] yum-builddep
[edit]
[-] timedatectl
[edit]
[-] less
[edit]
[-] cpan
[edit]
[-] dpkg
[edit]
[-] gsdj500
[edit]
[-] fc
[edit]
[-] ld.bfd
[edit]
[-] fribidi
[edit]
[-] rcs
[edit]
[-] infocmp
[edit]
[-] wdctl
[edit]
[-] db47_stat
[edit]
[-] ionice
[edit]
[-] zone2sql
[edit]
[-] systemd-nspawn
[edit]
[-] msgfmt.py
[edit]
[-] mysqlslap
[edit]
[-] db47_checkpoint
[edit]
[-] addr2line
[edit]
[-] gmake
[edit]
[-] htdigest
[edit]
[-] showconsolefont
[edit]
[-] preconv
[edit]
[-] nl-route-list
[edit]
[-] nl-qdisc-list
[edit]
[-] prove
[edit]
[-] df
[edit]
[-] jetbackup
[edit]
[-] journalctl
[edit]
[-] logger
[edit]
[-] pkla-admin-identities
[edit]
[-] rnano
[edit]
[-] perlthanks
[edit]
[-] berkeley_db47_svc
[edit]
[-] ea-php73
[edit]
[-] pwmake
[edit]
[-] slogin
[edit]
[-] gvpack
[edit]
[-] Magick-config
[edit]
[-] rsync
[edit]
[-] rsyslog-recover-qi.pl
[edit]
[-] gdbus
[edit]
[-] csplit
[edit]
[-] pic
[edit]
[-] arch
[edit]
[-] pip
[edit]
[-] msgattrib
[edit]
[-] iso-info
[edit]
[-] bzgrep
[edit]
[-] repo-rss
[edit]
[-] tcbmgr
[edit]
[-] find
[edit]
[-] apropos
[edit]
[-] ea-php71-pecl
[edit]
[-] apxs
[edit]
[-] python3
[edit]
[-] fc-cat
[edit]
[-] perl
[edit]
[-] ptardiff
[edit]
[-] testlibraw
[edit]
[-] h5repart
[edit]
[-] grotty
[edit]
[-] lsmem
[edit]
[-] cluster
[edit]
[-] systemd-cgls
[edit]
[-] msgmerge
[edit]
[-] sginfo
[edit]
[-] file
[edit]
[-] unicode_stop
[edit]
[-] procan
[edit]
[-] dpkg-maintscript-helper
[edit]
[-] sasl2-sample-client
[edit]
[-] kmod
[edit]
[-] heif-convert
[edit]
[-] gtroff
[edit]
[-] [
[edit]
[-] hmac256
[edit]
[-] dwz
[edit]
[-] patchwork
[edit]
[-] h5unjam
[edit]
[-] nl-route-add
[edit]
[-] ps2ps2
[edit]
[-] sg_sat_identify
[edit]
[-] nl-class-list
[edit]
[-] pl2pm
[edit]
[-] msginit
[edit]
[-] sg_opcodes
[edit]
[-] setsid
[edit]
[-] gm
[edit]
[-] telnet
[edit]
[-] mountpoint
[edit]
[-] webpng
[edit]
[-] annotate
[edit]
[-] slabtop
[edit]
[-] lz4
[edit]
[-] utmpdump
[edit]
[-] gencat
[edit]
[-] zipsplit
[edit]
[-] uudecode
[edit]
[-] db47_hotbackup
[edit]
[-] tctmgr
[edit]
[-] rpmdb
[edit]
[-] fgrep
[edit]
[-] nl-classid-lookup
[edit]
[-] ipcalc
[edit]
[-] show-installed
[edit]
[-] sedispol
[edit]
[-] stty
[edit]
[-] pip2
[edit]
[-] repomanage
[edit]
[-] db_upgrade
[edit]
[-] resolveip
[edit]
[-] sg_sat_set_features
[edit]
[-] icu-config-64
[edit]
[-] grub2-mkstandalone
[edit]
[-] systemd-detect-virt
[edit]
[-] debuginfo-install
[edit]
[-] cpan2dist
[edit]
[-] python
[edit]
[-] pango-view
[edit]
[-] crlutil
[edit]
[-] fc-scan
[edit]
[-] w
[edit]
[-] rmdir
[edit]
[-] stream
[edit]
[-] quotasync
[edit]
[-] xhost
[edit]
[-] myisamlog
[edit]
[-] msguniq
[edit]
[-] zone2json
[edit]
[-] whiptail
[edit]
[-] getent
[edit]
[-] dpkg-statoverride
[edit]
[-] db_deadlock
[edit]
[-] scsi_ready
[edit]
[-] sg_rtpg
[edit]
[-] pyvenv
[edit]
[-] bdftopcf
[edit]
[-] ar
[edit]
[-] msgfilter
[edit]
[-] passwd
[edit]
[-] spell
[edit]
[-] sadf
[edit]
[-] bootctl
[edit]
[-] ln
[edit]
[-] cut
[edit]
[-] ea-php71
[edit]
[-] catchsegv
[edit]
[-] gpasswd
[edit]
[-] nl-neightbl-list
[edit]
[-] env
[edit]
[-] named-rrchecker
[edit]
[-] dumpiso
[edit]
[-] getfacl
[edit]
[-] easy_install-3.6
[edit]
[-] smtpd.py
[edit]
[-] egrep
[edit]
[-] perldoc
[edit]
[-] shasum
[edit]
[-] db47_load
[edit]
[-] localectl
[edit]
[-] ssh-agent
[edit]
[-] dsync
[edit]
[-] lexgrog
[edit]
[-] db_printlog
[edit]
[-] uuencode
[edit]
[-] psfaddtable
[edit]
[-] flex++
[edit]
[-] pkcheck
[edit]
[-] automake
[edit]
[-] tzselect
[edit]
[-] traceroute6
[edit]
[-] ps2pdf13
[edit]
[-] lz4c
[edit]
[-] nettle-hash
[edit]
[-] sg_senddiag
[edit]
[-] kbd_mode
[edit]
[-] chown
[edit]
[-] pure-pw
[edit]
[-] ffplay
[edit]
[-] xset
[edit]
[-] iso-read
[edit]
[-] sg_prevent
[edit]
[-] dbus-test-tool
[edit]
[-] screen
[edit]
[-] ssltap
[edit]
[-] package-cleanup
[edit]
[-] tchmgr
[edit]
[-] command
[edit]
[-] bash
[edit]
[-] gtk-update-icon-cache
[edit]
[-] iusql
[edit]
[-] repodiff
[edit]
[-] systemd-stdio-bridge
[edit]
[-] size
[edit]
[-] sqlite3
[edit]
[-] find-repos-of-install
[edit]
[-] msgfmt
[edit]
[-] fmt
[edit]
[-] sg_read
[edit]
[-] x86_64-redhat-linux-c++
[edit]
[-] gd2topng
[edit]
[-] script
[edit]
[-] coredumpctl
[edit]
[-] cd-drive
[edit]
[-] systemd-cgtop
[edit]
[-] aclocal
[edit]
[-] man
[edit]
[-] ssh-keygen
[edit]
[-] python2.7-config
[edit]
[-] jetbackupapi
[edit]
[-] p11-kit
[edit]
[-] gnroff
[edit]
[-] Magick++-config
[edit]
[-] rev
[edit]
[-] rcsdiff
[edit]
[-] tracepath6
[edit]
[-] nice
[edit]
[-] heif-enc
[edit]
[-] lex
[edit]
[-] lsinitrd
[edit]
[-] xrandr
[edit]
[-] tr
[edit]
[-] xsltproc
[edit]
[-] imunify-fgw-dump
[edit]
[-] lprsetup.sh
[edit]
[-] logname
[edit]
[-] db47_verify
[edit]
[-] animate
[edit]
[-] show-changed-rco
[edit]
[-] sdiff
[edit]
[-] gdcmpgif
[edit]
[-] teamnl
[edit]
[-] dumpsexp
[edit]
[-] geoiplookup
[edit]
[-] zcat
[edit]
[-] modutil
[edit]
[-] gresource
[edit]
[-] xorg-x11-fonts-update-dirs
[edit]
[-] test
[edit]
[-] pip2.7
[edit]
[-] lefty
[edit]
[-] free
[edit]
[-] eject
[edit]
[-] ea-php72-pear
[edit]
[-] mysqld_pre_systemd
[edit]
[-] zgrep
[edit]
[-] autoheader
[edit]
[-] zmore
[edit]
[-] du
[edit]
[-] lchfn
[edit]
[-] xzless
[edit]
[-] tclsh
[edit]
[-] nl-cls-delete
[edit]
[-] gss-client
[edit]
[-] lua
[edit]
[-] tcftest
[edit]
[-] read
[edit]
[-] renew-dummy-cert
[edit]
[-] nf-ct-add
[edit]
[-] tar
[edit]
[-] inotifywatch
[edit]
[-] iceauth
[edit]
[-] tcutest
[edit]
[-] osage
[edit]
[-] dbus-update-activation-environment
[edit]
[-] autoreconf
[edit]
[-] openssl11
[edit]
[-] json_pp
[edit]
[-] sw-engine
[edit]
[-] fc-match
[edit]
[-] conjure
[edit]
[-] chcat
[edit]
[-] lsblk
[edit]
[-] resizecons
[edit]
[-] im360-k8s-syncer
[edit]
[-] runcon
[edit]
[-] sotruss
[edit]
[-] shar
[edit]
[-] dpkg-query
[edit]
[-] rcsclean
[edit]
[-] pdnsutil
[edit]
[-] dc
[edit]
[-] vdir
[edit]
[-] merge
[edit]
[-] pip3.6
[edit]
[-] znew
[edit]
[-] rename
[edit]
[-] sha384sum
[edit]
[-] gxl2gv
[edit]
[-] gzip
[edit]
[-] eqn
[edit]
[-] db_log_verify
[edit]
[-] login
[edit]
[-] gv2gxl
[edit]
[-] ffmpeg
[edit]
[-] mysqlshow
[edit]
[-] usx2yloader
[edit]
[-] gpg-connect-agent
[edit]
[-] printafm
[edit]
[-] htdbm
[edit]
[-] hb-view
[edit]
[-] umask
[edit]
[-] rcsfreeze
[edit]
[-] lsphp
[edit]
[-] kbdinfo
[edit]
[-] ps2pdf12
[edit]
[-] pgrep
[edit]
[-] pkexec
[edit]
[-] ld
[edit]
[-] rescan-scsi-bus.sh
[edit]
[-] gsnd
[edit]
[-] zsoelim
[edit]
[-] xmlwf
[edit]
[-] xargs
[edit]
[-] psed
[edit]
[-] yum-groups-manager
[edit]
[-] tmon
[edit]