OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:dstFd
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/core/jni/android/graphics/pdf/
PdfEditor.cpp
102
int
dstFd
;
126
const bool success = writeAllBytes(writer->
dstFd
, buffer, size);
137
writer.
dstFd
= fd;
/build/libs/host/
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
);
316
dstFd
= open(dstRsrcName, O_TRUNC | O_WRONLY, 0)
[
all
...]
Completed in 684 milliseconds