Home
last modified time | relevance | path

Searched refs:pipe (Results 1 – 25 of 30) sorted by relevance

12

/packages/apps/DocumentsUI/src/com/android/documentsui/archives/
DWriteableArchive.java223 ParcelFileDescriptor[] pipe; in openDocument() local
225 pipe = ParcelFileDescriptor.createReliablePipe(); in openDocument()
231 final ParcelFileDescriptor inputPipe = pipe[0]; in openDocument()
274 FileUtils.closeQuietly(pipe[0]); in openDocument()
275 FileUtils.closeQuietly(pipe[1]); in openDocument()
279 return pipe[1]; in openDocument()
/packages/apps/DocumentsUI/tests/functional/com/android/documentsui/archives/
DTestUtils.java92 ParcelFileDescriptor[] pipe = null; in getNonSeekableDescriptor() local
94 pipe = ParcelFileDescriptor.createPipe(); in getNonSeekableDescriptor()
95 final ParcelFileDescriptor finalOutputPipe = pipe[1]; in getNonSeekableDescriptor()
117 return pipe[0]; in getNonSeekableDescriptor()
/packages/apps/Gallery2/src/com/android/gallery3d/provider/
DGalleryProvider.java209 final ParcelFileDescriptor[] pipe = ParcelFileDescriptor.createPipe(); in openPipeHelper() local
214 func.writeDataToPipe(pipe[1], args); in openPipeHelper()
217 Utils.closeSilently(pipe[1]); in openPipeHelper()
222 return pipe[0]; in openPipeHelper()
/packages/apps/Bluetooth/src/com/android/bluetooth/avrcpcontroller/
DAvrcpCoverArtProvider.java100 final ParcelFileDescriptor[] pipe = ParcelFileDescriptor.createPipe(); in getImageDescriptor() local
105 new ParcelFileDescriptor.AutoCloseOutputStream(pipe[1]); in getImageDescriptor()
115 return pipe[0]; in getImageDescriptor()
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
DEventLogTags.logtags21 # @param enabled_sources A pipe-separated list of source names, ordered by source ranking.
29 # @param A pipe-separated list of suggestion log names.
31 # @param queried_sources A pipe-separated list of the sources that were queried to produce
/packages/modules/DnsResolver/
DREADME-DoT.md51 "reliable datagram pipe" (`socketpair()` in `SOCK_SEQPACKET` mode).
52 The query method writes a struct (containing a pointer to the query) to the pipe
54 reads off the other end of the pipe. The pipe doesn't actually have a queue "inside";
58 We need to pass messages between threads using a pipe, and not a condition variable
Dstats.proto248 SYS_EPIPE = 32; // Broken pipe
/packages/apps/Nfc/nci/jni/
DHciEventManager.cpp143 eventData->rcvd_evt.pipe, eventData->rcvd_evt.evt_len); in nfaHciCallback()
146 if (eventData->rcvd_evt.pipe == sEsePipe) { in nfaHciCallback()
148 } else if (eventData->rcvd_evt.pipe == sSimPipe) { in nfaHciCallback()
/packages/apps/DocumentsUI/tests/common/com/android/documentsui/
DStubProvider.java455 ParcelFileDescriptor[] pipe; in startWrite() local
457 pipe = ParcelFileDescriptor.createReliablePipe(); in startWrite()
461 final ParcelFileDescriptor readPipe = pipe[0]; in startWrite()
462 final ParcelFileDescriptor writePipe = pipe[1]; in startWrite()
508 private void closePipeWithErrorSilently(ParcelFileDescriptor pipe, String error) { in closePipeWithErrorSilently() argument
510 pipe.closeWithError(error); in closePipeWithErrorSilently()
/packages/services/Mtp/src/com/android/mtp/
DMtpDocumentsProvider.java394 final ParcelFileDescriptor[] pipe; in createDocument() local
431 pipe = ParcelFileDescriptor.createReliablePipe(); in createDocument()
435 pipe[0].close(); // 0 bytes for a new document. in createDocument()
464 parentId.mDeviceId, infoUniqueName, pipe[1]); in createDocument()
472 pipe[1].close(); in createDocument()
/packages/modules/StatsD/statsd/tests/shell/
DShellSubscriber_test.cpp46 ASSERT_EQ(0, pipe(fds_config)); in runShellTest()
49 ASSERT_EQ(0, pipe(fds_data)); in runShellTest()
/packages/modules/adb/
Dtest_adb.py137 read_pipe, write_pipe = os.pipe()
204 def _read_pipe_and_set_event(pipe, event): argument
206 pipe.read()
DREADME.md36 …a streams. Therefore, adb multiplexes multiple byte streams over a single pipe via Transport. When…
DAndroid.bp885 // Note: using pipe for xxd to control the variable name generated
/packages/modules/adb/fastdeploy/deployagent/src/com/android/fastdeploy/
DPatchUtils.java65 static void pipe(final InputStream in, final OutputStream out, final byte[] buffer, in pipe() method in PatchUtils
DDeployAgent.java292 PatchUtils.pipe(patchData, outputStream, buffer, newDataLen); in writePatchedDataToStream()
/packages/inputmethods/LatinIME/dictionaries/
Dfr_wordlist.combined.gz1dictionary=main:fr,locale=fr,description=Français,date=1414726264, ...
Den_GB_wordlist.combined.gz1dictionary=main:en_gb,locale=en_GB,description=English (UK),date ...
Den_US_wordlist.combined.gz
Den_wordlist.combined.gz1dictionary=main:en,locale=en,description=English,date=1414726273, ...
Dsl_wordlist.combined.gz
Dit_wordlist.combined.gz1dictionary=main:it,locale=it,description=Italiano,date=1414726258, ...
Dpt_BR_wordlist.combined.gz1dictionary=main:pt_br,locale=pt_BR,description=Português (Brasil),date ...
Dnb_wordlist.combined.gz
Dpl_wordlist.combined.gz1dictionary=main:pl,locale=pl,description=Polski,date=1414726264, ...

12