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

  /build/make/tools/libhost/
CopyFile.c 116 static int copyFileContents(const char* dst, int dstFd, const char* src, int srcFd)
133 writeCount = write(dstFd, buf, readCount);
212 int srcFd, dstFd, statResult, copyResult;
251 dstFd = open(dst, O_CREAT | O_TRUNC | O_WRONLY | O_BINARY, 0644);
253 if (dstFd < 0) {
281 dstFd = open(dst, O_CREAT | O_TRUNC | O_WRONLY | O_BINARY, 0644);
284 if (dstFd < 0) {
291 copyResult = copyFileContents(dst, dstFd, src, srcFd);
294 (void) close(dstFd);
317 dstFd = open(dstRsrcName, O_TRUNC | O_WRONLY, 0)
    [all...]
  /frameworks/base/core/jni/android/graphics/pdf/
PdfEditor.cpp 72 int dstFd;
95 const bool success = writeAllBytes(writer->dstFd, buffer, size);
106 writer.dstFd = fd;

Completed in 282 milliseconds