Home
last modified time | relevance | path

Searched refs:fd_name (Results 1 – 25 of 210) sorted by relevance

123456789

/dports/games/xtux/xtux/src/ggz/client/
H A Dggz.c46 char fd_name[80]; in ggz_client_connect() local
56 snprintf(fd_name, sizeof(fd_name)-1, "/tmp/%s.%d", name, getpid()); in ggz_client_connect()
57 fd_name[sizeof(fd_name)-1]=0; in ggz_client_connect()
66 strncpy(addr.sun_path, fd_name,sizeof(addr.sun_path)-1); in ggz_client_connect()
/dports/multimedia/v4l_compat/v4l-utils-4l-utils-1.20.0/utils/rds-ctl/
H A Drds-ctl.cpp77 char fd_name[80]; member
772 strncpy(params.fd_name, optarg, sizeof(params.fd_name) - 1); in parse_cl()
774 snprintf(params.fd_name, sizeof(params.fd_name), "/dev/radio%s", optarg); in parse_cl()
776 params.fd_name[sizeof(params.fd_name) - 1] = '\0'; in parse_cl()
794 strncpy(params.fd_name, optarg, sizeof(params.fd_name)); in parse_cl()
795 params.fd_name[sizeof(params.fd_name) - 1] = '\0'; in parse_cl()
965 strcpy(params.fd_name, "/dev/radio0"); in main()
984 if ((fd = open(params.fd_name, O_RDONLY|O_NONBLOCK)) < 0){ in main()
1001 strncpy(params.fd_name, devices[0].c_str(), sizeof(params.fd_name)); in main()
1002 params.fd_name[sizeof(params.fd_name) - 1] = '\0'; in main()
[all …]
/dports/multimedia/libv4l/v4l-utils-4l-utils-1.20.0/utils/rds-ctl/
H A Drds-ctl.cpp77 char fd_name[80]; member
772 strncpy(params.fd_name, optarg, sizeof(params.fd_name) - 1); in parse_cl()
774 snprintf(params.fd_name, sizeof(params.fd_name), "/dev/radio%s", optarg); in parse_cl()
776 params.fd_name[sizeof(params.fd_name) - 1] = '\0'; in parse_cl()
794 strncpy(params.fd_name, optarg, sizeof(params.fd_name)); in parse_cl()
795 params.fd_name[sizeof(params.fd_name) - 1] = '\0'; in parse_cl()
965 strcpy(params.fd_name, "/dev/radio0"); in main()
984 if ((fd = open(params.fd_name, O_RDONLY|O_NONBLOCK)) < 0){ in main()
1001 strncpy(params.fd_name, devices[0].c_str(), sizeof(params.fd_name)); in main()
1002 params.fd_name[sizeof(params.fd_name) - 1] = '\0'; in main()
[all …]
/dports/multimedia/v4l-utils/v4l-utils-4l-utils-1.20.0/utils/rds-ctl/
H A Drds-ctl.cpp77 char fd_name[80]; member
772 strncpy(params.fd_name, optarg, sizeof(params.fd_name) - 1); in parse_cl()
774 snprintf(params.fd_name, sizeof(params.fd_name), "/dev/radio%s", optarg); in parse_cl()
776 params.fd_name[sizeof(params.fd_name) - 1] = '\0'; in parse_cl()
794 strncpy(params.fd_name, optarg, sizeof(params.fd_name)); in parse_cl()
795 params.fd_name[sizeof(params.fd_name) - 1] = '\0'; in parse_cl()
965 strcpy(params.fd_name, "/dev/radio0"); in main()
984 if ((fd = open(params.fd_name, O_RDONLY|O_NONBLOCK)) < 0){ in main()
1001 strncpy(params.fd_name, devices[0].c_str(), sizeof(params.fd_name)); in main()
1002 params.fd_name[sizeof(params.fd_name) - 1] = '\0'; in main()
[all …]
/dports/devel/hs-hlint/hlint-3.3.4/src/GHC/Util/
H A DHsDecl.hs28 ForD _ ForeignImport{fd_name} -> Just $ unLoc fd_name
29 ForD _ ForeignExport{fd_name} -> Just $ unLoc fd_name
/dports/devel/hs-haskell-language-server/haskell-language-server-1.4.0/_cabal_deps/hlint-3.2.7/src/GHC/Util/
H A DHsDecl.hs28 ForD _ ForeignImport{fd_name} -> Just $ unLoc fd_name
29 ForD _ ForeignExport{fd_name} -> Just $ unLoc fd_name
/dports/www/luakit/luakit-2.3/lib/
H A Dproxy.lua94 function _M.load(fd_name)
95 fd_name = fd_name or proxies_file
96 if not os.exists(fd_name) then return end
99 for line in io.lines(fd_name) do
122 function _M.save(fd_name)
123 local fd = io.open(fd_name or proxies_file, "w")
H A Dquickmarks.lua57 function _M.load(fd_name)
60 fd_name = fd_name or quickmarks_file
61 if not os.exists(fd_name) then return end
63 for line in io.lines(fd_name) do
73 function _M.save(fd_name)
77 local fd = io.open(fd_name or quickmarks_file, "w")
/dports/www/luakit-devel/luakit-2.3-20-g4b10e55/lib/
H A Dproxy.lua94 function _M.load(fd_name)
95 fd_name = fd_name or proxies_file
96 if not os.exists(fd_name) then return end
99 for line in io.lines(fd_name) do
122 function _M.save(fd_name)
123 local fd = io.open(fd_name or proxies_file, "w")
H A Dquickmarks.lua57 function _M.load(fd_name)
60 fd_name = fd_name or quickmarks_file
61 if not os.exists(fd_name) then return end
63 for line in io.lines(fd_name) do
73 function _M.save(fd_name)
77 local fd = io.open(fd_name or quickmarks_file, "w")
/dports/games/xtux/xtux/src/ggz/server/
H A Dggz.c69 char* fd_name; in ggz_server_connect() local
78 if ( (fd_name = malloc(len)) == NULL) { in ggz_server_connect()
81 sprintf(fd_name, "%s/%s.%d", TMPDIR, name, getpid()); in ggz_server_connect()
85 strcpy(addr.sun_path, fd_name); in ggz_server_connect()
86 free(fd_name); in ggz_server_connect()
/dports/misc/rump/buildrump.sh-b914579/src/sys/external/bsd/ipf/netinet/
H A Dip_dstlist.c505 if (dest.fd_name < -1 || dest.fd_name > 128) { in ipf_dstlist_node_add()
516 bzero((char *)node, sizeof(*node) + dest.fd_name); in ipf_dstlist_node_add()
519 node->ipfd_size = sizeof(*node) + dest.fd_name; in ipf_dstlist_node_add()
521 if (dest.fd_name > 0) { in ipf_dstlist_node_add()
528 node->ipfd_names, dest.fd_name); in ipf_dstlist_node_add()
534 node->ipfd_dest.fd_name = 0; in ipf_dstlist_node_add()
536 node->ipfd_dest.fd_name = -1; in ipf_dstlist_node_add()
570 if (node->ipfd_dest.fd_name == 0) in ipf_dstlist_node_add()
574 if (node->ipfd_dest.fd_name == 0 && in ipf_dstlist_node_add()
655 size = sizeof(*temp) + frd.fd_name; in ipf_dstlist_node_del()
[all …]
/dports/misc/rump/buildrump.sh-b914579/src/sys/dev/ic/
H A Dapple_smc_fan.c89 char fd_name[12]; member
250 char name[sizeof(fan_desc.fd_name) + 1]; in apple_smc_fan_attach_sensors()
297 (void)memcpy(name, fan_desc.fd_name, sizeof(fan_desc.fd_name)); in apple_smc_fan_attach_sensors()
298 name[sizeof(fan_desc.fd_name)] = '\0'; in apple_smc_fan_attach_sensors()
/dports/mail/poppwd/poppwd/
H A Dpassword.c115 char fd_name[FD_MAXLENGTH + 1]; in change_pass_system() local
122 if (snprintf(fd_name, (size_t)(FD_MAXLENGTH + 1), "%d", fds[0]) > FD_MAXLENGTH) { in change_pass_system()
134 if (execl(PW, "pw", "usermod", username, "-h", fd_name, NULL) == -1) { in change_pass_system()
/dports/devel/hs-ormolu/ormolu-0.4.0.0/src/Ormolu/Printer/Meat/Declaration/
H A DForeign.hs34 [ getLocA (fd_name fd),
38 p_rdrName (fd_name fd)
/dports/devel/hs-haskell-language-server/haskell-language-server-1.4.0/_cabal_deps/ormolu-0.1.4.1/src/Ormolu/Printer/Meat/Declaration/
H A DForeign.hs36 [ getLoc (fd_name fd),
40 p_rdrName (fd_name fd)
/dports/devel/hs-haskell-language-server/haskell-language-server-1.4.0/_cabal_deps/fourmolu-0.3.0.0/src/Ormolu/Printer/Meat/Declaration/
H A DForeign.hs36 [ getLoc (fd_name fd),
40 p_rdrName (fd_name fd)
/dports/graphics/libosmesa-gallium/mesa-21.3.6/src/util/
H A Dos_memory_fd.c102 os_malloc_aligned_fd(size_t size, size_t alignment, int *fd, char const *fd_name, char const *drive… in os_malloc_aligned_fd() argument
122 mem_fd = os_create_anonymous_file(alloc_size, fd_name); in os_malloc_aligned_fd()
/dports/graphics/libosmesa/mesa-21.3.6/src/util/
H A Dos_memory_fd.c102 os_malloc_aligned_fd(size_t size, size_t alignment, int *fd, char const *fd_name, char const *drive… in os_malloc_aligned_fd() argument
122 mem_fd = os_create_anonymous_file(alloc_size, fd_name); in os_malloc_aligned_fd()
/dports/lang/clover/mesa-21.3.6/src/util/
H A Dos_memory_fd.c102 os_malloc_aligned_fd(size_t size, size_t alignment, int *fd, char const *fd_name, char const *drive… in os_malloc_aligned_fd() argument
122 mem_fd = os_create_anonymous_file(alloc_size, fd_name); in os_malloc_aligned_fd()
/dports/graphics/mesa-libs/mesa-21.3.6/src/util/
H A Dos_memory_fd.c102 os_malloc_aligned_fd(size_t size, size_t alignment, int *fd, char const *fd_name, char const *drive… in os_malloc_aligned_fd() argument
122 mem_fd = os_create_anonymous_file(alloc_size, fd_name); in os_malloc_aligned_fd()
/dports/graphics/mesa-dri-gallium/mesa-21.3.6/src/util/
H A Dos_memory_fd.c102 os_malloc_aligned_fd(size_t size, size_t alignment, int *fd, char const *fd_name, char const *drive… in os_malloc_aligned_fd() argument
122 mem_fd = os_create_anonymous_file(alloc_size, fd_name); in os_malloc_aligned_fd()
/dports/graphics/mesa-gallium-va/mesa-21.3.6/src/util/
H A Dos_memory_fd.c102 os_malloc_aligned_fd(size_t size, size_t alignment, int *fd, char const *fd_name, char const *drive… in os_malloc_aligned_fd() argument
122 mem_fd = os_create_anonymous_file(alloc_size, fd_name); in os_malloc_aligned_fd()
/dports/graphics/mesa-gallium-vdpau/mesa-21.3.6/src/util/
H A Dos_memory_fd.c102 os_malloc_aligned_fd(size_t size, size_t alignment, int *fd, char const *fd_name, char const *drive… in os_malloc_aligned_fd() argument
122 mem_fd = os_create_anonymous_file(alloc_size, fd_name); in os_malloc_aligned_fd()
/dports/graphics/mesa-gallium-xa/mesa-21.3.6/src/util/
H A Dos_memory_fd.c102 os_malloc_aligned_fd(size_t size, size_t alignment, int *fd, char const *fd_name, char const *drive… in os_malloc_aligned_fd() argument
122 mem_fd = os_create_anonymous_file(alloc_size, fd_name); in os_malloc_aligned_fd()

123456789