Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/QemuUser/
H A DPlatformQemuUser.cpp175 llvm::SmallString<0> socket_model, socket_path; in DebugProcess() local
179 llvm::sys::fs::createUniquePath(socket_model, socket_path, false); in DebugProcess()
180 } while (FileSystem::Instance().Exists(socket_path)); in DebugProcess()
182 Args args({qemu.GetPath(), "-g", socket_path}); in DebugProcess()
230 error = process_sp->ConnectRemote(("unix-connect://" + socket_path).str()); in DebugProcess()
/openbsd-src/usr.sbin/nsd/dnstap/
H A Ddnstap.c508 check_socket_file(const char* socket_path) in check_socket_file() argument
512 if(stat(socket_path, &statbuf) < 0) { in check_socket_file()
514 socket_path, strerror(errno)); in check_socket_file()
519 dt_create(const char *socket_path, char* ip, unsigned num_workers, in dt_create() argument
536 socket_path)); in dt_create()
537 assert(socket_path != NULL); in dt_create()
538 check_socket_file(socket_path); in dt_create()
560 fstrm_unix_writer_options_set_socket_path(fuwopt, socket_path); in dt_create()
H A Ddnstap.h96 dt_create(const char *socket_path, char* ip, unsigned num_workers,
/openbsd-src/usr.bin/tmux/
H A Dserver.c117 size = strlcpy(sa.sun_path, socket_path, sizeof sa.sun_path); in server_create_socket()
151 xasprintf(cause, "error creating %s (%s)", socket_path, in server_create_socket()
344 if (stat(socket_path, &sb) != 0) in server_update_socket()
356 chmod(socket_path, mode); in server_update_socket()
H A Dproc.c187 setproctitle("%s (%s)", name, socket_path); in proc_start()
193 (long)getpid(), getversion(), socket_path, PROTOCOL_VERSION); in proc_start()
H A Dclient.c285 fd = client_connect(base, socket_path, client_flags); in client_main()
289 socket_path); in client_main()
292 socket_path, strerror(errno)); in client_main()
H A Dtmux.c46 const char *socket_path; variable
543 socket_path = path; in main()
H A Denviron.c271 environ_set(env, "TMUX", 0, "%s,%ld,%d", socket_path, (long)getpid(), in environ_for_session()
H A Dtmux.h2170 extern const char *socket_path;
H A Dformat.c2309 /* Callback for socket_path. */
2313 return (xstrdup(socket_path)); in format_cb_active_window_index()
3189 { "socket_path", FORMAT_TABLE_STRING,
/openbsd-src/usr.sbin/unbound/dnstap/
H A Ddtstream.c324 free(dtio->socket_path); in dt_io_thread_delete()
366 free(dtio->socket_path); in dt_io_thread_apply_cfg()
367 dtio->socket_path = strdup(nm); in dt_io_thread_apply_cfg()
368 if(!dtio->socket_path) { in dt_io_thread_apply_cfg()
741 char* to = dtio->socket_path; in dtio_check_nb_connect()
752 else if(dtio->socket_path) in dtio_check_nb_connect()
754 dtio->socket_path);
965 char* to = dtio->socket_path; in receive_bytes()
1970 (void)strlcpy(s.sun_path, dtio->socket_path, sizeof(s.sun_path)); in dtio_open_output_tcp()
1974 char* to = dtio->socket_path; in dtio_open_output_tcp()
[all...]
H A Ddtstream.h218 char* socket_path; member
H A Ddnstap.c145 check_socket_file(const char* socket_path) in dt_create()
149 if(stat(socket_path, &statbuf) < 0) { in dt_create()
151 socket_path, strerror(errno)); in dt_create()
120 check_socket_file(const char * socket_path) check_socket_file() argument
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerPlatform.cpp583 llvm::SmallString<128> socket_path; in GetDomainSocketPath() local
591 socket_path); in GetDomainSocketPath()
592 return FileSpec(socket_path.c_str()); in GetDomainSocketPath()