HomeSort by relevance Sort by last modified time
    Searched refs:socket_name (Results 1 - 20 of 20) sorted by null

  /external/perfetto/include/perfetto/ipc/
client.h 39 // auto client = Client::CreateInstance("socket_name", task_runner);
47 static std::unique_ptr<Client> CreateInstance(const char* socket_name,
host.h 36 // dispatcher. It listen on the UnixSocket |socket_name| for incoming requests
41 // Creates an instance and starts listening on the given |socket_name|.
43 static std::unique_ptr<Host> CreateInstance(const char* socket_name,
  /device/google/cuttlefish_common/host/commands/virtual_usb_manager/
main.cc 46 auto socket_name = config->usb_v1_socket_name(); local
47 LOG(INFO) << "Starting server at " << socket_name;
48 usb_v1_server = cvd::SharedFD::SocketLocalServer(socket_name.c_str(), false,
  /external/perfetto/src/ipc/
host_impl.h 39 HostImpl(const char* socket_name, base::TaskRunner*);
77 bool Initialize(const char* socket_name);
client_impl.h 44 ClientImpl(const char* socket_name, base::TaskRunner*);
client_impl.cc 38 std::unique_ptr<Client> Client::CreateInstance(const char* socket_name,
40 std::unique_ptr<Client> client(new ClientImpl(socket_name, task_runner));
44 ClientImpl::ClientImpl(const char* socket_name, base::TaskRunner* task_runner)
47 sock_ = base::UnixSocket::Connect(socket_name, this, task_runner);
host_impl.cc 37 std::unique_ptr<Host> Host::CreateInstance(const char* socket_name,
39 std::unique_ptr<HostImpl> host(new HostImpl(socket_name, task_runner));
62 HostImpl::HostImpl(const char* socket_name, base::TaskRunner* task_runner)
66 sock_ = base::UnixSocket::Listen(socket_name, this, task_runner_);
  /external/perfetto/src/base/
unix_socket.cc 78 bool MakeSockAddr(const std::string& socket_name,
82 const size_t name_len = socket_name.size();
87 memcpy(addr->sun_path, socket_name.data(), name_len);
179 bool UnixSocketRaw::Bind(const std::string& socket_name) {
183 if (!MakeSockAddr(socket_name, &addr, &addr_size))
187 PERFETTO_DPLOG("bind(%s)", socket_name.c_str());
200 bool UnixSocketRaw::Connect(const std::string& socket_name) {
204 if (!MakeSockAddr(socket_name, &addr, &addr_size))
371 std::unique_ptr<UnixSocket> UnixSocket::Listen(const std::string& socket_name,
376 if (!sock_raw || !sock_raw.Bind(socket_name))
    [all...]
  /external/perfetto/include/perfetto/base/
unix_socket.h 66 bool Bind(const std::string& socket_name);
68 bool Connect(const std::string& socket_name);
182 // Creates a Unix domain socket and starts listening. If |socket_name|
187 static std::unique_ptr<UnixSocket> Listen(const std::string& socket_name,
202 static std::unique_ptr<UnixSocket> Connect(const std::string& socket_name,
310 void DoConnect(const std::string& socket_name);
  /external/perfetto/test/
fake_producer.h 38 void Connect(const char* socket_name,
end_to_end_shared_memory_fuzzer.cc 66 void Connect(const char* socket_name, base::TaskRunner* task_runner) {
68 socket_name, this, "android.perfetto.FakeProducer", task_runner);
fake_producer.cc 38 const char* socket_name,
45 socket_name, this, "android.perfetto.FakeProducer", task_runner);
  /external/openssh/
ssh-agent.c 139 char socket_name[PATH_MAX]; variable
1159 if (socket_name[0])
1160 unlink(socket_name);
    [all...]
  /external/wayland/tests/
test-compositor.c 322 const char *socket_name; local
332 socket_name = get_socket_name();
333 stat = wl_display_add_socket(d->wl_display, socket_name);
  /external/perfetto/src/traced/probes/
probes_producer.cc 154 const char* socket_name = socket_name_; local
160 ConnectWithRetries(socket_name, task_runner);
480 void ProbesProducer::ConnectWithRetries(const char* socket_name,
486 socket_name_ = socket_name;
probes_producer.h 64 void ConnectWithRetries(const char* socket_name,
  /device/google/cuttlefish_common/host/commands/launch/
launch.cc 185 auto socket_name = config.usb_v1_socket_name(); local
187 socket_name.c_str(), false, SOCK_STREAM, 0666);
  /external/perfetto/src/profiling/memory/
heapprofd_producer.cc 217 void HeapprofdProducer::ConnectWithRetries(const char* socket_name) {
222 producer_sock_name_ = socket_name;
261 const char* socket_name = producer_sock_name_; local
267 ConnectWithRetries(socket_name);
heapprofd_producer.h 122 void ConnectWithRetries(const char* socket_name);
  /external/autotest/frontend/afe/
moblab_rpc_interface.py 274 socket_name = socket_handle.getsockname()
275 if socket_name is not None:
277 return socket_name[0]
278 logging.warn('Created UDP socket but with no socket_name.')
    [all...]

Completed in 422 milliseconds