OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:outFd
(Results
1 - 7
of
7
) sorted by null
/dalvik/vm/hprof/
Hprof.cpp
114
int
outFd
;
116
outFd
= dup(headCtx->fd);
117
if (
outFd
< 0) {
122
outFd
= open(tailCtx->fileName, O_WRONLY|O_CREAT|O_TRUNC, 0644);
123
if (
outFd
< 0) {
128
if (
outFd
< 0) {
135
result = sysWriteFully(
outFd
, headCtx->fileDataPtr,
137
result |= sysWriteFully(
outFd
, tailCtx->fileDataPtr,
139
close(
outFd
);
/frameworks/base/core/jni/
android_server_Watchdog.cpp
31
static void dumpOneStack(int tid, int
outFd
) {
39
write(
outFd
, buf, strlen(buf));
44
write(
outFd
, buf, nBytes);
48
write(
outFd
, "\n", 1);
67
int
outFd
= open(path, O_WRONLY | O_APPEND | O_CREAT,
69
if (
outFd
< 0) {
75
write(
outFd
, buf, strlen(buf));
86
dumpOneStack(tid,
outFd
);
93
write(
outFd
, buf, strlen(buf));
95
close(
outFd
);
[
all
...]
/dalvik/dexopt/
OptMain.cpp
337
int
outFd
= -1;
367
outFd
= open(outName, O_RDWR | O_EXCL | O_CREAT, 0666);
368
if (
outFd
< 0) {
373
result = processZipFile(zipFd,
outFd
, zipName, dexoptFlags);
380
if (
outFd
>= 0) {
381
close(
outFd
);
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadThread.java
387
FileDescriptor
outFd
= null;
401
outFd
= file.getFD();
404
outFd
= ((FileOutputStream) out).getFD();
431
if (
outFd
!= null)
outFd
.sync();
[
all
...]
/libcore/luni/src/main/java/java/nio/
FileChannelImpl.java
422
FileDescriptor
outFd
= ((SocketChannelImpl) target).getFD();
427
long rc = Libcore.os.sendfile(
outFd
, fd, offset, count);
/system/core/adb/
commandline.c
264
static void copy_to_file(int inFd, int
outFd
) {
270
D("copy_to_file(%d -> %d)\n", inFd,
outFd
);
285
adb_write(
outFd
, buf, len);
703
int fd,
outFd
;
727
outFd
= adb_creat(filename, 0640);
728
if (
outFd
< 0) {
743
adb_close(
outFd
);
748
copy_to_file(fd,
outFd
);
751
adb_close(
outFd
);
[
all
...]
/libcore/luni/src/main/native/
libcore_io_Posix.cpp
[
all
...]
Completed in 174 milliseconds