OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dstFd
(Results
1 - 3
of
3
) sorted by null
/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
...]
/hardware/qcom/media/libc2dcolorconvert/
C2DColorConverter.h
99
virtual int convertC2D(int srcFd, void * srcData, int
dstFd
, void * dstData) = 0;
C2DColorConverter.cpp
63
virtual int convertC2D(int srcFd, void * srcData, int
dstFd
, void * dstData);
202
int C2DColorConverter::convertC2D(int srcFd, void * srcData, int
dstFd
, void * dstData)
211
if ((srcFd < 0) || (
dstFd
< 0) || (srcData == NULL) || (dstData == NULL)) {
228
ret = updateYUVSurfaceDef(
dstFd
, dstData, false);
230
ret = updateRGBSurfaceDef(
dstFd
, dstData, false);
Completed in 2367 milliseconds