| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-core/sdbus-c++/sdbus-c++-libsystemd/ |
| H A D | 0010-Use-uintmax_t-for-handling-rlim_t.patch | 62 - r = asprintf(&s, "infinity:" RLIM_FMT, rl->rlim_max); 63 + r = asprintf(&s, "infinity:" RLIM_FMT, (uintmax_t)rl->rlim_max); 65 - r = asprintf(&s, RLIM_FMT ":infinity", rl->rlim_cur); 66 + r = asprintf(&s, RLIM_FMT ":infinity", (uintmax_t)rl->rlim_cur); 68 - r = asprintf(&s, RLIM_FMT, rl->rlim_cur); 69 + r = asprintf(&s, RLIM_FMT, (uintmax_t)rl->rlim_cur); 71 - r = asprintf(&s, RLIM_FMT ":" RLIM_FMT, rl->rlim_cur, rl->rlim_max); 72 + r = asprintf(&s, RLIM_FMT ":" RLIM_FMT, (uintmax_t)rl->rlim_cur, (uintmax_t)rl->rl…
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-core/systemd/systemd/ |
| H A D | 0010-Use-uintmax_t-for-handling-rlim_t.patch | 66 - r = asprintf(&s, "infinity:" RLIM_FMT, rl->rlim_max); 67 + r = asprintf(&s, "infinity:" RLIM_FMT, (uintmax_t)rl->rlim_max); 69 - r = asprintf(&s, RLIM_FMT ":infinity", rl->rlim_cur); 70 + r = asprintf(&s, RLIM_FMT ":infinity", (uintmax_t)rl->rlim_cur); 72 - r = asprintf(&s, RLIM_FMT, rl->rlim_cur); 73 + r = asprintf(&s, RLIM_FMT, (uintmax_t)rl->rlim_cur); 75 - r = asprintf(&s, RLIM_FMT ":" RLIM_FMT, rl->rlim_cur, rl->rlim_max); 76 + r = asprintf(&s, RLIM_FMT ":" RLIM_FMT, (uintmax_t)rl->rlim_cur, (uintmax_t)rl->rl…
|
| /OK3568_Linux_fs/kernel/tools/iio/ |
| H A D | iio_utils.c | 65 ret = asprintf(generic_name, "%s_%s", prefix, working); in iioutils_break_up_name() 98 ret = asprintf(&scan_el_dir, FORMAT_SCAN_ELEMENTS_DIR, device_dir); in iioutils_get_type() 102 ret = asprintf(&builtname, FORMAT_TYPE_FILE, name); in iioutils_get_type() 107 ret = asprintf(&builtname_generic, FORMAT_TYPE_FILE, generic_name); in iioutils_get_type() 123 ret = asprintf(&filename, in iioutils_get_type() 227 ret = asprintf(&builtname, "%s_%s", name, param_name); in iioutils_get_param_float() 231 ret = asprintf(&builtname_generic, in iioutils_get_param_float() 248 ret = asprintf(&filename, in iioutils_get_param_float() 324 ret = asprintf(&scan_el_dir, FORMAT_SCAN_ELEMENTS_DIR, device_dir); in build_channel_array() 337 ret = asprintf(&filename, in build_channel_array() [all …]
|
| H A D | iio_generic_buffer.c | 446 ret = asprintf(&dev_dir_name, "%siio:device%d", iio_dir, dev_num); in main() 467 ret = asprintf(&trig_dev_name, "%strigger%d", iio_dir, trig_num); in main() 486 ret = asprintf(&trigger_name, in main() 499 ret = asprintf(&trigger_name, in main() 579 ret = asprintf(&buf_dir_name, in main() 622 ret = asprintf(&buffer_access, "/dev/iio:device%d", dev_num); in main()
|
| H A D | lsiio.c | 117 if (asprintf(&dev_dir_name, "%s%s", iio_dir, in dump_devices() 139 if (asprintf(&dev_dir_name, "%s%s", iio_dir, in dump_devices()
|
| /OK3568_Linux_fs/app/forlinx/quectelCM/ |
| H A D | atc.c | 36 extern int asprintf(char **s, const char *fmt, ...); 363 asprintf(&cmd, "AT+CGACT=1,%d", pdp); in requestSetupDataCall() 372 asprintf(&cmd, "AT+QNETDEVCTL=1,%d,%d", pdp, 1); in requestSetupDataCall() 374 asprintf(&cmd, "AT+QNETDEVCTL=%d,1,%d", pdp, 0); in requestSetupDataCall() 384 asprintf(&cmd, "AT+QNETDEVSTATUS=%d", pdp); in requestSetupDataCall() 417 asprintf(&cmd, "AT+QNETDEVSTATUS=%d", pdp); in at_netdevstatus() 547 asprintf(&cmd, "AT+QNETDEVCTL=0,%d,%d", pdp, 0); in requestDeactivateDefaultPDP() 549 asprintf(&cmd, "AT+QNETDEVCTL=%d,0,%d", pdp, 0); in requestDeactivateDefaultPDP() 577 asprintf(&cmd, "AT+CGPADDR=%d", profile->pdp); in requestGetIPAddress()
|
| /OK3568_Linux_fs/kernel/tools/perf/ |
| H A D | builtin-help.c | 131 if (asprintf(&man_page, "(woman \"%s\")", page) > 0) { in exec_woman_emacs() 162 if (asprintf(&man_page, "man:%s(1)", page) > 0) { in exec_man_konqueror() 182 if (asprintf(&shell_cmd, "%s %s", cmd, page) > 0) { in exec_man_cmd() 325 return asprintf(&s, "perf-%s", perf_cmd) < 0 ? NULL : s; in cmd_to_page() 337 if (asprintf(&new_path, "%s:%s", system_path(PERF_MAN_PATH), old_path ?: "") > 0) { in setup_man_path() 399 return asprintf(page_path, "%s/%s.html", html_path, page); in get_html_page_path()
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-initramfs/recipes-devtools/grubby/grubby/ |
| H A D | grubby-rename-grub2-editenv-to-grub-editenv.patch | 25 - asprintf(&s, "grub2-editenv %s list | grep '^%s='", envFile, name); 26 + asprintf(&s, "grub-editenv %s list | grep '^%s='", envFile, name); 34 - rc = asprintf(&s, "grub2-editenv %s set '%s=%s'", envFile, name, value); 35 + rc = asprintf(&s, "grub-editenv %s set '%s=%s'", envFile, name, value);
|
| /OK3568_Linux_fs/kernel/tools/perf/util/ |
| H A D | llvm-utils.c | 254 err = asprintf(&autoconf_path, "%s%s%s/include/generated/autoconf.h", in detect_kbuild_dir() 262 err = asprintf(kbuild_dir, "%s%s%s", prefix_dir, test_dir, in detect_kbuild_dir() 487 if (asprintf(&perf_bpf_include_opts, "-I%s/bpf", perf_include_dir) < 0) in llvm__compile_bpf() 508 if (asprintf(&pipe_template, "%s -emit-llvm | %s -march=bpf %s -filetype=obj -o -", in llvm__compile_bpf() 529 if (asprintf(&command_echo, "echo -n \"%s\"", template) < 0) in llvm__compile_bpf()
|
| H A D | data.c | 50 ret = asprintf(&file->path, "%s/data.%d", data->path, i); in perf_data__create_dir() 316 if (asprintf(&data->file.path, "%s/data", data->path) < 0) in open_dir() 383 if (asprintf(new_filepath, "%s.%s", data->path, postfix) < 0) in perf_data__switch() 450 if (asprintf(&kallsyms_name, "%s/kcore_dir/kallsyms", data->path) < 0) in perf_data__kallsyms_name()
|
| H A D | build-id.c | 458 if (asprintf(&topdir, "%s/.build-id/", buildid_dir) < 0) in build_id_cache__list_all() 475 if (asprintf(&linkdir, "%s/%s", topdir, nd->s) < 0) in build_id_cache__list_all() 567 if (asprintf(&filename, "%s%s%s%s%s", buildid_dir, slash ? "/" : "", in build_id_cache__cachedir() 698 if (asprintf(&filename, "%s/%s", dir_name, in build_id_cache__add_s() 727 if (asprintf(&filename, "%s/%s", dir_name, in build_id_cache__add_s()
|
| /OK3568_Linux_fs/external/xserver/hw/xquartz/mach-startup/ |
| H A D | bundle_trampoline.c | 70 asprintf(&executable, "%s/X11.sh", executable_directory); in main() 73 asprintf(&executable, "%s/X11", executable_directory); in main()
|
| /OK3568_Linux_fs/kernel/tools/perf/ui/browsers/ |
| H A D | scripts.c | 53 if (asprintf(&c->paths[c->index], in add_script_option() 73 if (asprintf(&c->paths[c->index], "%s %s", value, in scripts_config() 181 if (asprintf(&cmd, "%s%s %s %s%s 2>&1 | less", in script_browse()
|
| H A D | res_sample.c | 51 if (asprintf(&names[i], "%s: CPU %d tid %d", tbuf, in res_sample_browse() 76 if (asprintf(&cmd, "%s script %s%s --time %s %s%s %s%s --ns %s %s %s %s %s | less +/%s", in res_sample_browse()
|
| H A D | hists.c | 880 if (asprintf(&alloc_str2, "%s%s", str, buf) < 0) in hist_browser__show_callchain_list() 890 if (asprintf(&alloc_str, "%s %s", buf, str) < 0) in hist_browser__show_callchain_list() 1006 if (asprintf(&new, "%s%s%s", old_str, in hist_browser__folded_callchain_str() 1011 if (asprintf(&new, "%s %s", value_str, str) < 0) in hist_browser__folded_callchain_str() 1014 if (asprintf(&new, "%s", str) < 0) in hist_browser__folded_callchain_str() 1053 if (asprintf(&value_str, "%s", buf) < 0) { in hist_browser__show_callchain_folded() 2510 if (asprintf(optstr, "Annotate %s", ms->sym->name) < 0) in add_annotate_opt() 2563 ret = asprintf(optstr, "Zoom %s %s(%d) thread", in add_thread_opt() 2568 ret = asprintf(optstr, "Zoom %s %s thread", in add_thread_opt() 2616 if (asprintf(optstr, "Zoom %s %s DSO (use the 'k' hotkey to zoom directly into the kernel)", in add_dso_opt() [all …]
|
| /OK3568_Linux_fs/kernel/tools/lib/subcmd/ |
| H A D | subcmd-util.h | 61 if (asprintf((out), "%s" fmt, tmp ?: "", ## __VA_ARGS__) == -1) \ 70 if (asprintf(out, "%s%s", tmp ?: "", add) == -1) in astrcat()
|
| /OK3568_Linux_fs/buildroot/package/vpnc/ |
| H A D | 0006-config.c-Replace-deprecated-SUSv3-functions-with-POS.patch | 29 - asprintf(&realname, "%s%s%s", index(name, '/') ? "" : "/etc/vpnc/", name, add_dot_conf ? ".conf" … 30 + asprintf(&realname, "%s%s%s", strchr(name, '/') ? "" : "/etc/vpnc/", name, add_dot_conf ? ".conf"…
|
| /OK3568_Linux_fs/kernel/tools/lib/api/fs/ |
| H A D | tracing_path.c | 77 if (asprintf(&file, "%s/%s", tracing_path_mount(), name) < 0) in get_tracing_file() 92 if (asprintf(&file, "%s/events/%s", tracing_path_mount(), name) < 0) in get_events_file()
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/bits/ |
| H A D | stdio-ldbl.h | 79 __LDBL_REDIR2_DECL (asprintf) 80 __LDBL_REDIR_DECL (asprintf)
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/bits/ |
| H A D | stdio-ldbl.h | 79 __LDBL_REDIR2_DECL (asprintf) 80 __LDBL_REDIR_DECL (asprintf)
|
| /OK3568_Linux_fs/kernel/tools/perf/arch/ |
| H A D | common.c | 149 if (asprintf(&buf, "%s%s", cross_env, name) < 0) in perf_env__lookup_binutils_path() 193 if (asprintf(&buf, "%s%s", path_list[idx], name) < 0) in perf_env__lookup_binutils_path()
|
| /OK3568_Linux_fs/external/xserver/os/ |
| H A D | xprintf.c | 70 #ifdef asprintf 71 #undef asprintf
|
| /OK3568_Linux_fs/kernel/tools/perf/tests/ |
| H A D | llvm.c | 104 err = asprintf(&tmpl_new, "echo '%s' | %s%s", source, in test_llvm__fetch_bpf_obj() 109 err = asprintf(&clang_opt_new, "-xc %s", llvm_param.clang_opt); in test_llvm__fetch_bpf_obj()
|
| /OK3568_Linux_fs/external/xserver/test/ |
| H A D | simple-xinit.c | 110 ret = asprintf(&display_string, ":%d", display); in start_client() 198 ret = asprintf(&displayfd_string, "%d", displayfd); in parse_args()
|
| /OK3568_Linux_fs/kernel/tools/lib/traceevent/ |
| H A D | parse-filter.c | 272 ret = asprintf(®, "^%s$", event_name); in find_event() 283 ret = asprintf(®, "^%s$", sys_name); in find_event() 1956 if (asprintf(&str, val ? "TRUE" : "FALSE") < 0) in op_to_str() 1975 if (asprintf(&str, "(%s) %s (%s)", left, op, right) < 0) in op_to_str() 1992 if (asprintf(&str, right_val ? "FALSE" : "TRUE") < 0) in op_to_str() 1996 if (asprintf(&str, "%s(%s)", op, right) < 0) in op_to_str() 2013 if (asprintf(&str, "%lld", arg->value.val) < 0) in val_to_str() 2072 if (asprintf(&str, "%s %s %s", lstr, op, rstr) < 0) in exp_to_str() 2117 if (asprintf(&str, "%s %s %s", lstr, op, rstr) < 0) in num_to_str() 2153 if (asprintf(&str, "%s %s \"%s\"", in str_to_str() [all …]
|