Home
last modified time | relevance | path

Searched refs:pipe_path (Results 1 – 2 of 2) sorted by relevance

/external/llvm-project/lldb/source/Host/windows/
DPipeWindows.cpp107 std::string pipe_path = g_pipe_name_prefix.str(); in CreateNew() local
108 pipe_path.append(name.str()); in CreateNew()
114 pipe_path.c_str(), PIPE_ACCESS_INBOUND | read_mode, in CreateNew()
185 std::string pipe_path = g_pipe_name_prefix.str(); in OpenNamedPipe() local
186 pipe_path.append(name.str()); in OpenNamedPipe()
189 m_read = ::CreateFileA(pipe_path.c_str(), GENERIC_READ, 0, &attributes, in OpenNamedPipe()
199 m_write = ::CreateFileA(pipe_path.c_str(), GENERIC_WRITE, 0, &attributes, in OpenNamedPipe()
/external/libchrome/base/files/
Dfile_util_unittest.cc2867 const FilePath pipe_path = command_line->GetSwitchValuePath("pipe-path"); in MULTIPROCESS_TEST_MAIN() local
2869 int fd = open(pipe_path.value().c_str(), O_WRONLY); in MULTIPROCESS_TEST_MAIN()
2890 const FilePath pipe_path = command_line->GetSwitchValuePath("pipe-path"); in MULTIPROCESS_TEST_MAIN() local
2892 int fd = open(pipe_path.value().c_str(), O_WRONLY); in MULTIPROCESS_TEST_MAIN()
2910 FilePath pipe_path = in TEST_F() local
2912 ASSERT_EQ(0, mkfifo(pipe_path.value().c_str(), 0600)); in TEST_F()
2916 child_command_line.AppendSwitchPath("pipe-path", pipe_path); in TEST_F()
2924 EXPECT_FALSE(ReadFileToStringWithMaxSize(pipe_path, &data, 2)); in TEST_F()
2938 EXPECT_TRUE(ReadFileToStringWithMaxSize(pipe_path, &data, 6)); in TEST_F()
2953 EXPECT_FALSE(ReadFileToStringWithMaxSize(pipe_path, &data, 6)); in TEST_F()
[all …]