Searched refs:fn (Results 226 - 250 of 582) sorted by relevance

1234567891011>>

/freebsd-current/contrib/llvm-project/libunwind/src/
H A DUnwindLevel1.c47 #define __unw_phase2_resume(cursor, fn) \
49 (void)fn; \
54 #define __unw_phase2_resume(cursor, fn) \
56 _LIBUNWIND_POP_CET_SSP((fn)); \
66 #define __unw_phase2_resume(cursor, fn) \
68 _LIBUNWIND_POP_CET_SSP((fn)); \
/freebsd-current/contrib/libarchive/libarchive/
H A Darchive_read_open_filename.c197 struct archive_string fn;
199 archive_string_init(&fn);
200 if (archive_string_append_from_wcs(&fn, wfilename,
209 archive_string_free(&fn);
214 strcpy(mine->filename.m, fn.s);
215 archive_string_free(&fn);
/freebsd-current/sys/contrib/openzfs/include/os/linux/kernel/linux/
H A Dblkdev_compat.h278 #define BIO_END_IO_PROTO(fn, x, z) static void fn(struct bio *x)
289 #define BIO_END_IO_PROTO(fn, x, z) static void fn(struct bio *x)
301 #define BIO_END_IO_PROTO(fn, x, z) static void fn(struct bio *x, int z)
/freebsd-current/contrib/tcsh/
H A Dglob.c219 Lstat(const char *fn, struct stat *sb) argument
223 st = lstat(fn, sb);
225 if (*fn != 0 && strend(fn)[-1] == '/' && !S_ISDIR(sb->st_mode))
235 Stat(const char *fn, struct stat *sb) argument
239 st = stat(fn, sb);
241 if (*fn != 0 && strend(fn)[-1] == '/' && !S_ISDIR(sb->st_mode))
/freebsd-current/crypto/heimdal/lib/kadm5/
H A Dcontext_s.c61 const char *fn = kadm5_log_signal_socket(context); local
65 strlcpy (un->sun_path, fn, sizeof(un->sun_path));
/freebsd-current/sys/contrib/zstd/examples/
H A Dcommon.h60 #define CHECK_ZSTD(fn) \
62 size_t const err = (fn); \
/freebsd-current/crypto/openssl/crypto/evp/
H A Dkdf_lib.c177 void (*fn)(const char *name, void *data),
181 return evp_names_do_all(kdf->prov, kdf->name_id, fn, data);
/freebsd-current/crypto/openssl/include/openssl/
H A Dkdf.h56 void (*fn)(EVP_KDF *kdf, void *arg),
59 void (*fn)(const char *name, void *data),
/freebsd-current/sys/compat/linuxkpi/common/include/linux/
H A Dkthread.h58 #define kthread_run(fn, data, fmt, ...) ({ \
66 __task = linux_kthread_setup_and_run(__td, fn, data); \
/freebsd-current/sys/dev/acpica/
H A Dacpiio.h206 extern int acpi_register_ioctl(u_long cmd, acpi_ioctl_fn fn, void *arg);
207 extern void acpi_deregister_ioctl(u_long cmd, acpi_ioctl_fn fn);
/freebsd-current/sys/dev/qlxgb/
H A Dqla_os.h136 #define qla_mdelay(fn, msecs) \
141 pause(fn, qla_ms_to_hz(msecs)); \
/freebsd-current/sys/dev/qlxgbe/
H A Dql_os.h146 #define qla_mdelay(fn, msecs) \
151 pause(fn, qla_ms_to_hz(msecs)); \
/freebsd-current/sys/dev/qlxge/
H A Dqls_os.h138 #define qls_mdelay(fn, msecs) \
143 pause(fn, qls_ms_to_hz(msecs)); \
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_linux.h84 uptr internal_clone(int (*fn)(void *), void *child_stack, int flags, void *arg,
93 uptr internal_clone(int (*fn)(void *), void *child_stack, int flags, void *arg);
/freebsd-current/contrib/pf/authpf/
H A Dauthpf.c751 char *rsn = NULL, *fn = NULL; local
776 if (asprintf(&fn, "%s/%s/authpf.rules",
779 if (stat(fn, &sb) == -1) {
780 free(fn);
781 if ((fn = strdup(PATH_PFRULES)) == NULL)
789 pargv[11] = fn;
792 pargv[9] = fn;
835 free(fn);
/freebsd-current/libexec/tftpd/
H A Dtftpd.c420 reduce_path(char *fn) argument
425 while ((slash = strstr(fn, "/./")) != NULL) {
426 for (ptr = slash; ptr > fn && ptr[-1] == '/'; ptr--)
434 while ((slash = strstr(fn, "/../")) != NULL) {
435 if (slash == fn)
437 for (ptr = slash; ptr > fn && ptr[-1] == '/'; ptr--)
439 for (ptr--; ptr >= fn; ptr--)
442 if (ptr < fn)
/freebsd-current/usr.bin/comm/
H A Dcomm.c204 show(FILE *fp, const char *fn, const char *offset, char **bufp, size_t *buflenp) argument
218 err(1, "%s", fn);
/freebsd-current/contrib/libucl/tests/
H A Dtest_generate.c47 struct ucl_emitter_functions *fn; local
276 fn = ucl_object_emit_memory_funcs ((void **)&emitted);
277 assert (ucl_object_emit_full (obj, UCL_EMIT_CONFIG, fn, comments));
279 ucl_object_emit_funcs_free (fn);
/freebsd-current/crypto/openssl/include/internal/
H A Dproperty.h66 void (*fn)(int id, void *method, void *fnarg),
/freebsd-current/sys/compat/linuxkpi/common/include/linux/soc/qcom/
H A Dqmi.h90 void (*fn)(struct qmi_handle *, struct sockaddr_qrtr *, struct qmi_txn *, const void *); member in struct:qmi_msg_handler
/freebsd-current/usr.bin/grep/
H A Dgrep.h142 bool procfile(const char *fn);
/freebsd-current/usr.sbin/pmccontrol/
H A Dpmccontrol.c111 char *fn; local
113 fn = getenv("PMCCONTROL_DEBUG");
114 if (fn != NULL)
116 debug_stream = fopen(fn, "w");
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-account.h107 template <class F> void exportStats(const XRayFileHeader &Header, F fn) const;
/freebsd-current/crypto/heimdal/kdc/
H A Dprocess.c258 const char *fn,
276 fd = open(fn, O_WRONLY|O_CREAT|O_APPEND, 0600);
279 krb5_set_error_message(context, saved_errno, "Failed to open: %s", fn);
257 krb5_kdc_save_request(krb5_context context, const char *fn, const unsigned char *buf, size_t len, const krb5_data *reply, const struct sockaddr *sa) argument
/freebsd-current/crypto/heimdal/lib/roken/
H A Drkpty.c158 parse_configuration(const char *fn) argument
166 cmd = fopen(fn, "r");
168 err(1, "open: %s", fn);

Completed in 297 milliseconds

1234567891011>>