HomeSort by relevance Sort by last modified time
    Searched defs:dstFd (Results 1 - 2 of 2) sorted by null

  /build/libs/host/
CopyFile.c 115 static int copyFileContents(const char* dst, int dstFd, const char* src, int srcFd)
132 writeCount = write(dstFd, buf, readCount);
211 int srcFd, dstFd, statResult, copyResult;
250 dstFd = open(dst, O_CREAT | O_TRUNC | O_WRONLY | O_BINARY, 0644);
252 if (dstFd < 0) {
280 dstFd = open(dst, O_CREAT | O_TRUNC | O_WRONLY | O_BINARY, 0644);
283 if (dstFd < 0) {
290 copyResult = copyFileContents(dst, dstFd, src, srcFd);
293 (void) close(dstFd);
315 dstFd = open(dstRsrcName, O_TRUNC | O_WRONLY, 0)
    [all...]
  /frameworks/base/core/jni/android/graphics/pdf/
PdfEditor.cpp 133 int dstFd;
157 const bool success = writeAllBytes(writer->dstFd, buffer, size);
168 writer.dstFd = fd;

Completed in 68 milliseconds