OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:srcFd
(Results
1 - 3
of
3
) sorted by null
/cts/tests/tests/media/src/android/media/cts/
MediaMuxerTest.java
168
AssetFileDescriptor
srcFd
= mResources.openRawResourceFd(srcMedia);
170
extractor.setDataSource(
srcFd
.getFileDescriptor(),
srcFd
.getStartOffset(),
171
srcFd
.getLength());
253
srcFd
.close();
ExtractDecodeEditEncodeMuxTest.java
507
AssetFileDescriptor
srcFd
= getContext().getResources().openRawResourceFd(mSourceResId);
509
extractor.setDataSource(
srcFd
.getFileDescriptor(),
srcFd
.getStartOffset(),
510
srcFd
.getLength());
[
all
...]
/build/libs/host/
CopyFile.c
116
static int copyFileContents(const char* dst, int dstFd, const char* src, int
srcFd
)
125
readCount = read(
srcFd
, buf, sizeof(buf));
212
int
srcFd
, dstFd, statResult, copyResult;
243
srcFd
= open(src, O_RDONLY | O_BINARY, 0);
244
if (
srcFd
< 0) {
258
(void) close(
srcFd
);
275
(void) close(
srcFd
);
287
(void) close(
srcFd
);
291
copyResult = copyFileContents(dst, dstFd, src,
srcFd
);
293
(void) close(
srcFd
);
[
all
...]
Completed in 521 milliseconds