HomeSort by relevance Sort by last modified time
    Searched full:pipe_name (Results 1 - 6 of 6) sorted by null

  /development/tools/emulator/system/libqemu/
test_guest_1.c 37 #define PIPE_NAME "pingpong"
53 if (pipe_openQemuPipe(pipe, PIPE_NAME) < 0) {
54 fprintf(stderr, "Could not open '%s' pipe: %s\n", PIPE_NAME, strerror(errno));
57 printf("Connected to '%s' pipe\n", PIPE_NAME);
test_guest_2.c 30 #define PIPE_NAME "pingpong"
40 " -pipe <name> Use pipe name (default: " PIPE_NAME ")\n"
123 pipeName = PIPE_NAME;
  /hardware/libhardware/include/hardware/
qemud.h 69 char pipe_name[256]; local
72 snprintf(pipe_name, sizeof(pipe_name), "qemud:%s", name);
73 fd = qemu_pipe_open(pipe_name);
  /hardware/libhardware_legacy/qemu/
qemu.c 79 char pipe_name[512]; local
81 snprintf(pipe_name, sizeof(pipe_name), "qemud:%s", name);
82 fd = qemu_pipe_open(pipe_name);
  /development/tools/emulator/system/camera/
QemuClient.cpp 226 char pipe_name[512]; local
227 snprintf(pipe_name, sizeof(pipe_name), "qemud:%s", mCameraServiceName);
228 mPipeFD = qemu_pipe_open(pipe_name);
  /external/chromium/net/tools/dump_cache/
upgrade.cc 39 std::wstring pipe_name(kPipePrefix);
40 pipe_name.append(pipe_number);
41 return CreateFile(pipe_name.c_str(), GENERIC_READ | GENERIC_WRITE, 0, NULL,
887 std::wstring pipe_name(kPipePrefix);
890 pipe_name.append(*pipe_number);
895 return CreateNamedPipe(pipe_name.c_str(), mode, 0, 1, kChannelSize,

Completed in 5684 milliseconds