Home
last modified time | relevance | path

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

/frameworks/native/cmds/installd/
Ddexopt.cpp1448 unique_fd pipe_read, pipe_write; in get_class_loader_context_dex_paths() local
1449 if (!Pipe(&pipe_read, &pipe_write)) { in get_class_loader_context_dex_paths()
1460 while ((dup2(pipe_write, STDOUT_FILENO) == -1) && (errno == EINTR)) {} in get_class_loader_context_dex_paths()
1461 pipe_write.reset(); in get_class_loader_context_dex_paths()
1469 pipe_write.reset(); in get_class_loader_context_dex_paths()
2072 unique_fd pipe_read, pipe_write; in hash_secondary_dex_file() local
2073 if (!Pipe(&pipe_read, &pipe_write)) { in hash_secondary_dex_file()
2123 if (!WriteFully(pipe_write, hash.data(), hash.size())) { in hash_secondary_dex_file()
2131 pipe_write.reset(); in hash_secondary_dex_file()
/frameworks/base/core/java/android/app/
DUiAutomation.java1416 ParcelFileDescriptor[] pipe_write = ParcelFileDescriptor.createPipe(); in executeShellCommandInternal() local
1417 source_write = pipe_write[0]; in executeShellCommandInternal()
1418 sink_write = pipe_write[1]; in executeShellCommandInternal()