Home
last modified time | relevance | path

Searched refs:log_pipe (Results 1 – 14 of 14) sorted by relevance

/dports/dns/ldapdns/ldapdns-2.07/
H A Derror.c32 static void log_pipe(const char *s) in log_pipe() function
86 log_pipe(s+1); in log_init()
90 log_pipe(s+5); in log_init()
92 log_pipe(s+5); in log_init()
94 log_pipe(s+5); in log_init()
96 log_pipe(s+8); in log_init()
/dports/net/freeradius3/freeradius-server-3.0.25/src/modules/rlm_unbound/
H A Drlm_unbound.c56 int log_pipe[2]; member
652 if (pipe(inst->log_pipe)) { in mod_instantiate()
658 if ((fcntl(inst->log_pipe[0], F_SETFL, O_NONBLOCK) < 0) || in mod_instantiate()
659 (fcntl(inst->log_pipe[0], F_SETFD, FD_CLOEXEC) < 0)) { in mod_instantiate()
664 if (fcntl(inst->log_pipe[1], F_SETFL, O_NONBLOCK) < 0) { in mod_instantiate()
668 inst->log_pipe_stream[0] = fdopen(inst->log_pipe[0], "r"); in mod_instantiate()
669 inst->log_pipe_stream[1] = fdopen(inst->log_pipe[1], "w"); in mod_instantiate()
673 close(inst->log_pipe[1]); in mod_instantiate()
677 close(inst->log_pipe[0]); in mod_instantiate()
686 if (!fr_event_fd_insert(inst->el, 0, inst->log_pipe[0], log_spew, inst)) { in mod_instantiate()
[all …]
/dports/net/proxy-suite/proxy-suite-1.9.2.4/common/
H A Dcom-syslog.c104 static FILE *log_pipe = NULL; variable
292 if ((log_pipe = popen(name, "w")) == NULL) { in syslog_open()
414 if ((fp = (log_file ? log_file : log_pipe)) == NULL) { in syslog_write()
491 if ((fp = (log_file ? log_file : log_pipe)) == NULL) { in syslog_error()
649 if (log_pipe) { in syslog_close()
650 pclose(log_pipe); in syslog_close()
651 log_pipe = NULL; in syslog_close()
/dports/mail/rspamd/rspamd-3.1/src/libserver/
H A Drspamd_control.h84 } log_pipe; member
130 } log_pipe; member
163 } log_pipe; member
197 } log_pipe; member
H A Drspamd_control.c997 wcmd.cmd.log_pipe.type = cmd.cmd.log_pipe.type; in rspamd_srv_handler()
H A Dworker_util.c1865 lp->type = cmd->cmd.log_pipe.type; in rspamd_worker_log_pipe_handler()
1871 rep.reply.log_pipe.status = ENOENT; in rspamd_worker_log_pipe_handler()
/dports/mail/rspamd-devel/rspamd-93430bb/src/libserver/
H A Drspamd_control.h84 } log_pipe; member
130 } log_pipe; member
163 } log_pipe; member
197 } log_pipe; member
H A Drspamd_control.c997 wcmd.cmd.log_pipe.type = cmd.cmd.log_pipe.type; in rspamd_srv_handler()
H A Dworker_util.c1863 lp->type = cmd->cmd.log_pipe.type; in rspamd_worker_log_pipe_handler()
1869 rep.reply.log_pipe.status = ENOENT; in rspamd_worker_log_pipe_handler()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/sandbox/win/sandbox_poc/
H A Dmain_ui_window.cc477 wchar_t log_pipe[MAX_PATH] = {0}; in SpawnTarget() local
478 wnsprintf(log_pipe, MAX_PATH - 1, in SpawnTarget()
489 dll_path_.length() + wcslen(log_pipe) + 6; in SpawnTarget()
499 dll_path_.c_str(), log_pipe); in SpawnTarget()
539 pipe_handle_ = ::CreateNamedPipe(log_pipe, in SpawnTarget()
/dports/www/chromium-legacy/chromium-88.0.4324.182/sandbox/win/sandbox_poc/
H A Dmain_ui_window.cc476 wchar_t log_pipe[MAX_PATH] = {0}; in SpawnTarget() local
477 wnsprintf(log_pipe, MAX_PATH - 1, in SpawnTarget()
488 dll_path_.length() + wcslen(log_pipe) + 6; in SpawnTarget()
498 dll_path_.c_str(), log_pipe); in SpawnTarget()
538 pipe_handle_ = ::CreateNamedPipe(log_pipe, in SpawnTarget()
/dports/devel/pcsc-lite/pcsc-lite-1.9.4/src/spy/
H A Dlibpcscspy.c394 char log_pipe[128]; in p_SCardEstablishContext() local
408 snprintf(log_pipe, sizeof log_pipe, "%s/pcsc-spy", home); in p_SCardEstablishContext()
409 Log_fd = open(log_pipe, O_WRONLY); in p_SCardEstablishContext()
412 log_line("open %s failed: %s", log_pipe, strerror(errno)); in p_SCardEstablishContext()
/dports/www/trac-devel/Trac-1.5.3/tracopt/versioncontrol/git/
H A DPyGIT.py170 def log_pipe(self, *cmd_args): member in GitCore
986 p[:] = [self.repo.log_pipe('--pretty=format:%n%H', '--no-renames',
/dports/www/trafficserver/trafficserver-9.1.1/
H A DCHANGELOG-9.1.0130 #6966 - Make the log_pipe test more efficient.