18c2ecf20Sopenharmony_ci// SPDX-License-Identifier: LGPL-2.1 28c2ecf20Sopenharmony_ci// Copyright (C) 2018, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com> 38c2ecf20Sopenharmony_ci 48c2ecf20Sopenharmony_ci#include "trace/beauty/beauty.h" 58c2ecf20Sopenharmony_ci 68c2ecf20Sopenharmony_cistatic size_t renameat2__scnprintf_flags(unsigned long flags, char *bf, size_t size, bool show_prefix) 78c2ecf20Sopenharmony_ci{ 88c2ecf20Sopenharmony_ci#include "trace/beauty/generated/rename_flags_array.c" 98c2ecf20Sopenharmony_ci static DEFINE_STRARRAY(rename_flags, "RENAME_"); 108c2ecf20Sopenharmony_ci 118c2ecf20Sopenharmony_ci return strarray__scnprintf_flags(&strarray__rename_flags, bf, size, show_prefix, flags); 128c2ecf20Sopenharmony_ci} 138c2ecf20Sopenharmony_ci 148c2ecf20Sopenharmony_cisize_t syscall_arg__scnprintf_renameat2_flags(char *bf, size_t size, struct syscall_arg *arg) 158c2ecf20Sopenharmony_ci{ 168c2ecf20Sopenharmony_ci unsigned long flags = arg->val; 178c2ecf20Sopenharmony_ci return renameat2__scnprintf_flags(flags, bf, size, arg->show_string_prefix); 188c2ecf20Sopenharmony_ci} 19