Home
last modified time | relevance | path

Searched refs:fgets (Results 1 – 25 of 134) sorted by relevance

123456

/openbmc/openbmc/poky/meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/
H A D0001-Remove-fgets-extern-declaration.patch4 Subject: [PATCH] Remove fgets() extern declaration
24 -extern char *fgets();
36 -extern char *fgets();
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/sharutils/sharutils/
H A DCVE-2018-1000097.patch9 rw_buffer has allocated rw_base_size bytes. But subsequend fgets() in
54 - if (!fgets (rw_buffer, BUFSIZ, file))
55 + if (!fgets (rw_buffer, rw_base_size, file))
/openbmc/openbmc/meta-openembedded/meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc/
H A D0010-fs2dt.c-work-around-missing-getline.patch6 This simple case can be rewrtten with fgets()
42 + last_cmdline = fgets(buf, 200, fp);
H A Dx86_vfscanf.patch35 + while(fgets(line, sizeof(line), fp) != NULL ) {
/openbmc/openbmc/meta-openembedded/meta-initramfs/recipes-devtools/mtd/ubi-utils-klibc-2.0.2/
H A D0005-common.h-replace-getline-with-fgets.patch4 Subject: [PATCH] common.h: replace getline() with fgets
49 + while (fgets(line, sizeof_line, stdin) == NULL) {
/openbmc/linux/tools/testing/selftests/bpf/
H A Dunpriv_helpers.c18 disabled = (fgets(buf, 2, fd) == buf && atoi(buf)); in get_unpriv_disabled()
/openbmc/linux/tools/testing/selftests/mm/
H A Dcompaction_test.c35 if (!(fgets(buffer, sizeof(buffer), cmdfile))) { in read_memory_info()
46 if (!(fgets(buffer, sizeof(buffer), cmdfile))) { in read_memory_info()
/openbmc/linux/tools/perf/util/
H A Dfind-map.c14 while (!found && fgets(line, sizeof(line), maps)) { in find_map()
/openbmc/hiomapd/
H A Dmtd.c25 while (!pos && fgets(line, sizeof(line), f) != NULL) { in get_dev_mtd()
/openbmc/phosphor-mboxd/
H A Dmtd.c25 while (!pos && fgets(line, sizeof(line), f) != NULL) { in get_dev_mtd()
/openbmc/linux/tools/hv/
H A Dhv_kvp_daemon.c444 while (fgets(buf, sizeof(buf), file)) { in kvp_get_os_info()
506 p = fgets(buf, sizeof(buf), file); in kvp_get_os_info()
517 p = fgets(buf, sizeof(buf), file); in kvp_get_os_info()
528 p = fgets(buf, sizeof(buf), file); in kvp_get_os_info()
580 p = fgets(buf, sizeof(buf), file); in kvp_get_if_name()
623 p = fgets(buf, sizeof(buf), file); in kvp_if_name_to_mac()
655 while ((p = fgets(buf, sizeof(buf), file)) != NULL) { in kvp_process_ipconfig_file()
740 p = fgets(dhcp_info, sizeof(dhcp_info), file); in kvp_get_ipconfig_info()
973 p = fgets(buf, sizeof(buf), file); in kvp_mac_to_ip()
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-daemons/tftp-hpa/files/
H A Dtftp-0.40-remap.patch15 while (lineno++, fgets(line, MAXLINE, f)) {
/openbmc/libpldm/src/transport/
H A Dsocket.c28 if (fgets(line, sizeof(line), fp) == NULL) { in pldm_socket_sndbuf_init()
/openbmc/linux/drivers/gpu/drm/radeon/
H A Dmkregtable.c219 if (fgets(buf, 1024, file) == NULL) { in parser_auth()
231 if (fgets(buf, 1024, file) == NULL) { in parser_auth()
/openbmc/linux/tools/testing/selftests/resctrl/
H A Dresctrlfs.c26 if (!fgets(line, 256, mounts)) in find_resctrl_mount()
596 if (!fgets(line, 256, inf)) in fgrep()
682 while (fgets(line, 1024, fp)) { in filter_dmesg()
H A Dmbm_test.c68 while (fgets(temp, sizeof(temp), fp)) { in check_results()
/openbmc/linux/drivers/zorro/
H A Dgen-devlist.c45 while (fgets(line, sizeof(line)-1, stdin)) { in main()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-connectivity/rabbitmq-c/files/
H A DCVE-2023-35789.patch64 + if (fgets(token, MAXAUTHTOKENLEN, fp) == NULL ||
77 + if (fgets(token, MAXAUTHTOKENLEN, fp) == NULL ||
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/uw-imap/uw-imap/
H A D0001-Do-not-build-mtest.patch8 want to use it then port it to use something like fgets
/openbmc/linux/tools/testing/selftests/prctl/
H A Dset-anon-vma-name-test.c56 while (fgets(line_buf, sizeof(line_buf), maps_file)) { in was_renaming_successful()
/openbmc/linux/tools/testing/selftests/powerpc/signal/
H A Dsigreturn_vdso.c40 while (fgets(buf, sizeof(buf), f)) { in search_proc_maps()
/openbmc/linux/tools/testing/selftests/powerpc/benchmarks/
H A Dnull_syscall.c83 while (fgets(line, sizeof(line), f) != NULL) { in get_proc_frequency()
/openbmc/linux/tools/perf/arch/arm64/util/
H A Dheader.c43 if (!fgets(buf, MIDR_SIZE, file)) { in _get_cpuid()
/openbmc/linux/drivers/accessibility/speakup/
H A Dmakemapdata.c23 while (fgets(buffer, sizeof(buffer)-1, infile)) { in get_define()
/openbmc/phosphor-fan-presence/
H A Dhwmon_ffdc.cpp35 while (fgets(buffer.data(), buffer.size(), pipe.get()) != nullptr) in executeCommand()

123456